Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ci/features/builds_spec.rb')
-rw-r--r--spec/ci/features/builds_spec.rb57
1 files changed, 57 insertions, 0 deletions
diff --git a/spec/ci/features/builds_spec.rb b/spec/ci/features/builds_spec.rb
new file mode 100644
index 00000000000..fcd7996efd7
--- /dev/null
+++ b/spec/ci/features/builds_spec.rb
@@ -0,0 +1,57 @@
+require 'spec_helper'
+
+describe "Builds" do
+ before 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
+ login_as :user
+ visit project_build_path(@project, @build)
+ end
+
+ it { page.should have_content @commit.sha[0..7] }
+ it { page.should have_content @commit.git_commit_message }
+ it { page.should have_content @commit.git_author_name }
+ end
+
+ describe "GET /:project/builds/:id/cancel" do
+ before do
+ login_as :user
+ @build.run!
+ visit cancel_project_build_path(@project, @build)
+ end
+
+ it { page.should have_content 'canceled' }
+ it { page.should have_content 'Retry' }
+ end
+
+ describe "POST /:project/builds/:id/retry" do
+ before do
+ login_as :user
+ @build.cancel!
+ visit project_build_path(@project, @build)
+ click_link 'Retry'
+ end
+
+ it { page.should have_content 'pending' }
+ it { page.should have_content 'Cancel' }
+ end
+
+ describe "Show page public accessible" do
+ before do
+ @project = FactoryGirl.create :public_project
+ @commit = FactoryGirl.create :commit, project: @project
+ @runner = FactoryGirl.create :specific_runner
+ @build = FactoryGirl.create :build, commit: @commit, runner: @runner
+
+ stub_gitlab_calls
+ visit project_build_path(@project, @build)
+ end
+
+ it { page.should have_content @commit.sha[0..7] }
+ end
+end