summaryrefslogtreecommitdiff
path: root/spec/features/admin/runners_spec.rb
blob: 56f81ebfdbac80dec2fae670e7c303d43c00927c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
require 'spec_helper'

describe "Admin Runners", feature: true do
  before do
    skip_admin_auth
    login_as :user
  end

  describe "Runners page" do
    before do
      runner = FactoryGirl.create(:runner)
      commit = FactoryGirl.create(:commit)
      FactoryGirl.create(:build, commit: commit, runner_id: runner.id)
      visit admin_runners_path
    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
        FactoryGirl.create :runner, description: 'foo'
        FactoryGirl.create :runner, description: 'bar'

        fill_in 'search', with: 'foo'
        click_button 'Search'
      end

      it { expect(page).to have_content("foo") }
      it { expect(page).not_to have_content("bar") }
    end
  end

  describe "Runner show page" do
    let(:runner) { FactoryGirl.create :runner }

    before do
      FactoryGirl.create(:project, name: "foo")
      FactoryGirl.create(:project, name: "bar")
      visit admin_runner_path(runner)
    end

    describe 'runner info' do
      it { expect(find_field('runner_token').value).to eq runner.token }
    end

    describe 'projects' do
      it { expect(page).to have_content("foo") }
      it { expect(page).to have_content("bar") }
    end

    describe 'search' do
      before do
        fill_in 'search', with: 'foo'
        click_button 'Search'
      end

      it { expect(page).to have_content("foo") }
      it { expect(page).not_to have_content("bar") }
    end
  end
end