* [PATCH 1/2] perl: Fix lookup if given address is invalid or not in DB.
@ 2019-10-02 17:07 Stefan Schantl
2019-10-02 17:07 ` [PATCH 2/2] perl: Testsuite: Add tests for invalid address and address not in the database Stefan Schantl
0 siblings, 1 reply; 2+ messages in thread
From: Stefan Schantl @ 2019-10-02 17:07 UTC (permalink / raw)
To: location
[-- Attachment #1: Type: text/plain, Size: 1195 bytes --]
In this case now undef will be returned.
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
src/perl/Location.xs | 20 ++++++++------------
1 file changed, 8 insertions(+), 12 deletions(-)
diff --git a/src/perl/Location.xs b/src/perl/Location.xs
index ab27f0b..cdbc7e7 100644
--- a/src/perl/Location.xs
+++ b/src/perl/Location.xs
@@ -92,27 +92,23 @@ get_license(db)
#
# Lookup functions
#
-char*
+SV*
lookup_country_code(db, address)
struct loc_database* db;
char* address;
CODE:
+ RETVAL = &PL_sv_undef;
+
// Lookup network
struct loc_network *network;
int err = loc_database_lookup_from_string(db, address, &network);
- if (err) {
- croak("Could not look up for %s\n", address);
- }
-
- // Extract the country code
- const char* country_code = loc_network_get_country_code(network);
- loc_network_unref(network);
+ if (!err) {
+ // Extract the country code
+ const char* country_code = loc_network_get_country_code(network);
+ RETVAL = newSVpv(country_code, strlen(country_code));
- if (country_code) {
- RETVAL = strdup(country_code);
- } else {
- RETVAL = NULL;
+ loc_network_unref(network);
}
OUTPUT:
RETVAL
--
2.20.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH 2/2] perl: Testsuite: Add tests for invalid address and address not in the database.
2019-10-02 17:07 [PATCH 1/2] perl: Fix lookup if given address is invalid or not in DB Stefan Schantl
@ 2019-10-02 17:07 ` Stefan Schantl
0 siblings, 0 replies; 2+ messages in thread
From: Stefan Schantl @ 2019-10-02 17:07 UTC (permalink / raw)
To: location
[-- Attachment #1: Type: text/plain, Size: 875 bytes --]
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
src/perl/t/Location.t | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/src/perl/t/Location.t b/src/perl/t/Location.t
index b583af4..55a18f3 100644
--- a/src/perl/t/Location.t
+++ b/src/perl/t/Location.t
@@ -36,3 +36,9 @@ ok($description eq "This is a geo location database", "Test 3 - Get Database Des
my $country_code = &Location::lookup_country_code($db, $address);
ok($country_code eq "DE", "Test 4 - Lookup country code for $address");
+
+$country_code = &Location::lookup_country_code($db, "1.1.1.1");
+if(defined($country_code)) { fail("Test 5 - Lookup country code for address not in Database."); }
+
+$country_code = &Location::lookup_country_code($db, "a.b.c.d");
+if(defined($country_code)) { fail("Test 6 - Lookup country code for invalid address.") }
--
2.20.1
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-10-02 17:07 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-02 17:07 [PATCH 1/2] perl: Fix lookup if given address is invalid or not in DB Stefan Schantl
2019-10-02 17:07 ` [PATCH 2/2] perl: Testsuite: Add tests for invalid address and address not in the database Stefan Schantl
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox