users_test.rb
343 lines
| 10.2 KiB
| text/x-ruby
|
RubyLexer
|
r4339 | # Redmine - project management software | ||
|
r6813 | # Copyright (C) 2006-2011 Jean-Philippe Lang | ||
|
r4339 | # | ||
# 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. | ||||
|
r6813 | # | ||
|
r4339 | # 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. | ||||
|
r6813 | # | ||
|
r4339 | # 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. | ||||
|
r4395 | require File.expand_path('../../../test_helper', __FILE__) | ||
|
r4339 | require 'pp' | ||
class ApiTest::UsersTest < ActionController::IntegrationTest | ||||
fixtures :users | ||||
def setup | ||||
Setting.rest_api_enabled = '1' | ||||
end | ||||
context "GET /users" do | ||||
should_allow_api_authentication(:get, "/users.xml") | ||||
should_allow_api_authentication(:get, "/users.json") | ||||
end | ||||
context "GET /users/2" do | ||||
context ".xml" do | ||||
should "return requested user" do | ||||
get '/users/2.xml' | ||||
|
r6813 | |||
|
r8685 | assert_response :success | ||
|
r4339 | assert_tag :tag => 'user', | ||
:child => {:tag => 'id', :content => '2'} | ||||
end | ||||
|
r8685 | |||
context "with include=memberships" do | ||||
should "include memberships" do | ||||
get '/users/2.xml?include=memberships' | ||||
assert_response :success | ||||
assert_tag :tag => 'memberships', | ||||
:parent => {:tag => 'user'}, | ||||
:children => {:count => 1} | ||||
end | ||||
end | ||||
|
r4339 | end | ||
context ".json" do | ||||
should "return requested user" do | ||||
get '/users/2.json' | ||||
|
r6813 | |||
|
r8685 | assert_response :success | ||
|
r4339 | json = ActiveSupport::JSON.decode(response.body) | ||
assert_kind_of Hash, json | ||||
assert_kind_of Hash, json['user'] | ||||
assert_equal 2, json['user']['id'] | ||||
end | ||||
|
r8685 | |||
context "with include=memberships" do | ||||
should "include memberships" do | ||||
get '/users/2.json?include=memberships' | ||||
assert_response :success | ||||
json = ActiveSupport::JSON.decode(response.body) | ||||
assert_kind_of Array, json['user']['memberships'] | ||||
assert_equal [{ | ||||
"id"=>1, | ||||
"project"=>{"name"=>"eCookbook", "id"=>1}, | ||||
"roles"=>[{"name"=>"Manager", "id"=>1}] | ||||
}], json['user']['memberships'] | ||||
end | ||||
end | ||||
|
r4339 | end | ||
end | ||||
|
r6813 | |||
|
r4430 | context "GET /users/current" do | ||
context ".xml" do | ||||
should "require authentication" do | ||||
get '/users/current.xml' | ||||
|
r6813 | |||
|
r4430 | assert_response 401 | ||
end | ||||
|
r6813 | |||
|
r4430 | should "return current user" do | ||
|
r8357 | get '/users/current.xml', {}, credentials('jsmith') | ||
|
r6813 | |||
|
r4430 | assert_tag :tag => 'user', | ||
:child => {:tag => 'id', :content => '2'} | ||||
end | ||||
end | ||||
end | ||||
|
r4339 | |||
context "POST /users" do | ||||
context "with valid parameters" do | ||||
setup do | ||||
|
r8202 | @parameters = { | ||
:user => { | ||||
:login => 'foo', :firstname => 'Firstname', :lastname => 'Lastname', | ||||
:mail => 'foo@example.net', :password => 'secret', | ||||
:mail_notification => 'only_assigned' | ||||
} | ||||
} | ||||
|
r4339 | end | ||
|
r6813 | |||
|
r4339 | context ".xml" do | ||
should_allow_api_authentication(:post, | ||||
'/users.xml', | ||||
|
r8202 | {:user => { | ||
:login => 'foo', :firstname => 'Firstname', :lastname => 'Lastname', | ||||
:mail => 'foo@example.net', :password => 'secret' | ||||
}}, | ||||
|
r4339 | {:success_code => :created}) | ||
|
r6813 | |||
|
r4339 | should "create a user with the attributes" do | ||
assert_difference('User.count') do | ||||
|
r8357 | post '/users.xml', @parameters, credentials('admin') | ||
|
r4339 | end | ||
|
r6813 | |||
|
r4339 | user = User.first(:order => 'id DESC') | ||
assert_equal 'foo', user.login | ||||
assert_equal 'Firstname', user.firstname | ||||
assert_equal 'Lastname', user.lastname | ||||
assert_equal 'foo@example.net', user.mail | ||||
|
r4382 | assert_equal 'only_assigned', user.mail_notification | ||
|
r4339 | assert !user.admin? | ||
|
r4379 | assert user.check_password?('secret') | ||
|
r6813 | |||
|
r4339 | assert_response :created | ||
assert_equal 'application/xml', @response.content_type | ||||
assert_tag 'user', :child => {:tag => 'id', :content => user.id.to_s} | ||||
end | ||||
end | ||||
|
r6813 | |||
|
r4339 | context ".json" do | ||
should_allow_api_authentication(:post, | ||||
'/users.json', | ||||
|
r8202 | {:user => { | ||
:login => 'foo', :firstname => 'Firstname', :lastname => 'Lastname', | ||||
:mail => 'foo@example.net' | ||||
}}, | ||||
|
r4339 | {:success_code => :created}) | ||
|
r6813 | |||
|
r4339 | should "create a user with the attributes" do | ||
assert_difference('User.count') do | ||||
|
r8357 | post '/users.json', @parameters, credentials('admin') | ||
|
r4339 | end | ||
|
r6813 | |||
|
r4339 | user = User.first(:order => 'id DESC') | ||
assert_equal 'foo', user.login | ||||
assert_equal 'Firstname', user.firstname | ||||
assert_equal 'Lastname', user.lastname | ||||
assert_equal 'foo@example.net', user.mail | ||||
assert !user.admin? | ||||
|
r6813 | |||
|
r4339 | assert_response :created | ||
assert_equal 'application/json', @response.content_type | ||||
json = ActiveSupport::JSON.decode(response.body) | ||||
assert_kind_of Hash, json | ||||
assert_kind_of Hash, json['user'] | ||||
assert_equal user.id, json['user']['id'] | ||||
end | ||||
end | ||||
end | ||||
|
r6813 | |||
|
r4339 | context "with invalid parameters" do | ||
setup do | ||||
@parameters = {:user => {:login => 'foo', :lastname => 'Lastname', :mail => 'foo'}} | ||||
end | ||||
|
r6813 | |||
|
r4339 | context ".xml" do | ||
should "return errors" do | ||||
assert_no_difference('User.count') do | ||||
|
r8357 | post '/users.xml', @parameters, credentials('admin') | ||
|
r4339 | end | ||
|
r6813 | |||
|
r4339 | assert_response :unprocessable_entity | ||
assert_equal 'application/xml', @response.content_type | ||||
|
r8202 | assert_tag 'errors', :child => { | ||
:tag => 'error', | ||||
:content => "First name can't be blank" | ||||
} | ||||
|
r4339 | end | ||
end | ||||
|
r6813 | |||
|
r4339 | context ".json" do | ||
should "return errors" do | ||||
assert_no_difference('User.count') do | ||||
|
r8357 | post '/users.json', @parameters, credentials('admin') | ||
|
r4339 | end | ||
|
r6813 | |||
|
r4339 | assert_response :unprocessable_entity | ||
assert_equal 'application/json', @response.content_type | ||||
json = ActiveSupport::JSON.decode(response.body) | ||||
assert_kind_of Hash, json | ||||
assert json.has_key?('errors') | ||||
assert_kind_of Array, json['errors'] | ||||
end | ||||
end | ||||
end | ||||
end | ||||
context "PUT /users/2" do | ||||
context "with valid parameters" do | ||||
setup do | ||||
|
r8202 | @parameters = { | ||
:user => { | ||||
:login => 'jsmith', :firstname => 'John', :lastname => 'Renamed', | ||||
:mail => 'jsmith@somenet.foo' | ||||
} | ||||
} | ||||
|
r4339 | end | ||
|
r6813 | |||
|
r4339 | context ".xml" do | ||
should_allow_api_authentication(:put, | ||||
'/users/2.xml', | ||||
|
r8202 | {:user => { | ||
:login => 'jsmith', :firstname => 'John', :lastname => 'Renamed', | ||||
:mail => 'jsmith@somenet.foo' | ||||
}}, | ||||
|
r4339 | {:success_code => :ok}) | ||
|
r6813 | |||
|
r4339 | should "update user with the attributes" do | ||
assert_no_difference('User.count') do | ||||
|
r8357 | put '/users/2.xml', @parameters, credentials('admin') | ||
|
r4339 | end | ||
|
r6813 | |||
|
r4339 | user = User.find(2) | ||
assert_equal 'jsmith', user.login | ||||
assert_equal 'John', user.firstname | ||||
assert_equal 'Renamed', user.lastname | ||||
assert_equal 'jsmith@somenet.foo', user.mail | ||||
assert !user.admin? | ||||
|
r6813 | |||
|
r4339 | assert_response :ok | ||
end | ||||
end | ||||
|
r6813 | |||
|
r4339 | context ".json" do | ||
should_allow_api_authentication(:put, | ||||
'/users/2.json', | ||||
|
r8202 | {:user => { | ||
:login => 'jsmith', :firstname => 'John', :lastname => 'Renamed', | ||||
:mail => 'jsmith@somenet.foo' | ||||
}}, | ||||
|
r4339 | {:success_code => :ok}) | ||
|
r6813 | |||
|
r4339 | should "update user with the attributes" do | ||
assert_no_difference('User.count') do | ||||
|
r8357 | put '/users/2.json', @parameters, credentials('admin') | ||
|
r4339 | end | ||
|
r6813 | |||
|
r4339 | user = User.find(2) | ||
assert_equal 'jsmith', user.login | ||||
assert_equal 'John', user.firstname | ||||
assert_equal 'Renamed', user.lastname | ||||
assert_equal 'jsmith@somenet.foo', user.mail | ||||
assert !user.admin? | ||||
|
r6813 | |||
|
r4339 | assert_response :ok | ||
end | ||||
end | ||||
end | ||||
|
r6813 | |||
|
r4339 | context "with invalid parameters" do | ||
setup do | ||||
|
r8202 | @parameters = { | ||
:user => { | ||||
:login => 'jsmith', :firstname => '', :lastname => 'Lastname', | ||||
:mail => 'foo' | ||||
} | ||||
} | ||||
|
r4339 | end | ||
|
r6813 | |||
|
r4339 | context ".xml" do | ||
should "return errors" do | ||||
assert_no_difference('User.count') do | ||||
|
r8357 | put '/users/2.xml', @parameters, credentials('admin') | ||
|
r4339 | end | ||
|
r6813 | |||
|
r4339 | assert_response :unprocessable_entity | ||
assert_equal 'application/xml', @response.content_type | ||||
|
r8202 | assert_tag 'errors', :child => { | ||
:tag => 'error', | ||||
:content => "First name can't be blank" | ||||
} | ||||
|
r4339 | end | ||
end | ||||
|
r6813 | |||
|
r4339 | context ".json" do | ||
should "return errors" do | ||||
assert_no_difference('User.count') do | ||||
|
r8357 | put '/users/2.json', @parameters, credentials('admin') | ||
|
r4339 | end | ||
|
r6813 | |||
|
r4339 | assert_response :unprocessable_entity | ||
assert_equal 'application/json', @response.content_type | ||||
json = ActiveSupport::JSON.decode(response.body) | ||||
assert_kind_of Hash, json | ||||
assert json.has_key?('errors') | ||||
assert_kind_of Array, json['errors'] | ||||
end | ||||
end | ||||
end | ||||
|
r4609 | end | ||
|
r6813 | |||
|
r4609 | context "DELETE /users/2" do | ||
context ".xml" do | ||||
should_allow_api_authentication(:delete, | ||||
'/users/2.xml', | ||||
{}, | ||||
{:success_code => :ok}) | ||||
|
r6813 | |||
|
r4609 | should "delete user" do | ||
assert_difference('User.count', -1) do | ||||
|
r8357 | delete '/users/2.xml', {}, credentials('admin') | ||
|
r4339 | end | ||
|
r6813 | |||
|
r4609 | assert_response :ok | ||
|
r4339 | end | ||
|
r4609 | end | ||
|
r6813 | |||
|
r4609 | context ".json" do | ||
should_allow_api_authentication(:delete, | ||||
'/users/2.xml', | ||||
{}, | ||||
{:success_code => :ok}) | ||||
|
r6813 | |||
|
r4609 | should "delete user" do | ||
assert_difference('User.count', -1) do | ||||
|
r8357 | delete '/users/2.json', {}, credentials('admin') | ||
|
r4339 | end | ||
|
r6813 | |||
|
r4609 | assert_response :ok | ||
|
r4339 | end | ||
end | ||||
end | ||||
end | ||||