aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perllib/Open311/PopulateServiceList.pm4
-rw-r--r--t/open311/populate-service-list.t72
2 files changed, 74 insertions, 2 deletions
diff --git a/perllib/Open311/PopulateServiceList.pm b/perllib/Open311/PopulateServiceList.pm
index ce5e678c0..c232c4336 100644
--- a/perllib/Open311/PopulateServiceList.pm
+++ b/perllib/Open311/PopulateServiceList.pm
@@ -61,10 +61,12 @@ sub process_services {
my $self = shift;
my $list = shift;
+ $self->found_contacts( [] );
foreach my $service ( @{ $list->{service} } ) {
$self->_current_service( $service );
$self->process_service;
}
+ $self->_delete_contacts_not_in_service_list;
}
sub process_service {
@@ -100,7 +102,7 @@ sub _handle_existing_contact {
print $self->_current_council->area_id . " already has a contact for service code " . $self->_current_service->{service_code} . "\n";
push @{ $self->found_contacts }, $self->_current_service->{service_code};
- if ( $contact->deleted || $service_name ne $contact->category ) {
+ if ( $contact->deleted || $service_name ne $contact->category || $self->_current_service->{service_code} ne $contact->email ) {
$contact->update(
{
category => $service_name,
diff --git a/t/open311/populate-service-list.t b/t/open311/populate-service-list.t
index 734af2a38..9cfa74c33 100644
--- a/t/open311/populate-service-list.t
+++ b/t/open311/populate-service-list.t
@@ -71,6 +71,76 @@ subtest 'check basic functionality' => sub {
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 $xml = 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>
+};
+
+ my $simple = XML::Simple->new();
+ my $obj;
+
+ eval {
+ $obj = $simple->XMLin( $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( $obj );
+
+ 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 duplicate service name issues error' => sub {
FixMyStreet::App->model('DB::Contact')->search( { area_id => 1 } )->delete();
@@ -137,7 +207,7 @@ subtest 'check duplicate service name issues error' => sub {
$processor->process_services( $obj );
$contact->discard_changes;
- is $contact->email, '009', 'email unchanged';
+ is $contact->email, '001', 'email unchanged';
is $contact->confirmed, 1, 'contact still confirmed';
is $contact->deleted, 0, 'contact still not deleted';