mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-06-30 22:17:13 +02:00
Backport MaxmindDB.
This commit is contained in:
32
vendor/MaxmindDB/t/metadata_pointers_t.c
vendored
Normal file
32
vendor/MaxmindDB/t/metadata_pointers_t.c
vendored
Normal file
@ -0,0 +1,32 @@
|
||||
#include "maxminddb_test_helper.h"
|
||||
|
||||
void run_tests(int mode, const char *mode_desc)
|
||||
{
|
||||
const char *filename = "MaxMind-DB-test-metadata-pointers.mmdb";
|
||||
const char *path = test_database_path(filename);
|
||||
MMDB_s *mmdb = open_ok(path, mode, mode_desc);
|
||||
free((void *)path);
|
||||
|
||||
char *repeated_string = "Lots of pointers in metadata";
|
||||
|
||||
is(mmdb->metadata.database_type, repeated_string,
|
||||
"decoded pointer database_type");
|
||||
|
||||
for (uint16_t i = 0; i < mmdb->metadata.description.count; i++) {
|
||||
const char *language =
|
||||
mmdb->metadata.description.descriptions[i]->language;
|
||||
const char *description =
|
||||
mmdb->metadata.description.descriptions[i]->description;
|
||||
is(description, repeated_string, "%s description", language);
|
||||
}
|
||||
|
||||
MMDB_close(mmdb);
|
||||
free(mmdb);
|
||||
}
|
||||
|
||||
int main(void)
|
||||
{
|
||||
plan(NO_PLAN);
|
||||
for_all_modes(&run_tests);
|
||||
done_testing();
|
||||
}
|
Reference in New Issue
Block a user