debian-mirror-gitlab/spec/requests/api/namespaces_spec.rb

95 lines
3.4 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
require 'spec_helper'
2017-08-17 22:00:37 +05:30
describe API::Namespaces do
2014-09-02 18:07:02 +05:30
let(:admin) { create(:admin) }
2015-09-11 14:41:01 +05:30
let(:user) { create(:user) }
2014-09-02 18:07:02 +05:30
let!(:group1) { create(:group) }
2017-08-17 22:00:37 +05:30
let!(:group2) { create(:group, :nested) }
2014-09-02 18:07:02 +05:30
describe "GET /namespaces" do
context "when unauthenticated" do
2016-09-13 17:45:13 +05:30
it "returns authentication error" do
2014-09-02 18:07:02 +05:30
get api("/namespaces")
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(401)
2014-09-02 18:07:02 +05:30
end
end
2015-09-11 14:41:01 +05:30
context "when authenticated as admin" do
2017-09-10 17:25:29 +05:30
it "returns correct attributes" do
get api("/namespaces", admin)
group_kind_json_response = json_response.find { |resource| resource['kind'] == 'group' }
user_kind_json_response = json_response.find { |resource| resource['kind'] == 'user' }
expect(response).to have_http_status(200)
expect(response).to include_pagination_headers
expect(group_kind_json_response.keys).to contain_exactly('id', 'kind', 'name', 'path', 'full_path',
'parent_id', 'members_count_with_descendants')
expect(user_kind_json_response.keys).to contain_exactly('id', 'kind', 'name', 'path', 'full_path', 'parent_id')
end
2016-09-13 17:45:13 +05:30
it "admin: returns an array of all namespaces" do
2014-09-02 18:07:02 +05:30
get api("/namespaces", admin)
2017-08-17 22:00:37 +05:30
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(200)
2017-08-17 22:00:37 +05:30
expect(response).to include_pagination_headers
2015-04-26 12:48:37 +05:30
expect(json_response).to be_an Array
expect(json_response.length).to eq(Namespace.count)
2014-09-02 18:07:02 +05:30
end
2015-09-11 14:41:01 +05:30
2016-09-13 17:45:13 +05:30
it "admin: returns an array of matched namespaces" do
2017-08-17 22:00:37 +05:30
get api("/namespaces?search=#{group2.name}", admin)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(200)
2017-08-17 22:00:37 +05:30
expect(response).to include_pagination_headers
2015-09-11 14:41:01 +05:30
expect(json_response).to be_an Array
expect(json_response.length).to eq(1)
2017-08-17 22:00:37 +05:30
expect(json_response.last['path']).to eq(group2.path)
expect(json_response.last['full_path']).to eq(group2.full_path)
2015-09-11 14:41:01 +05:30
end
end
context "when authenticated as a regular user" do
2017-09-10 17:25:29 +05:30
it "returns correct attributes when user can admin group" do
group1.add_owner(user)
get api("/namespaces", user)
owned_group_response = json_response.find { |resource| resource['id'] == group1.id }
expect(owned_group_response.keys).to contain_exactly('id', 'kind', 'name', 'path', 'full_path',
'parent_id', 'members_count_with_descendants')
end
it "returns correct attributes when user cannot admin group" do
group1.add_guest(user)
get api("/namespaces", user)
guest_group_response = json_response.find { |resource| resource['id'] == group1.id }
expect(guest_group_response.keys).to contain_exactly('id', 'kind', 'name', 'path', 'full_path', 'parent_id')
end
2016-09-13 17:45:13 +05:30
it "user: returns an array of namespaces" do
2015-09-11 14:41:01 +05:30
get api("/namespaces", user)
2017-08-17 22:00:37 +05:30
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(200)
2017-08-17 22:00:37 +05:30
expect(response).to include_pagination_headers
2015-09-11 14:41:01 +05:30
expect(json_response).to be_an Array
expect(json_response.length).to eq(1)
end
2016-09-13 17:45:13 +05:30
it "admin: returns an array of matched namespaces" do
2015-09-11 14:41:01 +05:30
get api("/namespaces?search=#{user.username}", user)
2017-08-17 22:00:37 +05:30
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(200)
2017-08-17 22:00:37 +05:30
expect(response).to include_pagination_headers
2015-09-11 14:41:01 +05:30
expect(json_response).to be_an Array
expect(json_response.length).to eq(1)
end
2014-09-02 18:07:02 +05:30
end
end
end