Commit a8dd4d36 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Fix build features specs

parent 9a9417ee
...@@ -28,9 +28,11 @@ ...@@ -28,9 +28,11 @@
module Ci module Ci
class Project < ActiveRecord::Base class Project < ActiveRecord::Base
extend Ci::Model extend Ci::Model
include Ci::ProjectStatus include Ci::ProjectStatus
belongs_to :gl_project, class_name: 'Project', foreign_key: :gitlab_id
has_many :commits, ->() { order(:committed_at) }, dependent: :destroy, class_name: 'Ci::Commit' has_many :commits, ->() { order(:committed_at) }, dependent: :destroy, class_name: 'Ci::Commit'
has_many :builds, through: :commits, dependent: :destroy, class_name: 'Ci::Build' has_many :builds, through: :commits, dependent: :destroy, class_name: 'Ci::Build'
has_many :runner_projects, dependent: :destroy, class_name: 'Ci::RunnerProject' has_many :runner_projects, dependent: :destroy, class_name: 'Ci::RunnerProject'
......
...@@ -43,7 +43,7 @@ FactoryGirl.define do ...@@ -43,7 +43,7 @@ FactoryGirl.define do
"git@demo.gitlab.com:gitlab/gitlab-shell#{n}.git" "git@demo.gitlab.com:gitlab/gitlab-shell#{n}.git"
end end
sequence :gitlab_id gl_project factory: :project
factory :ci_project do factory :ci_project do
token 'iPWx6WM4lhHNedGfBpPJNP' token 'iPWx6WM4lhHNedGfBpPJNP'
......
require 'spec_helper' require 'spec_helper'
describe "Builds" do describe "Builds" do
before do context :private_project do
@project = FactoryGirl.create :project
@commit = FactoryGirl.create :commit, project: @project
@build = FactoryGirl.create :build, commit: @commit
end
describe "GET /:project/builds/:id" do
before do before do
@project = FactoryGirl.create :ci_project
@commit = FactoryGirl.create :ci_commit, project: @project
@build = FactoryGirl.create :ci_build, commit: @commit
login_as :user login_as :user
visit project_build_path(@project, @build) @project.gl_project.team << [@user, :master]
end end
it { expect(page).to have_content @commit.sha[0..7] } describe "GET /:project/builds/:id" do
it { expect(page).to have_content @commit.git_commit_message } before do
it { expect(page).to have_content @commit.git_author_name } visit ci_project_build_path(@project, @build)
end end
describe "GET /:project/builds/:id/cancel" do it { expect(page).to have_content @commit.sha[0..7] }
before do it { expect(page).to have_content @commit.git_commit_message }
login_as :user it { expect(page).to have_content @commit.git_author_name }
@build.run!
visit cancel_project_build_path(@project, @build)
end end
it { expect(page).to have_content 'canceled' } describe "GET /:project/builds/:id/cancel" do
it { expect(page).to have_content 'Retry' } before do
end @build.run!
visit cancel_ci_project_build_path(@project, @build)
end
describe "POST /:project/builds/:id/retry" do it { expect(page).to have_content 'canceled' }
before do it { expect(page).to have_content 'Retry' }
login_as :user
@build.cancel!
visit project_build_path(@project, @build)
click_link 'Retry'
end end
it { expect(page).to have_content 'pending' } describe "POST /:project/builds/:id/retry" do
it { expect(page).to have_content 'Cancel' } before do
@build.cancel!
visit ci_project_build_path(@project, @build)
click_link 'Retry'
end
it { expect(page).to have_content 'pending' }
it { expect(page).to have_content 'Cancel' }
end
end end
describe "Show page public accessible" do context :public_project do
before do describe "Show page public accessible" do
@project = FactoryGirl.create :public_project before do
@commit = FactoryGirl.create :commit, project: @project @project = FactoryGirl.create :ci_public_project
@runner = FactoryGirl.create :specific_runner @commit = FactoryGirl.create :ci_commit, project: @project
@build = FactoryGirl.create :build, commit: @commit, runner: @runner @runner = FactoryGirl.create :ci_specific_runner
@build = FactoryGirl.create :ci_build, commit: @commit, runner: @runner
stub_gitlab_calls stub_gitlab_calls
visit project_build_path(@project, @build) visit ci_project_build_path(@project, @build)
end end
it { expect(page).to have_content @commit.sha[0..7] } it { expect(page).to have_content @commit.sha[0..7] }
end
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment