Exemple #1
0
 def test06_ipv6_query(self):
     "GeoIP can lookup IPv6 addresses."
     g = GeoIP2()
     d = g.city(
         '2002:81ed:c9a5::81ed:c9a5')  # IPv6 address for www.nhm.ku.edu
     self.assertEqual('US', d['country_code'])
     self.assertEqual('Lawrence', d['city'])
     self.assertEqual('KS', d['region'])
Exemple #2
0
    def test01_init(self):
        "GeoIP initialization."
        g1 = GeoIP2()  # Everything inferred from GeoIP path
        path = settings.GEOIP_PATH
        g2 = GeoIP2(path, 0)  # Passing in data path explicitly.
        g3 = GeoIP2.open(path, 0)  # MaxMind Python API syntax.

        for g in (g1, g2, g3):
            self.assertTrue(g._country)
            self.assertTrue(g._city)

        # Only passing in the location of one database.
        city = os.path.join(path, 'GeoLite2-City.mmdb')
        cntry = os.path.join(path, 'GeoLite2-Country.mmdb')
        g4 = GeoIP2(city, country='')
        self.assertIsNone(g4._country)
        g5 = GeoIP2(cntry, city='')
        self.assertIsNone(g5._city)

        # Improper parameters.
        bad_params = (23, 'foo', 15.23)
        for bad in bad_params:
            with self.assertRaises(GeoIP2Exception):
                GeoIP2(cache=bad)
            if isinstance(bad, str):
                e = GeoIP2Exception
            else:
                e = TypeError
            with self.assertRaises(e):
                GeoIP2(bad, 0)
Exemple #3
0
 def test05_unicode_response(self, gethostbyname):
     "GeoIP strings should be properly encoded (#16553)."
     gethostbyname.return_value = '194.27.42.76'
     g = GeoIP2()
     d = g.city('nigde.edu.tr')
     self.assertEqual('Niğde', d['city'])
     d = g.country('200.26.205.1')
     # Some databases have only unaccented countries
     self.assertIn(d['country_name'], ('Curaçao', 'Curacao'))
Exemple #4
0
    def test02_bad_query(self):
        "GeoIP query parameter checking."
        cntry_g = GeoIP2(city='<foo>')
        # No city database available, these calls should fail.
        with self.assertRaises(GeoIP2Exception):
            cntry_g.city('tmc.edu')
        with self.assertRaises(GeoIP2Exception):
            cntry_g.coords('tmc.edu')

        # Non-string query should raise TypeError
        with self.assertRaises(TypeError):
            cntry_g.country_code(17)
        with self.assertRaises(TypeError):
            cntry_g.country_name(GeoIP2)
Exemple #5
0
 def test_repr(self):
     path = settings.GEOIP_PATH
     g = GeoIP2(path=path)
     meta = g._reader.metadata()
     version = '%s.%s' % (meta.binary_format_major_version,
                          meta.binary_format_minor_version)
     country_path = g._country_file
     city_path = g._city_file
     expected = '<GeoIP2 [v%(version)s] _country_file="%(country)s", _city_file="%(city)s">' % {
         'version': version,
         'country': country_path,
         'city': city_path,
     }
     self.assertEqual(repr(g), expected)
Exemple #6
0
    def test03_country(self, gethostbyname):
        "GeoIP country querying methods."
        gethostbyname.return_value = '128.249.1.1'
        g = GeoIP2(city='<foo>')

        for query in (self.fqdn, self.addr):
            self.assertEqual(
                'US', g.country_code(query),
                'Failed for func country_code and query %s' % query)
            self.assertEqual(
                'United States', g.country_name(query),
                'Failed for func country_name and query %s' % query)
            self.assertEqual(
                {
                    'country_code': 'US',
                    'country_name': 'United States'
                }, g.country(query))
Exemple #7
0
    def test04_city(self, gethostbyname):
        "GeoIP city querying methods."
        gethostbyname.return_value = '128.249.1.1'
        g = GeoIP2(country='<foo>')

        for query in (self.fqdn, self.addr):
            # Country queries should still work.
            self.assertEqual(
                'US', g.country_code(query),
                'Failed for func country_code and query %s' % query)
            self.assertEqual(
                'United States', g.country_name(query),
                'Failed for func country_name and query %s' % query)
            self.assertEqual(
                {
                    'country_code': 'US',
                    'country_name': 'United States'
                }, g.country(query))

            # City information dictionary.
            d = g.city(query)
            self.assertEqual('NA', d['continent_code'])
            self.assertEqual('North America', d['continent_name'])
            self.assertEqual('US', d['country_code'])
            self.assertEqual('Houston', d['city'])
            self.assertEqual('TX', d['region'])
            self.assertEqual('America/Chicago', d['time_zone'])

            geom = g.geos(query)
            self.assertIsInstance(geom, GEOSGeometry)
            lon, lat = (-95.4010, 29.7079)
            lat_lon = g.lat_lon(query)
            lat_lon = (lat_lon[1], lat_lon[0])
            for tup in (geom.tuple, g.coords(query), g.lon_lat(query),
                        lat_lon):
                self.assertAlmostEqual(lon, tup[0], 4)
                self.assertAlmostEqual(lat, tup[1], 4)
Exemple #8
0
 def test_no_database_file(self):
     invalid_path = os.path.join(os.path.dirname(__file__), 'data')
     msg = 'Could not load a database from %s.' % invalid_path
     with self.assertRaisesMessage(GeoIP2Exception, msg):
         GeoIP2(invalid_path)
Exemple #9
0
 def test_check_query(self, gethostbyname):
     g = GeoIP2()
     self.assertEqual(g._check_query('127.0.0.1'), '127.0.0.1')
     self.assertEqual(g._check_query('2002:81ed:c9a5::81ed:c9a5'),
                      '2002:81ed:c9a5::81ed:c9a5')
     self.assertEqual(g._check_query('invalid-ip-address'), 'expected')