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) }
|
|
|
|
|
2014-02-11 13:15:13 -05:00
|
|
|
describe "#get_keys" do
|
|
|
|
describe "non existant user" do
|
2016-07-25 14:16:19 -04:00
|
|
|
it "does not generally work" do
|
2014-02-11 13:15:13 -05:00
|
|
|
get :get_keys, username: 'not-existent'
|
|
|
|
|
|
|
|
expect(response).not_to be_success
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "user with no keys" do
|
2016-07-25 14:16:19 -04:00
|
|
|
it "does generally work" do
|
2014-02-11 13:15:13 -05:00
|
|
|
get :get_keys, username: user.username
|
|
|
|
|
|
|
|
expect(response).to be_success
|
|
|
|
end
|
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it "renders all keys separated with a new line" do
|
2014-02-11 13:15:13 -05:00
|
|
|
get :get_keys, username: user.username
|
|
|
|
|
|
|
|
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
|
2014-03-19 09:32:38 -04:00
|
|
|
get :get_keys, username: user.username
|
|
|
|
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
|
2014-02-11 13:15:13 -05:00
|
|
|
get :get_keys, username: user.username
|
|
|
|
|
|
|
|
expect(response).to be_success
|
|
|
|
end
|
|
|
|
|
2017-02-07 07:56:50 -05:00
|
|
|
it "renders all non deploy keys separated with a new line" do
|
2014-02-11 13:15:13 -05:00
|
|
|
get :get_keys, username: user.username
|
|
|
|
|
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', ''))
|
|
|
|
expect(response.body).to include(another_key.key)
|
|
|
|
|
|
|
|
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
|
2015-06-19 13:17:34 -04:00
|
|
|
get :get_keys, username: user.username
|
|
|
|
|
|
|
|
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
|
2014-03-19 09:32:38 -04:00
|
|
|
get :get_keys, username: user.username
|
|
|
|
expect(response.content_type).to eq("text/plain")
|
|
|
|
end
|
2014-02-11 13:15:13 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|