X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/453f758f91d57688663e354a54061a65945410e7..965f32d545d7c44ad7b36264b818b930a50d8901:/test/controllers/issues_controller_test.rb diff --git a/test/controllers/issues_controller_test.rb b/test/controllers/issues_controller_test.rb index 325e0c297..6f8bee328 100644 --- a/test/controllers/issues_controller_test.rb +++ b/test/controllers/issues_controller_test.rb @@ -1,69 +1,152 @@ require 'test_helper' class IssuesControllerTest < ActionController::TestCase - test "should get index" do - get :index - assert_response :success + 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: "User", reported_user_id: 1} + assert_response :redirect + assert_redirected_to login_path(:referer => new_issue_path(:reportable_id=>1, :reportable_type=>"User",:reported_user_id=> 1)) end - def test_new_issue + def test_new_issue_after_login # Test creation of a new issue and a new report - get :new, {reportable_id: 1, reportable_type: "IssueOne", user: 1} + + # Login + session[:user] = users(:normal_user).id + + assert_equal Issue.count,0 + + # Create an Issue and a report + get :new, {reportable_id: 1, reportable_type: "User", reported_user_id: 2} assert_response :success - assert_difference "Issue.count",1 do + assert_difference "Issue.count",1 do details = "Details of a report" - post :create, { :report => { :deatils => details}, - :issue => { reportable_id: 1, reportable_type: "IssueOne", user: 1} } + post :create, { :report => { :details => details}, + :report_type => "[OFFENSIVE]", + :issue => { reportable_id: 1, reportable_type: "User", reported_user_id: 2} } end + assert_equal Issue.count,1 assert_response :redirect + assert_redirected_to root_path end - def test_new_report - # Test creation of a new report for an existing issue - get :new, {reportable_id: 1, reportable_type: "IssueOne", user: 1} + def test_new_report_with_incomplete_details + # Test creation of a new issue and a new report + + # Login + session[:user] = users(:normal_user).id + + assert_equal Issue.count,0 + + # Create an Issue and a report + get :new, {reportable_id: 1, reportable_type: "User", reported_user_id: 2} assert_response :success - assert_difference "Issue.count",1 do + assert_difference "Issue.count",1 do details = "Details of a report" post :create, { :report => { :details => details}, - :issue => { reportable_id: 1, reportable_type: "IssueOne", user: 1} } - end + :report_type => "[OFFENSIVE]", + :issue => { reportable_id: 1, reportable_type: "User", reported_user_id: 2} } + end + assert_equal Issue.count,1 assert_response :redirect + assert_redirected_to root_path - get :new, {reportable_id: 1, reportable_type: "IssueOne", user: 1} + get :new, {reportable_id: 1, reportable_type: "User", reported_user_id: 2} assert_response :success + + # Report without report_type 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: "IssueOne", user: 1} } + :issue => { reportable_id: 1, reportable_type: "User", reported_user_id: 2} } + end + assert_response :redirect + assert_equal Issue.find_by_reportable_id_and_reportable_type(1,"User").reports.count,1 + + # Report without details + assert_no_difference "Issue.count" do + post :create, { :report_type => "[OFFENSIVE]", + :issue => { reportable_id: 1, reportable_type: "User", reported_user_id: 2} } end assert_response :redirect - assert_equal Issue.find_by_reportable_id_and_reportable_type(1,"IssueOne").reports.count,2 + assert_equal Issue.find_by_reportable_id_and_reportable_type(1,"User").reports.count,1 end - def test_change_status - # Create Issue - get :new, {reportable_id: 1, reportable_type: "IssueOne", user: 1} + def test_new_report_with_complete_details + # Test creation of a new issue and a new report + + # Login + session[:user] = users(:normal_user).id + + assert_equal Issue.count,0 + + # Create an Issue and a report + get :new, {reportable_id: 1, reportable_type: "User", reported_user_id: 2} assert_response :success - assert_difference "Issue.count",1 do + assert_difference "Issue.count",1 do details = "Details of a report" - post :create, { :report => { :deatils => details}, - :issue => { reportable_id: 1, reportable_type: "IssueOne", user: 1} } + post :create, { :report => { :details => details}, + :report_type => "[OFFENSIVE]", + :issue => { reportable_id: 1, reportable_type: "User", reported_user_id: 2} } end + assert_equal Issue.count,1 + assert_response :redirect + assert_redirected_to root_path + + # Create a report for an existing Issue + get :new, {reportable_id: 1, reportable_type: "User", reported_user_id: 2} + assert_response :success + assert_no_difference "Issue.count" do + details = "Details of another report under the same issue" + post :create, { :report => { :details => details}, + :report_type => "[OFFENSIVE]", + :issue => { reportable_id: 1, reportable_type: "User", reported_user_id: 2} } + end + assert_response :redirect + assert_equal Issue.find_by_reportable_id_and_reportable_type(1,"User").reports.count,2 + end + + def test_change_status_by_normal_user + # Login as normal user + session[:user] = users(:normal_user).id + + # Create Issue + test_new_issue_after_login + assert_equal Issue.count,1 + + get :resolve, id: Issue.find_by_reportable_id_and_reportable_type(1,"User").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 + test_new_issue_after_login + assert_equal Issue.count,1 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,"IssueOne").id - assert_equal Issue.find_by_reportable_id_and_reportable_type(1,"IssueOne").resolved?, true + get :resolve, id: Issue.find_by_reportable_id_and_reportable_type(1,"User").id + assert_equal Issue.find_by_reportable_id_and_reportable_type(1,"User").resolved?, true assert_response :redirect # Test 'Reopen' - get :reopen, id: Issue.find_by_reportable_id_and_reportable_type(1,"IssueOne").id - assert_equal Issue.find_by_reportable_id_and_reportable_type(1,"IssueOne").open?, true + get :reopen, id: Issue.find_by_reportable_id_and_reportable_type(1,"User").id + assert_equal Issue.find_by_reportable_id_and_reportable_type(1,"User").open?, true assert_response :redirect # Test 'Ignored' - get :ignore, id: Issue.find_by_reportable_id_and_reportable_type(1,"IssueOne").id - assert_equal Issue.find_by_reportable_id_and_reportable_type(1,"IssueOne").ignored?, true + get :ignore, id: Issue.find_by_reportable_id_and_reportable_type(1,"User").id + assert_equal Issue.find_by_reportable_id_and_reportable_type(1,"User").ignored?, true assert_response :redirect end