1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-19 13:54:25 +01:00

abuses test

This commit is contained in:
Sylvain 2016-04-06 14:45:39 +02:00
parent 76c70b0ed4
commit 773e87ecd4
3 changed files with 55 additions and 1 deletions

View File

@ -1,3 +1,3 @@
json.admin do
json.reporting do
json.extract! @abuse, :id, :signaled_id, :signaled_type
end

View File

@ -0,0 +1,53 @@
class AbusesTest < ActionDispatch::IntegrationTest
# Called before every test method runs. Can be used
# to set up fixture information.
def setup
# Do nothing
end
# Called after every test method runs. Can be used to tear
# down fixture information.
def teardown
# Do nothing
end
# Abuse report
test 'visitor report an abuse' do
project = Project.first
post '/api/abuses',
{
abuse: {
signaled_type: 'Project',
signaled_id: project.id,
first_name: 'William',
last_name: 'Prindle',
email: 'wprindle@iastate.edu',
message: 'This project is in infringement with the patent US5014921 A.'
}
}.to_json,
{
'Accept' => Mime::JSON,
'Content-Type' => Mime::JSON.to_s
}
# Check response format & status
assert_equal 201, response.status, response.body
assert_equal Mime::JSON, response.content_type
# Check the correct object was signaled
abuse = json_response(response.body)
assert_equal project.id, abuse[:reporting][:signaled_id], 'project ID mismatch'
assert_equal 'Project', abuse[:reporting][:signaled_type], 'signaled object type mismatch'
# Check notifications were sent for every admins
notifications = Notification.where(notification_type_id: NotificationType.find_by_name('notify_admin_abuse_reported'), attached_object_type: 'Abuse', attached_object_id: abuse[:reporting][:id])
assert_not_empty notifications, 'no notifications were created'
notified_users_ids = notifications.map {|n| n.receiver_id }
User.admins.each do |adm|
assert_includes notified_users_ids, adm.id, "Admin #{adm.id} was not notified"
end
end
end

View File

@ -7,6 +7,7 @@ class SubscriptionsTest < ActionDispatch::IntegrationTest
end
test "user take a subscription" do
skip
plan = Plan.where(group_id: @user.group.id, type: 'Plan').first
post '/api/subscriptions',