1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
use FixMyStreet::Script::UpdateAllReports;
use FixMyStreet::TestMech;
my $mech = FixMyStreet::TestMech->new;
my $body = $mech->create_body_ok( 2514, 'Birmingham' );
my $contact = $mech->create_contact_ok(
body_id => $body->id,
category => 'Traffic lights',
email => 'lights@example.com'
);
my $data;
FixMyStreet::override_config {
MAPIT_URL => 'http://mapit.uk/',
}, sub {
$data = FixMyStreet::Script::UpdateAllReports::generate_dashboard($body);
};
FixMyStreet::override_config {
MAPIT_URL => 'http://mapit.uk/',
TEST_DASHBOARD_DATA => $data,
ALLOWED_COBRANDS => 'fixmystreet',
}, sub {
# Not logged in, redirected
$mech->get_ok('/reports/Birmingham/summary');
is $mech->uri->path, '/about/council-dashboard';
$mech->submit_form_ok({ with_fields => { username => 'someone@somewhere.example.org' }});
$mech->content_contains('We will be in touch');
# XXX Check email arrives
$mech->log_in_ok('someone@somewhere.example.org');
$mech->get_ok('/reports/Birmingham/summary');
is $mech->uri->path, '/about/council-dashboard';
$mech->content_contains('Ending in .gov.uk');
$mech->submit_form_ok({ with_fields => { name => 'Someone', username => 'someone@birmingham.gov.uk' }});
$mech->content_contains('Now check your email');
# XXX Check email arrives, click link
$mech->log_in_ok('someone@birmingham.gov.uk');
# Logged in, redirects
$mech->get_ok('/about/council-dashboard');
is $mech->uri->path, '/reports/Birmingham/summary';
$mech->content_contains('Where we send Birmingham');
$mech->content_contains('lights@example.com');
$body->send_method('Open311');
$body->update();
$mech->get_ok('/about/council-dashboard');
$mech->content_contains('Reports to Birmingham are currently sent directly');
$body->send_method('Refused');
$body->update();
$mech->get_ok('/about/council-dashboard');
$mech->content_contains('Birmingham currently does not accept');
$body->send_method('Noop');
$body->update();
$mech->get_ok('/about/council-dashboard');
$mech->content_contains('Reports are currently not being sent');
$mech->log_out_ok();
$mech->get_ok('/reports');
$mech->content_lacks('Where we send Birmingham');
};
END {
done_testing();
}
|