109 lines
4 KiB
Ruby
109 lines
4 KiB
Ruby
require 'test_helper'
|
|
|
|
class IssuesControllerTest < ActionController::TestCase
|
|
fixtures :users,:user_roles
|
|
|
|
def test_new_issue_without_login
|
|
# Test creation of a new issue and a new report without logging in
|
|
get :new, {reportable_id: 1, reportable_type: "DiaryEntry", reported_user_id: 1}
|
|
assert_response :redirect
|
|
assert_redirected_to login_path(:referer => new_issue_path(:reportable_id=>1, :reportable_type=>"DiaryEntry",:reported_user_id=> 1))
|
|
end
|
|
|
|
def test_new_issue_after_login
|
|
# Test creation of a new issue and a new report
|
|
|
|
# Login
|
|
session[:user] = users(:normal_user).id
|
|
|
|
get :new, {reportable_id: 1, reportable_type: "DiaryEntry", reported_user_id: 1}
|
|
assert_response :success
|
|
assert_difference "Issue.count",1 do
|
|
details = "Details of a report"
|
|
post :create, { :report => { :deatils => details},
|
|
:issue => { reportable_id: 1, reportable_type: "DiaryEntry", reported_user_id: 1} }
|
|
end
|
|
assert_response :redirect
|
|
end
|
|
|
|
def test_new_report
|
|
# Test creation of a new report for an existing issue
|
|
|
|
# Login
|
|
session[:user] = users(:normal_user).id
|
|
|
|
get :new, {reportable_id: 1, reportable_type: "DiaryEntry", reported_user_id: 1}
|
|
assert_response :success
|
|
assert_difference "Issue.count",1 do
|
|
details = "Details of a report"
|
|
post :create, { :report => { :details => details},
|
|
:issue => { reportable_id: 1, reportable_type: "DiaryEntry", reported_user_id: 1} }
|
|
end
|
|
assert_response :redirect
|
|
|
|
get :new, {reportable_id: 1, reportable_type: "DiaryEntry", reported_user_id: 1}
|
|
assert_response :success
|
|
assert_no_difference "Issue.count" do
|
|
details = "Details of another report under the same issue"
|
|
post :create, { :report => { :details => details},
|
|
:issue => { reportable_id: 1, reportable_type: "DiaryEntry", reported_user_id: 1} }
|
|
end
|
|
assert_response :redirect
|
|
assert_equal Issue.find_by_reportable_id_and_reportable_type(1,"DiaryEntry").reports.count,2
|
|
end
|
|
|
|
def test_change_status_by_normal_user
|
|
# Login as normal user
|
|
session[:user] = users(:normal_user).id
|
|
|
|
# Create Issue
|
|
|
|
get :new, {reportable_id: 1, reportable_type: "DiaryEntry", user: 1}
|
|
assert_response :success
|
|
assert_difference "Issue.count",1 do
|
|
details = "Details of a report"
|
|
post :create, { :report => { :deatils => details},
|
|
:issue => { reportable_id: 1, reportable_type: "DiaryEntry", reported_user_id: 1} }
|
|
end
|
|
assert_response :redirect
|
|
|
|
get :resolve, id: Issue.find_by_reportable_id_and_reportable_type(1,"DiaryEntry").id
|
|
assert_response :redirect
|
|
assert_redirected_to root_path
|
|
end
|
|
|
|
def test_change_status_by_admin
|
|
# Login as normal user
|
|
session[:user] = users(:normal_user).id
|
|
|
|
# Create Issue
|
|
|
|
get :new, {reportable_id: 1, reportable_type: "DiaryEntry", user: 1}
|
|
assert_response :success
|
|
assert_difference "Issue.count",1 do
|
|
details = "Details of a report"
|
|
post :create, { :report => { :deatils => details},
|
|
:issue => { reportable_id: 1, reportable_type: "DiaryEntry", reported_user_id: 1} }
|
|
end
|
|
assert_response :redirect
|
|
|
|
# Login as administrator
|
|
session[:user] = users(:administrator_user).id
|
|
|
|
# Test 'Resolved'
|
|
get :resolve, id: Issue.find_by_reportable_id_and_reportable_type(1,"DiaryEntry").id
|
|
assert_equal Issue.find_by_reportable_id_and_reportable_type(1,"DiaryEntry").resolved?, true
|
|
assert_response :redirect
|
|
|
|
# Test 'Reopen'
|
|
get :reopen, id: Issue.find_by_reportable_id_and_reportable_type(1,"DiaryEntry").id
|
|
assert_equal Issue.find_by_reportable_id_and_reportable_type(1,"DiaryEntry").open?, true
|
|
assert_response :redirect
|
|
|
|
# Test 'Ignored'
|
|
get :ignore, id: Issue.find_by_reportable_id_and_reportable_type(1,"DiaryEntry").id
|
|
assert_equal Issue.find_by_reportable_id_and_reportable_type(1,"DiaryEntry").ignored?, true
|
|
assert_response :redirect
|
|
end
|
|
|
|
end
|