Bug 14888: Add tests for Koha::Cit[y|ies]
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Fri, 2 Oct 2015 07:48:05 +0000 (08:48 +0100)
committerTomas Cohen Arazi <tomascohen@theke.io>
Mon, 5 Oct 2015 15:00:38 +0000 (12:00 -0300)
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
t/db_dependent/Koha/Cities.t [new file with mode: 0644]

diff --git a/t/db_dependent/Koha/Cities.t b/t/db_dependent/Koha/Cities.t
new file mode 100644 (file)
index 0000000..1f90bd4
--- /dev/null
@@ -0,0 +1,48 @@
+#!/usr/bin/perl
+
+# Copyright 2015 Koha Development team
+#
+# This file is part of Koha
+#
+# Koha is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# Koha is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with Koha; if not, see <http://www.gnu.org/licenses>.
+
+use Modern::Perl;
+use Test::More tests => 4;
+use Koha::City;
+use Koha::Cities;
+use t::lib::TestBuilder;
+
+my $builder = t::lib::TestBuilder->new;
+my $nb_of_cities = Koha::Cities->search->count;
+my $new_city_1 = Koha::City->new({
+    city_name => 'my_city_name_for_test_1',
+    city_state => 'my_city_state_for_test_1',
+    city_zipcode => 'my_city_zipcode_for_test_1',
+    city_country => 'my_city_country_for_test_1',
+})->store;
+my $new_city_2 = Koha::City->new({
+    city_name => 'my_city_name_for_test_2',
+    city_state => 'my_city_state_for_test_2',
+    city_zipcode => 'my_city_zipcode_for_test_2',
+    city_country => 'my_city_country_for_test_2',
+})->store;
+
+like( $new_city_1->cityid, qr|^\d+$|, 'Adding a new city should have set the cityid');
+is( Koha::Cities->search->count, $nb_of_cities + 2, 'The 2 cities should have been added' );
+
+my $retrieved_city_1 = Koha::Cities->find( $new_city_1->cityid );
+is( $retrieved_city_1->city_name, $new_city_1->city_name, 'Find a city by id should return the correct city' );
+
+$retrieved_city_1->delete;
+is( Koha::Cities->search->count, $nb_of_cities + 1, 'Delete should have deleted the city' );