libpsl/tests/test-is-public-inline.c

125 lines
3.0 KiB
C
Raw Normal View History

2014-03-22 20:35:56 +01:00
/*
* Copyright(c) 2014 Tim Ruehsen
*
* This file is part of MGet.
*
* Mget is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Mget 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Mget. If not, see <http://www.gnu.org/licenses/>.
*
*
* Public Suffix List routines (right now experimental)
*
* Changelog
* 19.03.2014 Tim Ruehsen created from libmget/cookie.c
*
*/
#if HAVE_CONFIG_H
# include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
2014-03-24 17:29:56 +01:00
#include <libpsl.h>
2014-03-22 20:35:56 +01:00
#define countof(a) (sizeof(a)/sizeof(*(a)))
static int
ok,
failed;
static void test_psl(void)
{
2014-03-22 21:36:02 +01:00
// punycode generation: idn 商标
// octal code generation: echo -n "商标" | od -b
2014-03-22 20:35:56 +01:00
static const struct test_data {
const char
*domain;
int
result;
} test_data[] = {
2014-03-22 22:19:20 +01:00
{ "www.example.com", 1 },
{ "com.ar", 0 },
{ "www.com.ar", 1 },
{ "cc.ar.us", 0 },
{ ".cc.ar.us", 0 },
{ "www.cc.ar.us", 1 },
{ "www.ck", 1 }, // exception from *.ck
{ "abc.www.ck", 1 },
{ "xxx.ck", 0 },
{ "www.xxx.ck", 1 },
{ "\345\225\206\346\240\207", 0 }, // xn--czr694b oder 商标
{ "www.\345\225\206\346\240\207", 1 },
{ "xn--czr694b", 0 },
{ "www.xn--czr694b", 1 },
2014-03-22 20:35:56 +01:00
};
unsigned it;
2014-03-24 17:29:56 +01:00
psl_ctx_t *psl;
2014-03-22 20:35:56 +01:00
2014-03-24 17:29:56 +01:00
if (psl_global_init() == 0) {
psl = psl_builtin();
2014-03-22 20:35:56 +01:00
2014-03-24 17:29:56 +01:00
printf("have %d suffixes and %d exceptions\n", psl_suffix_count(psl), psl_suffix_exception_count(psl));
2014-03-22 20:35:56 +01:00
2014-03-24 17:29:56 +01:00
for (it = 0; it < countof(test_data); it++) {
const struct test_data *t = &test_data[it];
int result = psl_is_public(psl, t->domain);
2014-03-22 20:35:56 +01:00
2014-03-24 17:29:56 +01:00
if (result == t->result) {
ok++;
} else {
failed++;
printf("psl_is_public(%s)=%d (expected %d)\n", t->domain, result, t->result);
}
2014-03-22 20:35:56 +01:00
}
2014-03-24 17:29:56 +01:00
printf("psl_builtin_compile_time()=%ld\n", psl_builtin_compile_time());
psl_builtin_compile_time() == 0 ? failed++ : ok++;
2014-03-23 21:49:19 +01:00
2014-03-24 17:29:56 +01:00
printf("psl_builtin_file_time()=%ld\n", psl_builtin_file_time());
psl_builtin_file_time() == 0 ? failed++ : ok++;
2014-03-23 21:49:19 +01:00
2014-03-24 17:29:56 +01:00
printf("psl_builtin_sha1sum()=%s\n", psl_builtin_sha1sum());
*psl_builtin_sha1sum() == 0 ? failed++ : ok++;
2014-03-23 21:49:19 +01:00
2014-03-24 17:29:56 +01:00
psl_global_deinit();
}
2014-03-22 20:35:56 +01:00
}
int main(int argc, const char * const *argv)
{
// if VALGRIND testing is enabled, we have to call ourselves with valgrind checking
if (argc == 1) {
const char *valgrind = getenv("TESTS_VALGRIND");
if (valgrind && *valgrind) {
char cmd[strlen(valgrind)+strlen(argv[0])+32];
snprintf(cmd, sizeof(cmd), "TESTS_VALGRIND="" %s %s", valgrind, argv[0]);
return system(cmd) != 0;
}
}
test_psl();
if (failed) {
printf("Summary: %d out of %d tests failed\n", failed, ok + failed);
return 1;
}
printf("Summary: All %d tests passed\n", ok + failed);
return 0;
}