-module(admin_handler_report_by_id_tests). -include_lib("eunit/include/eunit.hrl"). -include("records.hrl"). -define(TABLES, [admin, admin_audit, report, ticket]). -define(ADMIN_ID, <<"adm_test_1">>). setup() -> eh_test_support:start_mnesia(), eh_test_support:ensure_tables(?TABLES), eh_test_support:ensure_jwt(), eh_test_support:seed_admin(#{id => ?ADMIN_ID}), ok. cleanup(_) -> eh_test_support:unload_cowboy(), eh_test_support:delete_tables(?TABLES), eh_test_support:stop_mnesia(), ok. admin_report_by_id_test_() -> {foreach, fun setup/0, fun cleanup/1, [ {"GET – success", fun test_get/0}, {"GET – not found", fun test_get_not_found/0}, {"PUT – update status", fun test_update/0}, {"PUT – missing status", fun test_update_missing/0}, {"PUT – not found", fun test_update_not_found/0}, {"GET – unauthorized", fun test_unauthorized/0}, {"PATCH – method not allowed", fun test_wrong_method/0} ]}. seed_report() -> {ok, Report} = core_report:create(<<"u1">>, calendar, <<"cal1">>, <<"spam">>), Report. test_get() -> Report = seed_report(), Id = Report#report.id, {Status, _, Body} = eh_test_support:call(admin_handler_report_by_id, #{ method => <<"GET">>, path => <<"/v1/admin/reports/", Id/binary>>, bindings => #{id => Id}, auth => ?ADMIN_ID }), ?assertEqual(200, Status), Result = jsx:decode(Body, [return_maps]), ?assertEqual(Id, maps:get(<<"id">>, Result)), ?assertEqual(<<"spam">>, maps:get(<<"reason">>, Result)). test_get_not_found() -> {Status, _, _} = eh_test_support:call(admin_handler_report_by_id, #{ method => <<"GET">>, path => <<"/v1/admin/reports/missing">>, bindings => #{id => <<"missing">>}, auth => ?ADMIN_ID }), ?assertEqual(404, Status). test_update() -> Report = seed_report(), Id = Report#report.id, {Status, _, Body} = eh_test_support:call(admin_handler_report_by_id, #{ method => <<"PUT">>, path => <<"/v1/admin/reports/", Id/binary>>, bindings => #{id => Id}, auth => ?ADMIN_ID, body => jsx:encode(#{<<"status">> => <<"reviewed">>}) }), ?assertEqual(200, Status), Result = jsx:decode(Body, [return_maps]), ?assertEqual(<<"reviewed">>, maps:get(<<"status">>, Result)), Audits = core_admin_audit:list(), ?assert(length(Audits) >= 1). test_update_missing() -> Report = seed_report(), Id = Report#report.id, {Status, _, _} = eh_test_support:call(admin_handler_report_by_id, #{ method => <<"PUT">>, path => <<"/v1/admin/reports/", Id/binary>>, bindings => #{id => Id}, auth => ?ADMIN_ID, body => jsx:encode(#{<<"other">> => <<"x">>}) }), ?assertEqual(400, Status). test_update_not_found() -> {Status, _, _} = eh_test_support:call(admin_handler_report_by_id, #{ method => <<"PUT">>, path => <<"/v1/admin/reports/missing">>, bindings => #{id => <<"missing">>}, auth => ?ADMIN_ID, body => jsx:encode(#{<<"status">> => <<"dismissed">>}) }), ?assertEqual(404, Status). test_unauthorized() -> {Status, _, _} = eh_test_support:call(admin_handler_report_by_id, #{ method => <<"GET">>, path => <<"/v1/admin/reports/x">>, bindings => #{id => <<"x">>}, auth => none }), ?assertEqual(401, Status). test_wrong_method() -> {Status, _, _} = eh_test_support:call(admin_handler_report_by_id, #{ method => <<"PATCH">>, path => <<"/v1/admin/reports/x">>, bindings => #{id => <<"x">>}, auth => ?ADMIN_ID }), ?assertEqual(405, Status).