blob: 5b7a3e83a8b4a64937500371e217e81f5ca0328c (
plain)
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
73
74
75
76
77
78
79
80
81
|
use strict;
use warnings;
use Test::More;
use FixMyStreet::TestMech;
my $mech = FixMyStreet::TestMech->new;
my $secret = FixMyStreet::App->model('DB::Secret')->search();
# don't explode if there's nothing in the secret table
if ( $secret == 0 ) {
diag "You need to put an entry in the secret table for the admin tests to run";
plan skip_all => 'No entry in secret table';
}
$mech->get_ok('/admin');
$mech->title_like(qr/Summary/);
$mech->get_ok('/admin/council_contacts/2650');
$mech->content_contains('Aberdeen City Council');
$mech->content_contains('AB15 8RN');
subtest 'check contact creation' => sub {
my $contact = FixMyStreet::App->model('DB::Contact')->find(
{ area_id => 2650, category => 'test category' }
);
$contact->delete if $contact;
my $history = FixMyStreet::App->model('DB::ContactsHistory')->search(
{ area_id => 2650, category => 'test category' }
);
$history->delete_all;
$mech->get_ok('/admin/council_contacts/2650');
$mech->submit_form_ok( { with_fields => {
category => 'test category',
email => 'test@example.com',
note => 'test note',
} } );
$mech->content_contains( 'test category' );
$mech->content_contains( '<td>test@example.com' );
$mech->content_contains( '<td>test note' );
};
subtest 'check contact editing' => sub {
$mech->get_ok('/admin/council_edit/2650/test%20category');
$mech->submit_form_ok( { with_fields => {
email => 'test2@example.com',
note => 'test2 note',
} } );
$mech->content_contains( 'test category' );
$mech->content_contains( '<td>test2@example.com' );
$mech->content_contains( '<td>test2 note' );
$mech->get_ok('/admin/council_edit/2650/test%20category');
$mech->content_contains( '<td><strong>test2@example.com' );
};
subtest 'check contact updating' => sub {
$mech->get_ok('/admin/council_edit/2650/test%20category');
$mech->content_like(qr{test2\@example.com</strong>[^<]*</td>[^<]*<td>No}s);
$mech->get_ok('/admin/council_contacts/2650');
$mech->form_number( 1 );
$mech->tick( 'confirmed', 'test category' );
$mech->submit_form_ok({form_number => 1});
$mech->content_like(qr'test2@example.com</td>[^<]*<td>Yes's);
$mech->get_ok('/admin/council_edit/2650/test%20category');
$mech->content_like(qr{test2\@example.com[^<]*</td>[^<]*<td><strong>Yes}s);
};
done_testing();
|