gitlab-org--gitlab-foss/spec/features/ci/admin/runners_spec.rb

65 lines
1.9 KiB
Ruby
Raw Normal View History

2015-08-26 01:42:46 +00:00
require 'spec_helper'
describe "Admin Runners" do
before do
login_as :admin
2015-08-26 01:42:46 +00:00
end
describe "Runners page" do
before do
2015-09-15 13:42:02 +00:00
runner = FactoryGirl.create(:ci_runner)
commit = FactoryGirl.create(:ci_commit)
FactoryGirl.create(:ci_build, commit: commit, runner_id: runner.id)
visit ci_admin_runners_path
2015-08-26 01:42:46 +00:00
end
it { page.has_text? "Manage Runners" }
it { page.has_text? "To register a new runner" }
it { page.has_text? "Runners with last contact less than a minute ago: 1" }
describe 'search' do
before do
2015-09-30 10:51:03 +00:00
FactoryGirl.create :ci_runner, description: 'runner-foo'
FactoryGirl.create :ci_runner, description: 'runner-bar'
2015-08-26 01:42:46 +00:00
2015-09-15 20:13:01 +00:00
search_form = find('#runners-search')
2015-09-30 10:51:03 +00:00
search_form.fill_in 'search', with: 'runner-foo'
2015-09-15 20:13:01 +00:00
search_form.click_button 'Search'
2015-08-26 01:42:46 +00:00
end
2015-09-30 10:51:03 +00:00
it { expect(page).to have_content("runner-foo") }
it { expect(page).not_to have_content("runner-bar") }
2015-08-26 01:42:46 +00:00
end
end
describe "Runner show page" do
2015-09-15 13:42:02 +00:00
let(:runner) { FactoryGirl.create :ci_runner }
2015-08-26 01:42:46 +00:00
before do
@project1 = FactoryGirl.create(:ci_project)
@project2 = FactoryGirl.create(:ci_project)
2015-09-15 13:42:02 +00:00
visit ci_admin_runner_path(runner)
2015-08-26 01:42:46 +00:00
end
describe 'runner info' do
2015-09-10 14:55:09 +00:00
it { expect(find_field('runner_token').value).to eq runner.token }
2015-08-26 01:42:46 +00:00
end
describe 'projects' do
it { expect(page).to have_content(@project1.name_with_namespace) }
it { expect(page).to have_content(@project2.name_with_namespace) }
2015-08-26 01:42:46 +00:00
end
describe 'search' do
before do
2015-09-15 20:13:01 +00:00
search_form = find('#runner-projects-search')
search_form.fill_in 'search', with: @project1.gl_project.name
2015-09-15 20:13:01 +00:00
search_form.click_button 'Search'
2015-08-26 01:42:46 +00:00
end
it { expect(page).to have_content(@project1.name_with_namespace) }
it { expect(page).not_to have_content(@project2.name_with_namespace) }
2015-08-26 01:42:46 +00:00
end
end
end