debian-mirror-gitlab/spec/controllers/autocomplete_controller_spec.rb

364 lines
9.4 KiB
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
require 'spec_helper'
describe AutocompleteController do
2017-09-10 17:25:29 +05:30
let!(:project) { create(:project) }
2016-09-13 17:45:13 +05:30
let!(:user) { create(:user) }
2015-04-26 12:48:37 +05:30
2017-08-17 22:00:37 +05:30
context 'GET users' do
2016-09-13 17:45:13 +05:30
let!(:user2) { create(:user) }
let!(:non_member) { create(:user) }
2015-04-26 12:48:37 +05:30
2016-09-13 17:45:13 +05:30
context 'project members' do
2015-09-11 14:41:01 +05:30
before do
2016-09-13 17:45:13 +05:30
sign_in(user)
2017-08-17 22:00:37 +05:30
project.add_master(user)
2015-09-11 14:41:01 +05:30
end
2016-09-13 17:45:13 +05:30
describe 'GET #users with project ID' do
before do
get(:users, project_id: project.id)
end
2016-06-02 11:05:42 +05:30
2016-09-13 17:45:13 +05:30
let(:body) { JSON.parse(response.body) }
2015-09-11 14:41:01 +05:30
2016-09-13 17:45:13 +05:30
it { expect(body).to be_kind_of(Array) }
2017-09-10 17:25:29 +05:30
it { expect(body.size).to eq 2 }
2016-09-13 17:45:13 +05:30
it { expect(body.map { |u| u["username"] }).to include(user.username) }
2015-09-11 14:41:01 +05:30
end
2016-09-13 17:45:13 +05:30
describe 'GET #users with unknown project' do
before do
get(:users, project_id: 'unknown')
end
2015-04-26 12:48:37 +05:30
2016-09-13 17:45:13 +05:30
it { expect(response).to have_http_status(404) }
end
2015-09-11 14:41:01 +05:30
end
2016-09-13 17:45:13 +05:30
context 'group members' do
let(:group) { create(:group) }
2015-09-11 14:41:01 +05:30
before do
2016-09-13 17:45:13 +05:30
sign_in(user)
group.add_owner(user)
2015-09-11 14:41:01 +05:30
end
2015-04-26 12:48:37 +05:30
2016-09-13 17:45:13 +05:30
let(:body) { JSON.parse(response.body) }
describe 'GET #users with group ID' do
before do
get(:users, group_id: group.id)
end
it { expect(body).to be_kind_of(Array) }
it { expect(body.size).to eq 1 }
it { expect(body.first["username"]).to eq user.username }
end
describe 'GET #users with unknown group ID' do
before do
get(:users, group_id: 'unknown')
end
it { expect(response).to have_http_status(404) }
end
2015-09-11 14:41:01 +05:30
end
2016-09-13 17:45:13 +05:30
context 'non-member login for public project' do
let!(:project) { create(:project, :public) }
2015-09-11 14:41:01 +05:30
before do
2016-09-13 17:45:13 +05:30
sign_in(non_member)
2017-08-17 22:00:37 +05:30
project.add_master(user)
2015-09-11 14:41:01 +05:30
end
2016-09-13 17:45:13 +05:30
let(:body) { JSON.parse(response.body) }
2015-09-11 14:41:01 +05:30
2016-09-13 17:45:13 +05:30
describe 'GET #users with project ID' do
before do
get(:users, project_id: project.id, current_user: true)
end
2015-09-11 14:41:01 +05:30
2016-09-13 17:45:13 +05:30
it { expect(body).to be_kind_of(Array) }
2017-09-10 17:25:29 +05:30
it { expect(body.size).to eq 3 }
it { expect(body.map { |u| u['username'] }).to include(user.username, non_member.username) }
2016-09-13 17:45:13 +05:30
end
2015-04-26 12:48:37 +05:30
end
2016-09-13 17:45:13 +05:30
context 'all users' do
2015-09-11 14:41:01 +05:30
before do
2016-09-13 17:45:13 +05:30
sign_in(user)
get(:users)
2015-09-11 14:41:01 +05:30
end
2016-09-13 17:45:13 +05:30
let(:body) { JSON.parse(response.body) }
2015-09-11 14:41:01 +05:30
it { expect(body).to be_kind_of(Array) }
2016-09-13 17:45:13 +05:30
it { expect(body.size).to eq User.count }
2015-09-11 14:41:01 +05:30
end
2015-04-26 12:48:37 +05:30
2017-09-10 17:25:29 +05:30
context 'user order' do
it 'shows exact matches first' do
reported_user = create(:user, username: 'reported_user', name: 'Doug')
user = create(:user, username: 'user', name: 'User')
user1 = create(:user, username: 'user1', name: 'Ian')
sign_in(user)
get(:users, search: 'user')
response_usernames = JSON.parse(response.body).map { |user| user['username'] }
expect(response_usernames.take(3)).to match_array([user.username, reported_user.username, user1.username])
end
end
2017-08-17 22:00:37 +05:30
context 'limited users per page' do
let(:per_page) { 2 }
before do
sign_in(user)
get(:users, per_page: per_page)
end
let(:body) { JSON.parse(response.body) }
it { expect(body).to be_kind_of(Array) }
it { expect(body.size).to eq per_page }
end
2016-09-13 17:45:13 +05:30
context 'unauthenticated user' do
let(:public_project) { create(:project, :public) }
let(:body) { JSON.parse(response.body) }
2015-04-26 12:48:37 +05:30
2016-09-13 17:45:13 +05:30
describe 'GET #users with public project' do
before do
2017-08-17 22:00:37 +05:30
public_project.add_guest(user)
2016-09-13 17:45:13 +05:30
get(:users, project_id: public_project.id)
end
2015-04-26 12:48:37 +05:30
2016-09-13 17:45:13 +05:30
it { expect(body).to be_kind_of(Array) }
2017-09-10 17:25:29 +05:30
it { expect(body.size).to eq 2 }
2016-09-13 17:45:13 +05:30
end
2015-09-11 14:41:01 +05:30
2016-09-13 17:45:13 +05:30
describe 'GET #users with project' do
before do
get(:users, project_id: project.id)
end
2015-09-11 14:41:01 +05:30
2016-09-13 17:45:13 +05:30
it { expect(response).to have_http_status(404) }
2015-09-11 14:41:01 +05:30
end
2016-09-13 17:45:13 +05:30
describe 'GET #users with unknown project' do
before do
get(:users, project_id: 'unknown')
end
2015-09-11 14:41:01 +05:30
2016-09-13 17:45:13 +05:30
it { expect(response).to have_http_status(404) }
2015-09-11 14:41:01 +05:30
end
2016-09-13 17:45:13 +05:30
describe 'GET #users with inaccessible group' do
before do
2017-08-17 22:00:37 +05:30
project.add_guest(user)
2016-09-13 17:45:13 +05:30
get(:users, group_id: user.namespace.id)
end
2015-09-11 14:41:01 +05:30
2016-09-13 17:45:13 +05:30
it { expect(response).to have_http_status(404) }
2015-09-11 14:41:01 +05:30
end
2016-09-13 17:45:13 +05:30
describe 'GET #users with no project' do
before do
get(:users)
end
it { expect(body).to be_kind_of(Array) }
it { expect(body.size).to eq 0 }
end
2015-09-11 14:41:01 +05:30
2017-08-17 22:00:37 +05:30
describe 'GET #users with todo filter' do
it 'gives an array of users' do
get :users, todo_filter: true
expect(response.status).to eq 200
expect(body).to be_kind_of(Array)
end
2015-09-11 14:41:01 +05:30
end
2017-08-17 22:00:37 +05:30
end
2015-09-11 14:41:01 +05:30
2017-08-17 22:00:37 +05:30
context 'author of issuable included' do
2016-09-13 17:45:13 +05:30
let(:body) { JSON.parse(response.body) }
2015-09-11 14:41:01 +05:30
2017-08-17 22:00:37 +05:30
context 'authenticated' do
before do
sign_in(user)
end
2016-09-13 17:45:13 +05:30
2017-08-17 22:00:37 +05:30
it 'includes the author' do
get(:users, author_id: non_member.id)
expect(body.first["username"]).to eq non_member.username
end
it 'rejects non existent user ids' do
get(:users, author_id: 99999)
expect(body.collect { |u| u['id'] }).not_to include(99999)
end
2015-09-11 14:41:01 +05:30
end
2017-08-17 22:00:37 +05:30
context 'without authenticating' do
it 'returns empty result' do
get(:users, author_id: non_member.id)
2016-09-13 17:45:13 +05:30
2017-08-17 22:00:37 +05:30
expect(body).to be_empty
end
2016-09-13 17:45:13 +05:30
end
end
context 'skip_users parameter included' do
2017-09-10 17:25:29 +05:30
before do
sign_in(user)
end
2016-09-13 17:45:13 +05:30
it 'skips the user IDs passed' do
get(:users, skip_users: [user, user2].map(&:id))
other_user_ids = [non_member, project.owner, project.creator].map(&:id)
response_user_ids = JSON.parse(response.body).map { |user| user['id'] }
expect(response_user_ids).to contain_exactly(*other_user_ids)
end
2015-09-11 14:41:01 +05:30
end
2015-04-26 12:48:37 +05:30
end
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
context 'GET projects' do
2016-09-13 17:45:13 +05:30
let(:authorized_project) { create(:project) }
let(:authorized_search_project) { create(:project, name: 'rugged') }
2016-06-02 11:05:42 +05:30
before do
sign_in(user)
2017-08-17 22:00:37 +05:30
project.add_master(user)
2016-06-02 11:05:42 +05:30
end
2016-09-13 17:45:13 +05:30
context 'authorized projects' do
before do
2017-08-17 22:00:37 +05:30
authorized_project.add_master(user)
2016-09-13 17:45:13 +05:30
end
describe 'GET #projects with project ID' do
before do
get(:projects, project_id: project.id)
end
2016-06-02 11:05:42 +05:30
2016-09-13 17:45:13 +05:30
let(:body) { JSON.parse(response.body) }
2016-06-02 11:05:42 +05:30
2016-09-13 17:45:13 +05:30
it do
expect(body).to be_kind_of(Array)
expect(body.size).to eq 2
expect(body.first['id']).to eq 0
expect(body.first['name_with_namespace']).to eq 'No project'
expect(body.last['id']).to eq authorized_project.id
expect(body.last['name_with_namespace']).to eq authorized_project.name_with_namespace
end
end
2016-06-02 11:05:42 +05:30
end
2016-09-13 17:45:13 +05:30
context 'authorized projects and search' do
before do
2017-08-17 22:00:37 +05:30
authorized_project.add_master(user)
authorized_search_project.add_master(user)
2016-09-13 17:45:13 +05:30
end
describe 'GET #projects with project ID and search' do
before do
get(:projects, project_id: project.id, search: 'rugged')
end
let(:body) { JSON.parse(response.body) }
it do
expect(body).to be_kind_of(Array)
expect(body.size).to eq 2
2016-06-02 11:05:42 +05:30
2016-09-13 17:45:13 +05:30
expect(body.last['id']).to eq authorized_search_project.id
expect(body.last['name_with_namespace']).to eq authorized_search_project.name_with_namespace
end
end
end
2016-09-29 09:46:39 +05:30
context 'authorized projects apply limit' do
before do
authorized_project2 = create(:project)
authorized_project3 = create(:project)
2017-08-17 22:00:37 +05:30
authorized_project.add_master(user)
authorized_project2.add_master(user)
authorized_project3.add_master(user)
2016-09-29 09:46:39 +05:30
stub_const 'MoveToProjectFinder::PAGE_SIZE', 2
end
describe 'GET #projects with project ID' do
before do
get(:projects, project_id: project.id)
end
let(:body) { JSON.parse(response.body) }
it do
expect(body).to be_kind_of(Array)
expect(body.size).to eq 3 # Of a total of 4
end
end
end
context 'authorized projects with offset' do
before do
authorized_project2 = create(:project)
authorized_project3 = create(:project)
2017-08-17 22:00:37 +05:30
authorized_project.add_master(user)
authorized_project2.add_master(user)
authorized_project3.add_master(user)
2016-09-29 09:46:39 +05:30
end
describe 'GET #projects with project ID and offset_id' do
before do
get(:projects, project_id: project.id, offset_id: authorized_project.id)
end
let(:body) { JSON.parse(response.body) }
it do
expect(body.detect { |item| item['id'] == 0 }).to be_nil # 'No project' is not there
expect(body.detect { |item| item['id'] == authorized_project.id }).to be_nil # Offset project is not there either
end
end
end
2016-09-13 17:45:13 +05:30
context 'authorized projects without admin_issue ability' do
before(:each) do
2017-08-17 22:00:37 +05:30
authorized_project.add_guest(user)
2016-09-13 17:45:13 +05:30
expect(user.can?(:admin_issue, authorized_project)).to eq(false)
end
describe 'GET #projects with project ID' do
before do
get(:projects, project_id: project.id)
end
let(:body) { JSON.parse(response.body) }
it do
expect(body).to be_kind_of(Array)
expect(body.size).to eq 1 # 'No project'
expect(body.first['id']).to eq 0
end
end
2016-06-02 11:05:42 +05:30
end
end
2015-04-26 12:48:37 +05:30
end