2024-09-24 14:54:57 +02:00

114 lines
4.1 KiB
C

/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 2; tab-width: 2 -*- */
/* test-geoip.c
*
* Copyright (C) 2006 MaxMind LLC
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <GeoIP.h>
int main () {
FILE *f;
char ipAddress[30];
char expectedCountry[3];
char expectedCountry3[4];
const char * returnedCountry;
GeoIP * gi;
int failed = 0;
int test_num = 1;
int i;
for (i = 0; i < 2; ++i) {
if (0 == i) {
/* Read from filesystem, check for updated file */
gi = GeoIP_open(SRCDIR"/data/GeoIP.dat", GEOIP_STANDARD | GEOIP_CHECK_CACHE);
} else {
/* Read from memory, faster but takes up more memory */
gi = GeoIP_open(SRCDIR"/data/GeoIP.dat", GEOIP_MEMORY_CACHE);
}
if (gi == NULL) {
fprintf(stderr, "Error opening database\n");
exit(1);
}
/* make sure GeoIP deals with invalid query gracefully */
returnedCountry = GeoIP_country_code_by_addr(gi,NULL);
if (returnedCountry != NULL) {
fprintf(stderr,"Invalid Query test failed, got non NULL, expected NULL\n");
failed = 1;
}
returnedCountry = GeoIP_country_code_by_name(gi,NULL);
if (returnedCountry != NULL) {
fprintf(stderr,"Invalid Query test failed, got non NULL, expected NULL\n");
failed = 1;
}
f = fopen(SRCDIR"/test/country_test.txt","r");
while (fscanf(f, "%s%s%s", ipAddress, expectedCountry, expectedCountry3) != EOF) {
returnedCountry = GeoIP_country_code_by_addr(gi,ipAddress);
if (returnedCountry == NULL || strcmp(returnedCountry, expectedCountry) != 0) {
fprintf(stderr,"Test addr %d for %s failed, got %s, expected %s\n",test_num,ipAddress,returnedCountry,expectedCountry);
failed = 1;
}
returnedCountry = GeoIP_country_code_by_name(gi,ipAddress);
if (returnedCountry == NULL || strcmp(returnedCountry, expectedCountry) != 0) {
fprintf(stderr,"Test name %d for %s failed, got %s, expected %s\n",test_num,ipAddress,returnedCountry,expectedCountry);
failed = 1;
}
returnedCountry = GeoIP_country_code3_by_addr(gi,ipAddress);
if (returnedCountry == NULL || strcmp(returnedCountry, expectedCountry3) != 0) {
fprintf(stderr,"Test addr %d for %s failed, got %s, expected %s\n",test_num,ipAddress,returnedCountry,expectedCountry);
failed = 1;
}
returnedCountry = GeoIP_country_code3_by_name(gi,ipAddress);
if (returnedCountry == NULL || strcmp(returnedCountry, expectedCountry3) != 0) {
fprintf(stderr,"Test name %d for %s failed, got %s, expected %s\n",test_num,ipAddress,returnedCountry,expectedCountry);
failed = 1;
}
test_num++;
}
fclose(f);
f = fopen(SRCDIR"/test/country_test2.txt","r");
while (fscanf(f, "%s%s", ipAddress, expectedCountry ) != EOF) {
returnedCountry = GeoIP_country_code_by_addr(gi,ipAddress);
if (returnedCountry == NULL || strcmp(returnedCountry, expectedCountry) != 0) {
fprintf(stderr,"Test addr %d %s failed, got %s, expected %s\n",test_num,ipAddress,returnedCountry,expectedCountry);
failed = 1;
}
test_num++;
}
fclose(f);
f = fopen(SRCDIR"/test/country_test_name.txt","r");
while (fscanf(f, "%s%s", ipAddress, expectedCountry) != EOF) {
returnedCountry = GeoIP_country_code_by_name(gi,ipAddress);
if (returnedCountry == NULL || strcmp(returnedCountry, expectedCountry) != 0) {
fprintf(stderr,"Test addr %d %s failed, got %s, expected %s\n",test_num,ipAddress,returnedCountry,expectedCountry);
failed = 1;
}
test_num++;
}
fclose(f);
GeoIP_delete(gi);
}
return failed;
}