aboutsummaryrefslogtreecommitdiffstats
path: root/lib/t/01_mga_geoip.t
diff options
context:
space:
mode:
Diffstat (limited to 'lib/t/01_mga_geoip.t')
-rw-r--r--lib/t/01_mga_geoip.t29
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/t/01_mga_geoip.t b/lib/t/01_mga_geoip.t
new file mode 100644
index 000000000..aa3daa674
--- /dev/null
+++ b/lib/t/01_mga_geoip.t
@@ -0,0 +1,29 @@
+<?php
+
+require_once realpath(__DIR__ . '/../testmore.php');
+require_once realpath(__DIR__ . '/../mga_geoip.php');
+
+plan('no_plan');
+
+diag('Testing mga_geoip_* functions against defined IP/locations.');
+
+$ips = array(
+ '46.33.75.17'
+ => array('DE', 'EU'),
+
+ '2a01:e35:8a03:9990:223:dfff:fe7e:e7f0'
+ => array('FR', 'EU'),
+
+ '2a00:1450:8006::93'
+ => array('IE', 'EU'),
+
+ '173.194.67.99'
+ => array('US', 'NA')
+);
+
+foreach ($ips as $ip => $cc) {
+
+ $country = MGA_Geoip::mga_geoip_country_by_ip($ip, false);
+ is($country, $cc[0], 'country match for ' . $ip);
+ is(MGA_Geoip::mga_geoip_continent_by_country($country), $cc[1], 'continent match for ' . $ip);
+}