BigW Consortium Gitlab

admin_runners_spec.rb 4.14 KB
Newer Older
1 2 3
require 'spec_helper'

describe "Admin Runners" do
4 5
  include StubENV

6
  before do
7
    stub_env('IN_MEMORY_APPLICATION_SETTINGS', 'false')
8
    login_as :admin
9 10 11 12
  end

  describe "Runners page" do
    before do
Valery Sizov committed
13
      runner = FactoryGirl.create(:ci_runner, contacted_at: Time.now)
14 15
      pipeline = FactoryGirl.create(:ci_pipeline)
      FactoryGirl.create(:ci_build, pipeline: pipeline, runner_id: runner.id)
16
      visit admin_runners_path
17 18
    end

Valery Sizov committed
19 20
    it 'has all necessary texts' do
      expect(page).to have_text "To register a new Runner"
21
      expect(page).to have_text "Runners with last contact more than a minute ago: 1"
Valery Sizov committed
22
    end
23 24 25

    describe 'search' do
      before do
26 27
        FactoryGirl.create :ci_runner, description: 'runner-foo'
        FactoryGirl.create :ci_runner, description: 'runner-bar'
28

29
        search_form = find('#runners-search')
30
        search_form.fill_in 'search', with: 'runner-foo'
31
        search_form.click_button 'Search'
32 33
      end

Valery Sizov committed
34 35 36 37
      it 'shows correct runner' do
        expect(page).to have_content("runner-foo")
        expect(page).not_to have_content("runner-bar")
      end
38 39 40 41
    end
  end

  describe "Runner show page" do
Valery Sizov committed
42
    let(:runner) { FactoryGirl.create :ci_runner }
43 44

    before do
45 46 47
      @project1 = FactoryGirl.create(:empty_project)
      @project2 = FactoryGirl.create(:empty_project)
      visit admin_runner_path(runner)
48 49 50
    end

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

    describe 'projects' do
Valery Sizov committed
55 56 57 58
      it 'contains project names' do
        expect(page).to have_content(@project1.name_with_namespace)
        expect(page).to have_content(@project2.name_with_namespace)
      end
59 60 61 62
    end

    describe 'search' do
      before do
63
        search_form = find('#runner-projects-search')
64
        search_form.fill_in 'search', with: @project1.name
65
        search_form.click_button 'Search'
66 67
      end

Valery Sizov committed
68 69 70 71
      it 'contains name of correct project' do
        expect(page).to have_content(@project1.name_with_namespace)
        expect(page).not_to have_content(@project2.name_with_namespace)
      end
72
    end
73 74

    describe 'enable/create' do
75
      shared_examples 'assignable runner' do
76 77 78 79 80 81 82 83 84
        it 'enables a runner for a project' do
          within '.unassigned-projects' do
            click_on 'Enable'
          end

          assigned_project = page.find('.assigned-projects')

          expect(assigned_project).to have_content(@project2.path)
        end
85 86
      end

87 88 89 90
      context 'with specific runner' do
        before do
          @project1.runners << runner
          visit admin_runner_path(runner)
91 92
        end

93
        it_behaves_like 'assignable runner'
94 95
      end

96 97 98 99 100 101 102 103 104 105
      context 'with locked runner' do
        before do
          runner.update(locked: true)
          @project1.runners << runner
          visit admin_runner_path(runner)
        end

        it_behaves_like 'assignable runner'
      end

106 107 108 109 110 111
      context 'with shared runner' do
        before do
          @project1.destroy
          runner.update(is_shared: true)
          visit admin_runner_path(runner)
        end
112

113
        it_behaves_like 'assignable runner'
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
      end
    end

    describe 'disable/destroy' do
      before do
        @project1.runners << runner
        visit admin_runner_path(runner)
      end

      it 'enables specific runner for project' do
        within '.assigned-projects' do
          click_on 'Disable'
        end

        new_runner_project = page.find('.unassigned-projects')

        expect(new_runner_project).to have_content(@project1.path)
      end
    end
133
  end
134 135

  describe 'runners registration token' do
136
    let!(:token) { current_application_settings.runners_registration_token }
137
    before { visit admin_runners_path }
138 139 140 141 142 143 144 145 146 147 148 149 150 151

    it 'has a registration token' do
      expect(page).to have_content("Registration token is #{token}")
      expect(page).to have_selector('#runners-token', text: token)
    end

    describe 'reload registration token' do
      let(:page_token) { find('#runners-token').text }

      before do
        click_button 'Reset runners registration token'
      end

      it 'changes registration token' do
152
        expect(page_token).not_to eq token
153 154 155
      end
    end
  end
156
end