summaryrefslogtreecommitdiff
path: root/spec/features/admin/admin_deploy_keys_spec.rb
blob: 7ce6cce0a5cef4a10c3c67968419641ac1dfd0c9 (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
require 'spec_helper'

RSpec.describe 'admin deploy keys', type: :feature do
  let!(:deploy_key) { create(:deploy_key, public: true) }
  let!(:another_deploy_key) { create(:another_deploy_key, public: true) }

  before do
    login_as(:admin)
  end

  it 'show all public deploy keys' do
    visit admin_deploy_keys_path

    expect(page).to have_content(deploy_key.title)
    expect(page).to have_content(another_deploy_key.title)
  end

  describe 'create new deploy key' do
    before do
      visit admin_deploy_keys_path
      click_link 'New Deploy Key'
    end

    it 'creates new deploy key' do
      fill_deploy_key
      click_button 'Create'

      expect_renders_new_key
    end

    it 'creates new deploy key with write access' do
      fill_deploy_key
      check "deploy_key_can_push"
      click_button "Create"

      expect_renders_new_key
      expect(page).to have_content('Yes')
    end

    def expect_renders_new_key
      expect(current_path).to eq admin_deploy_keys_path
      expect(page).to have_content('laptop')
    end

    def fill_deploy_key
      fill_in 'deploy_key_title', with: 'laptop'
      fill_in 'deploy_key_key', with: 'ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAzrEJUIR6Y03TCE9rIJ+GqTBvgb8t1jI9h5UBzCLuK4VawOmkLornPqLDrGbm6tcwM/wBrrLvVOqi2HwmkKEIecVO0a64A4rIYScVsXIniHRS6w5twyn1MD3sIbN+socBDcaldECQa2u1dI3tnNVcs8wi77fiRe7RSxePsJceGoheRQgC8AZ510UdIlO+9rjIHUdVN7LLyz512auAfYsgx1OfablkQ/XJcdEwDNgi9imI6nAXhmoKUm1IPLT2yKajTIC64AjLOnE0YyCh6+7RFMpiMyu1qiOCpdjYwTgBRiciNRZCH8xIedyCoAmiUgkUT40XYHwLuwiPJICpkAzp7Q== user@laptop'
    end
  end
end