mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
67 lines
1.9 KiB
Ruby
67 lines
1.9 KiB
Ruby
class AdminsTest < ActionDispatch::IntegrationTest
|
|
|
|
# Called before every test method runs. Can be used
|
|
# to set up fixture information.
|
|
def setup
|
|
@admin = User.find_by(username: 'admin')
|
|
login_as(@admin, scope: :user)
|
|
end
|
|
|
|
# Called after every test method runs. Can be used to tear
|
|
# down fixture information.
|
|
|
|
def teardown
|
|
# Do nothing
|
|
end
|
|
|
|
test 'create an admin' do
|
|
post '/api/admins',
|
|
{
|
|
admin: {
|
|
username: 'glepower',
|
|
email: 'gerard.lepower@admins.net',
|
|
profile_attributes: {
|
|
first_name: 'Gérard',
|
|
last_name: 'Lepower',
|
|
gender: true,
|
|
birthday: '1999-09-19',
|
|
phone: '0547124852',
|
|
address_attributes: {
|
|
address: '6 Avenue Henri de Bournazel, 19000 Tulle'
|
|
}
|
|
}
|
|
}
|
|
}.to_json,
|
|
default_headers
|
|
|
|
# Check response format & status
|
|
assert_equal 201, response.status, response.body
|
|
assert_equal Mime::JSON, response.content_type
|
|
|
|
# Check the correct admin was created
|
|
admin = json_response(response.body)
|
|
user = User.where(id: admin[:admin][:id]).first
|
|
assert_not_nil user, 'admin was not created in database'
|
|
|
|
# Check he's got the admin role
|
|
assert user.has_role?(:admin), 'admin does not have the admin role'
|
|
end
|
|
|
|
test 'list all admins' do
|
|
get '/api/admins'
|
|
|
|
|
|
# Check response format & status
|
|
assert_equal 200, response.status, response.body
|
|
assert_equal Mime::JSON, response.content_type
|
|
|
|
# Check the list items are ok
|
|
admins = json_response(response.body)
|
|
assert_equal 1, admins.count, 'not all admins retrieved'
|
|
assert_equal @admin.id, admins[:admins][0][:id], 'admin id matches'
|
|
assert_equal @admin.profile.user_avatar.id,
|
|
admins[:admins][0][:profile_attributes][:user_avatar][:id],
|
|
'admin avatar does not match'
|
|
end
|
|
end
|