2019-04-15 06:17:05 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-02-11 13:15:13 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Profiles::KeysController do
|
2016-04-14 06:20:16 -04:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
2020-03-13 05:09:23 -04:00
|
|
|
describe 'POST #create' do
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a new key' do
|
|
|
|
expires_at = 3.days.from_now
|
|
|
|
|
|
|
|
expect do
|
|
|
|
post :create, params: { key: build(:key, expires_at: expires_at).attributes }
|
|
|
|
end.to change { Key.count }.by(1)
|
|
|
|
|
|
|
|
expect(Key.last.expires_at).to be_like_time(expires_at)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-02-11 13:15:13 -05:00
|
|
|
describe "#get_keys" do
|
2018-10-30 06:53:01 -04:00
|
|
|
describe "non existent user" do
|
2016-07-25 14:16:19 -04:00
|
|
|
it "does not generally work" do
|
2018-12-17 17:52:17 -05:00
|
|
|
get :get_keys, params: { username: 'not-existent' }
|
2014-02-11 13:15:13 -05:00
|
|
|
|
2019-08-19 05:55:20 -04:00
|
|
|
expect(response).not_to be_successful
|
2014-02-11 13:15:13 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "user with no keys" do
|
2016-07-25 14:16:19 -04:00
|
|
|
it "does generally work" do
|
2018-12-17 17:52:17 -05:00
|
|
|
get :get_keys, params: { username: user.username }
|
2014-02-11 13:15:13 -05:00
|
|
|
|
2019-08-19 05:55:20 -04:00
|
|
|
expect(response).to be_successful
|
2014-02-11 13:15:13 -05:00
|
|
|
end
|
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it "renders all keys separated with a new line" do
|
2018-12-17 17:52:17 -05:00
|
|
|
get :get_keys, params: { username: user.username }
|
2014-02-11 13:15:13 -05:00
|
|
|
|
|
|
|
expect(response.body).to eq("")
|
|
|
|
end
|
2014-03-19 09:32:38 -04:00
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it "responds with text/plain content type" do
|
2018-12-17 17:52:17 -05:00
|
|
|
get :get_keys, params: { username: user.username }
|
2014-03-19 09:32:38 -04:00
|
|
|
expect(response.content_type).to eq("text/plain")
|
|
|
|
end
|
2014-02-11 13:15:13 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "user with keys" do
|
2017-02-07 07:56:50 -05:00
|
|
|
let!(:key) { create(:key, user: user) }
|
|
|
|
let!(:another_key) { create(:another_key, user: user) }
|
|
|
|
let!(:deploy_key) { create(:deploy_key, user: user) }
|
2014-02-11 13:15:13 -05:00
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it "does generally work" do
|
2018-12-17 17:52:17 -05:00
|
|
|
get :get_keys, params: { username: user.username }
|
2014-02-11 13:15:13 -05:00
|
|
|
|
2019-08-19 05:55:20 -04:00
|
|
|
expect(response).to be_successful
|
2014-02-11 13:15:13 -05:00
|
|
|
end
|
|
|
|
|
2017-02-07 07:56:50 -05:00
|
|
|
it "renders all non deploy keys separated with a new line" do
|
2018-12-17 17:52:17 -05:00
|
|
|
get :get_keys, params: { username: user.username }
|
2014-02-11 13:15:13 -05:00
|
|
|
|
2017-02-07 07:56:50 -05:00
|
|
|
expect(response.body).not_to eq('')
|
2014-02-11 13:15:13 -05:00
|
|
|
expect(response.body).to eq(user.all_ssh_keys.join("\n"))
|
2015-06-19 13:17:34 -04:00
|
|
|
|
2017-02-07 07:56:50 -05:00
|
|
|
expect(response.body).to include(key.key.sub(' dummy@gitlab.com', ''))
|
2017-05-31 09:43:19 -04:00
|
|
|
expect(response.body).to include(another_key.key.sub(' dummy@gitlab.com', ''))
|
2017-02-07 07:56:50 -05:00
|
|
|
|
|
|
|
expect(response.body).not_to include(deploy_key.key)
|
2015-06-19 13:17:34 -04:00
|
|
|
end
|
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it "does not render the comment of the key" do
|
2018-12-17 17:52:17 -05:00
|
|
|
get :get_keys, params: { username: user.username }
|
2015-06-19 13:17:34 -04:00
|
|
|
|
|
|
|
expect(response.body).not_to match(/dummy@gitlab.com/)
|
2014-02-11 13:15:13 -05:00
|
|
|
end
|
2014-03-19 09:32:38 -04:00
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it "responds with text/plain content type" do
|
2018-12-17 17:52:17 -05:00
|
|
|
get :get_keys, params: { username: user.username }
|
2018-11-23 11:44:09 -05:00
|
|
|
|
2014-03-19 09:32:38 -04:00
|
|
|
expect(response.content_type).to eq("text/plain")
|
|
|
|
end
|
2014-02-11 13:15:13 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|