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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
|
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use FixMyStreet::App;
use FindBin;
use lib "$FindBin::Bin/../perllib";
use lib "$FindBin::Bin/../commonlib/perllib";
use_ok( 'Open311::PopulateServiceList' );
use_ok( 'Open311' );
my $processor = Open311::PopulateServiceList->new( council_list => [] );
ok $processor, 'created object';
subtest 'check basic functionality' => sub {
FixMyStreet::App->model('DB::Contact')->search( { area_id => 1 } )->delete();
my $service_list = get_xml_simple_object( get_standard_xml() );
my $council = FixMyStreet::App->model('DB::Open311Conf')->new( {
area_id => 1
} );
my $processor = Open311::PopulateServiceList->new( council_list => [] );
$processor->_current_council( $council );
$processor->process_services( $service_list );
my $contact_count = FixMyStreet::App->model('DB::Contact')->search( { area_id => 1 } )->count();
is $contact_count, 3, 'correct number of contacts';
};
subtest 'check non open311 contacts marked as deleted' => sub {
FixMyStreet::App->model('DB::Contact')->search( { area_id => 1 } )->delete();
my $contact = FixMyStreet::App->model('DB::Contact')->create(
{
area_id => 1,
email => 'contact@example.com',
category => 'An old category',
confirmed => 1,
deleted => 0,
editor => $0,
whenedited => \'ms_current_timestamp()',
note => 'test contact',
}
);
my $service_list = get_xml_simple_object( get_standard_xml() );
my $council = FixMyStreet::App->model('DB::Open311Conf')->new( {
area_id => 1
} );
my $processor = Open311::PopulateServiceList->new( council_list => [] );
$processor->_current_council( $council );
$processor->process_services( $service_list );
my $contact_count = FixMyStreet::App->model('DB::Contact')->search( { area_id => 1 } )->count();
is $contact_count, 4, 'correct number of contacts';
$contact_count = FixMyStreet::App->model('DB::Contact')->search( { area_id => 1, deleted => 1 } )->count();
is $contact_count, 1, 'correct number of deleted contacts';
};
subtest 'check email changed if matching category' => sub {
FixMyStreet::App->model('DB::Contact')->search( { area_id => 1 } )->delete();
my $contact = FixMyStreet::App->model('DB::Contact')->create(
{
area_id => 1,
email => '009',
category => 'Cans left out 24x7',
confirmed => 1,
deleted => 0,
editor => $0,
whenedited => \'ms_current_timestamp()',
note => 'test contact',
}
);
ok $contact, 'contact created';
my $service_list = get_xml_simple_object( get_standard_xml() );
my $council = FixMyStreet::App->model('DB::Open311Conf')->new( {
area_id => 1
} );
my $processor = Open311::PopulateServiceList->new( council_list => [] );
$processor->_current_council( $council );
$processor->process_services( $service_list );
$contact->discard_changes;
is $contact->email, '001', 'email unchanged';
is $contact->confirmed, 1, 'contact still confirmed';
is $contact->deleted, 0, 'contact still not deleted';
my $contact_count = FixMyStreet::App->model('DB::Contact')->search( { area_id => 1 } )->count();
is $contact_count, 3, 'correct number of contacts';
};
subtest 'check category name changed if updated' => sub {
FixMyStreet::App->model('DB::Contact')->search( { area_id => 1 } )->delete();
my $contact = FixMyStreet::App->model('DB::Contact')->create(
{
area_id => 1,
email => '001',
category => 'Bins left out 24x7',
confirmed => 1,
deleted => 0,
editor => $0,
whenedited => \'ms_current_timestamp()',
note => 'test contact',
}
);
ok $contact, 'contact created';
my $service_list = get_xml_simple_object( get_standard_xml() );
my $council = FixMyStreet::App->model('DB::Open311Conf')->new( {
area_id => 1
} );
my $processor = Open311::PopulateServiceList->new( council_list => [] );
$processor->_current_council( $council );
$processor->process_services( $service_list );
$contact->discard_changes;
is $contact->email, '001', 'email unchanged';
is $contact->category, 'Cans left out 24x7', 'category changed';
is $contact->confirmed, 1, 'contact still confirmed';
is $contact->deleted, 0, 'contact still not deleted';
my $contact_count = FixMyStreet::App->model('DB::Contact')->search( { area_id => 1 } )->count();
is $contact_count, 3, 'correct number of contacts';
};
subtest 'check conflicting contacts not changed' => sub {
FixMyStreet::App->model('DB::Contact')->search( { area_id => 1 } )->delete();
my $contact = FixMyStreet::App->model('DB::Contact')->create(
{
area_id => 1,
email => 'existing@example.com',
category => 'Cans left out 24x7',
confirmed => 1,
deleted => 0,
editor => $0,
whenedited => \'ms_current_timestamp()',
note => 'test contact',
}
);
ok $contact, 'contact created';
my $contact2 = FixMyStreet::App->model('DB::Contact')->create(
{
area_id => 1,
email => '001',
category => 'Bins left out 24x7',
confirmed => 1,
deleted => 0,
editor => $0,
whenedited => \'ms_current_timestamp()',
note => 'test contact',
}
);
ok $contact2, 'contact created';
my $service_list = get_xml_simple_object( get_standard_xml() );
my $council = FixMyStreet::App->model('DB::Open311Conf')->new( {
area_id => 1
} );
my $processor = Open311::PopulateServiceList->new( council_list => [] );
$processor->_current_council( $council );
$processor->process_services( $service_list );
$contact->discard_changes;
is $contact->email, 'existing@example.com', 'first contact email unchanged';
is $contact->category, 'Cans left out 24x7', 'first contact category unchanged';
is $contact->confirmed, 1, 'first contact contact still confirmed';
is $contact->deleted, 0, 'first contact contact still not deleted';
$contact2->discard_changes;
is $contact2->email, '001', 'second contact email unchanged';
is $contact2->category, 'Bins left out 24x7', 'second contact category unchanged';
is $contact2->confirmed, 1, 'second contact contact still confirmed';
is $contact2->deleted, 0, 'second contact contact still not deleted';
my $contact_count = FixMyStreet::App->model('DB::Contact')->search( { area_id => 1 } )->count();
is $contact_count, 4, 'correct number of contacts';
};
subtest 'check meta data population' => sub {
my $processor = Open311::PopulateServiceList->new( council_list => [] );
my $meta_xml = '<?xml version="1.0" encoding="utf-8"?>
<service_definition>
<service_code>100</service_code>
<attributes>
<attribute>
<variable>true</variable>
<code>type</code>
<datatype>string</datatype>
<required>true</required>
<datatype_description>Type of bin</datatype_description>
<order>1</order>
<description>Type of bin</description>
</attribute>
</attributes>
</service_definition>
';
my $contact = FixMyStreet::App->model('DB::Contact')->find_or_create(
{
area_id => 1,
email => '001',
category => 'Bins left out 24x7',
confirmed => 1,
deleted => 0,
editor => $0,
whenedited => \'ms_current_timestamp()',
note => 'test contact',
}
);
my $o = Open311->new(
jurisdiction => 'mysociety',
endpoint => 'http://example.com',
test_mode => 1,
test_get_returns => { 'services/100.xml' => $meta_xml }
);
my $council = FixMyStreet::App->model('DB::Open311conf')->new( {
area_id => 2482
} );
$processor->_current_open311( $o );
$processor->_current_council( $council );
$processor->_current_service( { service_code => 100 } );
$processor->_add_meta_to_contact( $contact );
my $extra = [ {
variable => 'true',
code => 'type',
datatype => 'string',
required => 'true',
datatype_description => 'Type of bin',
order => 1,
description => 'Type of bin'
} ];
$contact->discard_changes;
is_deeply $contact->extra, $extra, 'meta data saved';
};
subtest 'check attribute ordering' => sub {
my $processor = Open311::PopulateServiceList->new( council_list => [] );
my $meta_xml = '<?xml version="1.0" encoding="utf-8"?>
<service_definition>
<service_code>100</service_code>
<attributes>
<attribute>
<variable>true</variable>
<code>type</code>
<datatype>string</datatype>
<required>true</required>
<datatype_description>Type of bin</datatype_description>
<order>1</order>
<description>Type of bin</description>
</attribute>
<attribute>
<variable>true</variable>
<code>colour</code>
<datatype>string</datatype>
<required>true</required>
<datatype_description>Colour of bin</datatype_description>
<order>3</order>
<description>Colour of bin</description>
</attribute>
<attribute>
<variable>true</variable>
<code>size</code>
<datatype>string</datatype>
<required>true</required>
<datatype_description>Size of bin</datatype_description>
<order>2</order>
<description>Size of bin</description>
</attribute>
</attributes>
</service_definition>
';
my $contact = FixMyStreet::App->model('DB::Contact')->find_or_create(
{
area_id => 1,
email => '001',
category => 'Bins left out 24x7',
confirmed => 1,
deleted => 0,
editor => $0,
whenedited => \'ms_current_timestamp()',
note => 'test contact',
}
);
my $o = Open311->new(
jurisdiction => 'mysociety',
endpoint => 'http://example.com',
test_mode => 1,
test_get_returns => { 'services/100.xml' => $meta_xml }
);
my $council = FixMyStreet::App->model('DB::Open311conf')->new( {
area_id => 1
} );
$processor->_current_open311( $o );
$processor->_current_council( $council );
$processor->_current_service( { service_code => 100 } );
$processor->_add_meta_to_contact( $contact );
my $extra = [
{
variable => 'true',
code => 'type',
datatype => 'string',
required => 'true',
datatype_description => 'Type of bin',
order => 1,
description => 'Type of bin'
},
{
variable => 'true',
code => 'size',
datatype => 'string',
required => 'true',
datatype_description => 'Size of bin',
order => 2,
description => 'Size of bin'
},
{
variable => 'true',
code => 'colour',
datatype => 'string',
required => 'true',
datatype_description => 'Colour of bin',
order => 3,
description => 'Colour of bin'
},
];
$contact->discard_changes;
is_deeply $contact->extra, $extra, 'meta data re-ordered correctly';
};
subtest 'check bromely skip code' => sub {
my $processor = Open311::PopulateServiceList->new( council_list => [] );
my $meta_xml = '<?xml version="1.0" encoding="utf-8"?>
<service_definition>
<service_code>100</service_code>
<attributes>
<attribute>
<variable>true</variable>
<code>type</code>
<datatype>string</datatype>
<required>true</required>
<datatype_description>Type of bin</datatype_description>
<order>1</order>
<description>Type of bin</description>
</attribute>
<attribute>
<variable>true</variable>
<code>title</code>
<datatype>string</datatype>
<required>true</required>
<datatype_description>Type of bin</datatype_description>
<order>1</order>
<description>Type of bin</description>
</attribute>
<attribute>
<variable>true</variable>
<code>report_url</code>
<datatype>string</datatype>
<required>true</required>
<datatype_description>Type of bin</datatype_description>
<order>1</order>
<description>Type of bin</description>
</attribute>
</attributes>
</service_definition>
';
my $contact = FixMyStreet::App->model('DB::Contact')->find_or_create(
{
area_id => 1,
email => '001',
category => 'Bins left out 24x7',
confirmed => 1,
deleted => 0,
editor => $0,
whenedited => \'ms_current_timestamp()',
note => 'test contact',
}
);
my $o = Open311->new(
jurisdiction => 'mysociety',
endpoint => 'http://example.com',
test_mode => 1,
test_get_returns => { 'services/100.xml' => $meta_xml }
);
my $council = FixMyStreet::App->model('DB::Open311conf')->new( {
area_id => 2482
} );
$processor->_current_open311( $o );
$processor->_current_council( $council );
$processor->_current_service( { service_code => 100 } );
$processor->_add_meta_to_contact( $contact );
my $extra = [ {
variable => 'true',
code => 'type',
datatype => 'string',
required => 'true',
datatype_description => 'Type of bin',
order => 1,
description => 'Type of bin'
} ];
$contact->discard_changes;
is_deeply $contact->extra, $extra, 'only non std bromley meta data saved';
$council->area_id(1);
$processor->_current_council( $council );
$processor->_add_meta_to_contact( $contact );
$extra = [
{
variable => 'true',
code => 'type',
datatype => 'string',
required => 'true',
datatype_description => 'Type of bin',
order => 1,
description => 'Type of bin'
},
{
variable => 'true',
code => 'title',
datatype => 'string',
required => 'true',
datatype_description => 'Type of bin',
order => 1,
description => 'Type of bin'
},
{
variable => 'true',
code => 'report_url',
datatype => 'string',
required => 'true',
datatype_description => 'Type of bin',
order => 1,
description => 'Type of bin'
},
];
$contact->discard_changes;
is_deeply $contact->extra, $extra, 'all meta data saved for non bromley';
};
sub get_standard_xml {
return qq{<?xml version="1.0" encoding="utf-8"?>
<services>
<service>
<service_code>001</service_code>
<service_name>Cans left out 24x7</service_name>
<description>Garbage or recycling cans that have been left out for more than 24 hours after collection. Violators will be cited.</description>
<metadata>false</metadata>
<type>realtime</type>
<keywords>lorem, ipsum, dolor</keywords>
<group>sanitation</group>
</service>
<service>
<service_code>002</service_code>
<metadata>false</metadata>
<type>realtime</type>
<keywords>lorem, ipsum, dolor</keywords>
<group>street</group>
<service_name>Construction plate shifted</service_name>
<description>Metal construction plate covering the street or sidewalk has been moved.</description>
</service>
<service>
<service_code>003</service_code>
<metadata>false</metadata>
<type>realtime</type>
<keywords>lorem, ipsum, dolor</keywords>
<group>street</group>
<service_name>Curb or curb ramp defect</service_name>
<description>Sidewalk curb or ramp has problems such as cracking, missing pieces, holes, and/or chipped curb.</description>
</service>
</services>
};
}
sub get_xml_simple_object {
my $xml = shift;
my $simple = XML::Simple->new();
my $obj;
eval {
$obj = $simple->XMLin( $xml );
};
die $@ if $@;
return $obj;
}
done_testing();
|