summaryrefslogtreecommitdiff
path: root/spec/features/admin/admin_uses_repository_checks_spec.rb
blob: 8c1ec183286d2ee600b2897d589f21a449303860 (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
# frozen_string_literal: true

require 'rails_helper'

describe 'Admin uses repository checks' do
  include StubENV

  before do
    stub_env('IN_MEMORY_APPLICATION_SETTINGS', 'false')
    sign_in(create(:admin))
  end

  it 'to trigger a single check' do
    project = create(:project)
    visit_admin_project_page(project)

    page.within('.repository-check') do
      click_button 'Trigger repository check'
    end

    expect(page).to have_content('Repository check was triggered')
  end

  it 'to see a single failed repository check', :js do
    project = create(:project)
    project.update_columns(
      last_repository_check_failed: true,
      last_repository_check_at: Time.now
    )
    visit_admin_project_page(project)

    page.within('.alert') do
      expect(page.text).to match(/Last repository check \(just now\) failed/)
    end
  end

  it 'to clear all repository checks', :js do
    visit repository_admin_application_settings_path

    expect(RepositoryCheck::ClearWorker).to receive(:perform_async)

    accept_confirm { find(:link, 'Clear all repository checks').send_keys(:return) }

    expect(page).to have_content('Started asynchronous removal of all repository check states.')
  end

  def visit_admin_project_page(project)
    visit admin_project_path(project)
  end
end