-
-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
2 additions
and
811 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1363,121 +1363,6 @@ subtest "test Hart" => sub { | |
} | ||
}; | ||
|
||
subtest "test SeeSomething" => sub { | ||
$mech->host('seesomething.fixmystreet.com'); | ||
$mech->clear_emails_ok; | ||
$mech->log_out_ok; | ||
|
||
my $cobrand = FixMyStreet::Cobrand::SeeSomething->new(); | ||
|
||
my $body_ss = $mech->create_body_ok(2535, 'Sandwell Borough Council', id => 2535); | ||
my $bus_contact = $mech->create_contact_ok( | ||
body_id => $body_ss->id, | ||
category => 'Bus', | ||
email => '[email protected]', | ||
non_public => 1, | ||
); | ||
|
||
for my $test ( { | ||
desc => 'report with no user details works', | ||
pc => 'WS1 4NH', | ||
fields => { | ||
detail => 'Test report details', | ||
category => 'Bus', | ||
subcategory => 'Smoking', | ||
}, | ||
email => $cobrand->anonymous_account->{email}, | ||
}, | ||
{ | ||
desc => 'report with user details works', | ||
pc => 'WS1 4NH', | ||
fields => { | ||
detail => 'Test report details', | ||
category => 'Bus', | ||
subcategory => 'Smoking', | ||
email => '[email protected]', | ||
name => 'Non Anon', | ||
}, | ||
email => '[email protected]', | ||
}, | ||
{ | ||
desc => 'report with public category', | ||
pc => 'WS1 4NH', | ||
fields => { | ||
detail => 'Test report details', | ||
category => 'Bus', | ||
subcategory => 'Smoking', | ||
}, | ||
email => $cobrand->anonymous_account->{email}, | ||
public => 1, | ||
} | ||
) { | ||
subtest $test->{desc} => sub { | ||
$mech->clear_emails_ok; | ||
my $user = | ||
FixMyStreet::App->model('DB::User')->find( { email => $test->{email} } ); | ||
|
||
if ( $user ) { | ||
$user->alerts->delete; | ||
$user->problems->delete; | ||
$user->delete; | ||
} | ||
|
||
if ( $test->{public} ) { | ||
$bus_contact->non_public(0); | ||
$bus_contact->update; | ||
} else { | ||
$bus_contact->non_public(1); | ||
$bus_contact->update; | ||
} | ||
|
||
$mech->get_ok( '/around' ); | ||
FixMyStreet::override_config { | ||
ALLOWED_COBRANDS => [ 'seesomething' ], | ||
MAPIT_URL => 'http://mapit.uk/', | ||
}, sub { | ||
$mech->submit_form_ok( | ||
{ | ||
with_fields => { | ||
pc => $test->{pc}, | ||
}, | ||
}, | ||
'submit around form', | ||
); | ||
$mech->follow_link_ok( { text_regex => qr/skip this step/i, }, "follow 'skip this step' link" ); | ||
|
||
$mech->submit_form_ok( | ||
{ | ||
with_fields => $test->{fields}, | ||
}, | ||
'Submit form details with no user details', | ||
); | ||
}; | ||
is_deeply $mech->page_errors, [], "check there were no errors"; | ||
|
||
$user = | ||
FixMyStreet::App->model('DB::User')->find( { email => $test->{email} } ); | ||
ok $user, "user found"; | ||
|
||
my $report = $user->problems->first; | ||
ok $report, "Found the report"; | ||
|
||
$mech->email_count_is(0); | ||
|
||
ok $report->confirmed, 'Report is confirmed automatically'; | ||
|
||
is $mech->uri->path, '/report/new', 'stays on report/new page'; | ||
$mech->content_contains( 'Your report has been sent', 'use report created template' ); | ||
|
||
$user->alerts->delete; | ||
$user->problems->delete; | ||
$user->delete; | ||
}; | ||
} | ||
|
||
$bus_contact->delete; | ||
}; | ||
|
||
subtest "categories from deleted bodies shouldn't be visible for new reports" => sub { | ||
FixMyStreet::override_config { | ||
ALLOWED_COBRANDS => [ { fixmystreet => '.' } ], | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.