2021-04-29 21:17:54 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe 'profiles/keys/_form.html.haml' do
|
2022-03-02 08:16:31 +05:30
|
|
|
include SshKeysHelper
|
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
let_it_be(:key) { Key.new }
|
|
|
|
|
|
|
|
let(:page) { Capybara::Node::Simple.new(rendered) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
assign(:key, key)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the form partial is used' do
|
|
|
|
before do
|
|
|
|
render
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders the form with the correct action' do
|
|
|
|
expect(page.find('form')['action']).to eq('/-/profile/keys')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has the key field', :aggregate_failures do
|
2022-03-02 08:16:31 +05:30
|
|
|
expect(rendered).to have_field('Key', type: 'textarea')
|
|
|
|
expect(rendered).to have_text(s_('Profiles|Begins with %{ssh_key_algorithms}.') % { ssh_key_algorithms: ssh_key_allowed_algorithms })
|
2021-04-29 21:17:54 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'has the title field', :aggregate_failures do
|
2022-06-21 17:19:12 +05:30
|
|
|
expect(rendered).to have_field('Title', type: 'text', placeholder: 'Example: MacBook key')
|
|
|
|
expect(rendered).to have_text('Key titles are publicly visible.')
|
2021-04-29 21:17:54 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'has the expires at field', :aggregate_failures do
|
2022-01-26 12:08:38 +05:30
|
|
|
expect(rendered).to have_field('Expiration date', type: 'date')
|
|
|
|
expect(page.find_field('Expiration date')['min']).to eq(l(1.day.from_now, format: "%Y-%m-%d"))
|
2022-07-16 23:28:13 +05:30
|
|
|
expect(rendered).to have_text('Key becomes invalid on this date')
|
2021-04-29 21:17:54 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'has the validation warning', :aggregate_failures do
|
|
|
|
expect(rendered).to have_text("Oops, are you sure? Publicly visible private SSH keys can compromise your system.")
|
|
|
|
expect(rendered).to have_button('Yes, add it')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has the submit button' do
|
|
|
|
expect(rendered).to have_button('Add key')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|