diff options
Diffstat (limited to 't')
-rw-r--r-- | t/app/controller/dashboard.t | 36 | ||||
-rw-r--r-- | t/cobrand/bathnes.t | 81 |
2 files changed, 85 insertions, 32 deletions
diff --git a/t/app/controller/dashboard.t b/t/app/controller/dashboard.t index b53056968..3a031bec3 100644 --- a/t/app/controller/dashboard.t +++ b/t/app/controller/dashboard.t @@ -43,9 +43,13 @@ foreach my $problem (@fixed_problems) { $mech->create_comment_for_problem($problem, $counciluser, 'Title', 'text', 0, 'confirmed', 'fixed'); } +my $first_problem_id; +my $first_update_id; foreach my $problem (@closed_problems) { $problem->update({ state => 'closed' }); - $mech->create_comment_for_problem($problem, $counciluser, 'Title', 'text', 0, 'confirmed', 'closed', { confirmed => \'current_timestamp' }); + my ($update) = $mech->create_comment_for_problem($problem, $counciluser, 'Title', 'text', 0, 'confirmed', 'closed', { confirmed => \'current_timestamp' }); + $first_problem_id = $problem->id unless $first_problem_id; + $first_update_id = $update->id unless $first_update_id; } my $categories = scraper { @@ -154,7 +158,7 @@ FixMyStreet::override_config { } is scalar @rows, 19, '1 (header) + 18 (reports) = 19 lines'; - is scalar @{$rows[0]}, 18, '18 columns present'; + is scalar @{$rows[0]}, 20, '20 columns present'; is_deeply $rows[0], [ @@ -176,6 +180,8 @@ FixMyStreet::override_config { 'Easting', 'Northing', 'Report URL', + 'Site Used', + 'Reported As', ], 'Column headers look correct'; @@ -184,6 +190,32 @@ FixMyStreet::override_config { is $rows[5]->[16], '179716', 'Correct Northing conversion'; }; + subtest 'export updates as csv' => sub { + $mech->get_ok('/dashboard?updates=1&export=1'); + open my $data_handle, '<', \$mech->content; + my $csv = Text::CSV->new( { binary => 1 } ); + my @rows; + while ( my $row = $csv->getline( $data_handle ) ) { + push @rows, $row; + } + is scalar @rows, 15, '1 (header) + 14 (updates) = 15 lines'; + is scalar @{$rows[0]}, 8, '8 columns present'; + + is_deeply $rows[0], + [ + 'Report ID', 'Update ID', 'Date', 'Status', 'Problem state', + 'Text', 'User Name', 'Reported As', + ], + 'Column headers look correct'; + + is $rows[1]->[0], $first_problem_id, 'Correct report ID'; + is $rows[1]->[1], $first_update_id, 'Correct update ID'; + is $rows[1]->[3], 'confirmed', 'Correct state'; + is $rows[1]->[4], 'closed', 'Correct problem state'; + is $rows[1]->[5], 'text', 'Correct text'; + is $rows[1]->[6], 'Title', 'Correct name'; + }; + subtest 'export as csv using token' => sub { $mech->log_out_ok; diff --git a/t/cobrand/bathnes.t b/t/cobrand/bathnes.t index e0ad07c16..59e0d5246 100644 --- a/t/cobrand/bathnes.t +++ b/t/cobrand/bathnes.t @@ -72,7 +72,7 @@ subtest 'extra CSV columns are absent if permission not granted' => sub { } is scalar @rows, 5, '1 (header) + 4 (reports) = 5 lines'; - is scalar @{$rows[0]}, 18, '18 columns present'; + is scalar @{$rows[0]}, 20, '20 columns present'; is_deeply $rows[0], [ @@ -94,6 +94,8 @@ subtest 'extra CSV columns are absent if permission not granted' => sub { 'Easting', 'Northing', 'Report URL', + 'Site Used', + 'Reported As', ], 'Column headers look correct'; }; @@ -153,42 +155,61 @@ subtest 'extra CSV columns are present if permission granted' => sub { 'Easting', 'Northing', 'Report URL', + 'Site Used', + 'Reported As', 'User Email', 'User Phone', - 'Reported As', 'Staff User', 'Attribute Data', - 'Site Used', ], 'Column headers look correct'; - is $rows[1]->[18], 'normaluser@example.com', 'User email is correct'; - is $rows[1]->[19], '+447123456789', 'User phone number is correct'; - is $rows[1]->[20], '', 'Reported As is empty if not made on behalf of another user/body'; - is $rows[1]->[21], '', 'Staff User is empty if not made on behalf of another user'; - is $rows[1]->[22], 'width = 10cm; depth = 25cm', 'Attribute Data is correct'; - is $rows[1]->[23], 'iOS', 'Site Used shows whether report made via app'; - - is $rows[2]->[18], 'counciluser@example.com', 'User email is correct'; - is $rows[2]->[19], '', 'User phone number is correct'; - is $rows[2]->[20], 'body', 'Reported As is correct if made on behalf of body'; - is $rows[2]->[21], '', 'Staff User is empty if not made on behalf of another user'; - is $rows[2]->[22], '', 'Attribute Data is correct'; - is $rows[2]->[23], 'bathnes', 'Site Used shows correct cobrand'; - - is $rows[3]->[18], 'normaluser@example.com', 'User email is correct'; - is $rows[3]->[19], '+447123456789', 'User phone number is correct'; - is $rows[3]->[20], 'another_user', 'Reported As is set if reported on behalf of another user'; - is $rows[3]->[21], 'counciluser@example.com', 'Staff User is correct if made on behalf of another user'; - is $rows[3]->[22], '', 'Attribute Data is correct'; - is $rows[3]->[23], 'bathnes', 'Site Used shows correct cobrand'; - - is $rows[4]->[18], 'counciluser@example.com', 'User email is correct'; - is $rows[4]->[19], '', 'User phone number is correct'; - is $rows[4]->[20], 'anonymous_user', 'Reported As is set if reported on behalf of another user'; - is $rows[4]->[21], '', 'Staff User is empty if not made on behalf of another user'; - is $rows[4]->[22], '', 'Attribute Data is correct'; - is $rows[4]->[23], 'bathnes', 'Site Used shows correct cobrand'; + is $rows[1]->[18], 'iOS', 'Site Used shows whether report made via app'; + is $rows[1]->[19], '', 'Reported As is empty if not made on behalf of another user/body'; + is $rows[1]->[20], 'normaluser@example.com', 'User email is correct'; + is $rows[1]->[21], '+447123456789', 'User phone number is correct'; + is $rows[1]->[22], '', 'Staff User is empty if not made on behalf of another user'; + is $rows[1]->[23], 'width = 10cm; depth = 25cm', 'Attribute Data is correct'; + + is $rows[2]->[18], 'bathnes', 'Site Used shows correct cobrand'; + is $rows[2]->[19], 'body', 'Reported As is correct if made on behalf of body'; + is $rows[2]->[20], 'counciluser@example.com', 'User email is correct'; + is $rows[2]->[21], '', 'User phone number is correct'; + is $rows[2]->[22], '', 'Staff User is empty if not made on behalf of another user'; + is $rows[2]->[23], '', 'Attribute Data is correct'; + + is $rows[3]->[18], 'bathnes', 'Site Used shows correct cobrand'; + is $rows[3]->[19], 'another_user', 'Reported As is set if reported on behalf of another user'; + is $rows[3]->[20], 'normaluser@example.com', 'User email is correct'; + is $rows[3]->[21], '+447123456789', 'User phone number is correct'; + is $rows[3]->[22], 'counciluser@example.com', 'Staff User is correct if made on behalf of another user'; + is $rows[3]->[23], '', 'Attribute Data is correct'; + + is $rows[4]->[18], 'bathnes', 'Site Used shows correct cobrand'; + is $rows[4]->[19], 'anonymous_user', 'Reported As is set if reported on behalf of another user'; + is $rows[4]->[20], 'counciluser@example.com', 'User email is correct'; + is $rows[4]->[21], '', 'User phone number is correct'; + is $rows[4]->[22], '', 'Staff User is empty if not made on behalf of another user'; + is $rows[4]->[23], '', 'Attribute Data is correct'; + + $mech->get_ok('/dashboard?export=1&updates=1'); + + open $data_handle, '<', \$mech->content; + $csv = Text::CSV->new( { binary => 1 } ); + @rows = (); + while ( my $row = $csv->getline( $data_handle ) ) { + push @rows, $row; + } + + is scalar @rows, 1, '1 (header) + 0 (updates)'; + is scalar @{$rows[0]}, 10, '10 columns present'; + is_deeply $rows[0], + [ + 'Report ID', 'Update ID', 'Date', 'Status', 'Problem state', + 'Text', 'User Name', 'Reported As', 'Staff User', + 'User Email', + ], + 'Column headers look correct'; }; |