kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
131 lines
3.9 KiB
131 lines
3.9 KiB
#-- encoding: UTF-8
|
|
#-- copyright
|
|
# OpenProject is a project management system.
|
|
# Copyright (C) 2012-2015 the OpenProject Foundation (OPF)
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
require 'spec_helper'
|
|
require 'rack/test'
|
|
|
|
describe ::API::V3::Users::UsersAPI, type: :request do
|
|
include API::V3::Utilities::PathHelper
|
|
|
|
let(:path) { api_v3_paths.user(user.id) }
|
|
let(:current_user) { FactoryBot.build(:admin) }
|
|
|
|
let(:user) { FactoryBot.create(:user) }
|
|
let(:parameters) { {} }
|
|
|
|
before do
|
|
login_as(current_user)
|
|
end
|
|
|
|
def send_request
|
|
header "Content-Type", "application/json"
|
|
patch path, parameters.to_json
|
|
end
|
|
|
|
shared_context 'successful update' do |expected_attributes|
|
|
it 'responds with the represented updated user' do
|
|
send_request
|
|
|
|
expect(last_response.status).to eq(200)
|
|
expect(last_response.body).to have_json_type(Object).at_path('_links')
|
|
expect(last_response.body)
|
|
.to be_json_eql('User'.to_json)
|
|
.at_path('_type')
|
|
|
|
updated_user = User.find(user.id)
|
|
(expected_attributes || {}).each do |key, val|
|
|
expect(updated_user.send(key)).to eq(val)
|
|
end
|
|
end
|
|
end
|
|
|
|
describe 'empty request body' do
|
|
it_behaves_like 'successful update'
|
|
end
|
|
|
|
describe 'attribute change' do
|
|
let(:parameters) { { email: 'foo@example.org' } }
|
|
it_behaves_like 'successful update', mail: 'foo@example.org'
|
|
end
|
|
|
|
describe 'password update' do
|
|
let(:password) { 'my!new!password123' }
|
|
let(:parameters) { { password: password } }
|
|
|
|
it 'updates the users password correctly' do
|
|
send_request
|
|
expect(last_response.status).to eq(200)
|
|
|
|
updated_user = User.find(user.id)
|
|
matches = updated_user.check_password?(password)
|
|
expect(matches).to eq(true)
|
|
end
|
|
end
|
|
|
|
describe 'attribute collision' do
|
|
let(:parameters) { { email: 'foo@example.org' } }
|
|
let(:collision) { FactoryBot.create(:user, mail: 'foo@example.org') }
|
|
before do
|
|
collision
|
|
end
|
|
|
|
it 'returns an erroneous response' do
|
|
send_request
|
|
|
|
expect(last_response.status).to eq(422)
|
|
|
|
expect(last_response.body)
|
|
.to be_json_eql('email'.to_json)
|
|
.at_path('_embedded/details/attribute')
|
|
|
|
expect(last_response.body)
|
|
.to be_json_eql('urn:openproject-org:api:v3:errors:PropertyConstraintViolation'.to_json)
|
|
.at_path('errorIdentifier')
|
|
end
|
|
end
|
|
|
|
describe 'unknown user' do
|
|
let(:parameters) { { email: 'foo@example.org' } }
|
|
let(:path) { api_v3_paths.user(666) }
|
|
|
|
it 'responds with 404' do
|
|
send_request
|
|
expect(last_response.status).to eql(404)
|
|
end
|
|
end
|
|
|
|
describe 'unauthorized user' do
|
|
let(:current_user) { FactoryBot.build(:user) }
|
|
let(:parameters) { { email: 'new@example.org' } }
|
|
|
|
it 'returns an erroneous response' do
|
|
send_request
|
|
expect(last_response.status).to eq(403)
|
|
end
|
|
end
|
|
end
|
|
|