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

160 lines
4.6 KiB
C
Raw Normal View History

2014-03-22 20:35:56 +01:00
/*
2022-12-26 13:46:23 +01:00
* Copyright(c) 2014-2022 Tim Ruehsen
2014-03-22 20:35:56 +01:00
*
2014-03-24 20:41:46 +01:00
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
* This file is part of the test suite of libpsl.
*
* Test case for psl built-in functions
2014-03-22 20:35:56 +01:00
*
* 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-10-28 15:41:35 +01:00
#ifdef HAVE_ALLOCA_H
# include <alloca.h>
#endif
2014-03-22 20:35:56 +01:00
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-06-18 15:36:26 +02: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;
2018-02-21 16:58:52 +01:00
int
no_star_result;
2014-03-22 20:35:56 +01:00
} test_data[] = {
2018-02-21 16:58:52 +01:00
{ "www.example.com", 0, 0 },
{ "com.ar", 1, 1 },
{ "www.com.ar", 0, 0 },
{ "cc.ar.us", 1, 1 },
{ ".cc.ar.us", 1, 1 },
{ "www.cc.ar.us", 0, 0 },
{ "www.ck", 0, 0 }, /* exception from *.ck */
{ "abc.www.ck", 0, 0 },
{ "xxx.ck", 1, 1 },
{ "www.xxx.ck", 0, 0 },
2018-12-28 19:44:39 +01:00
{ "\345\225\206\346\240\207", 1, 1 }, /* xn--czr694b or ?? */
2018-02-21 16:58:52 +01:00
{ "www.\345\225\206\346\240\207", 0, 0 },
{ "xn--czr694b", 1, 1 },
{ "www.xn--czr694b", 0, 0 },
2014-05-12 12:20:59 +02:00
/* some special test follow ('name' and 'forgot.his.name' are public, but e.g. his.name is not) */
2018-02-21 16:58:52 +01:00
{ "name", 1, 1 },
{ ".name", 1, 1 },
{ "his.name", 0, 0 },
{ ".his.name", 0, 0 },
{ "forgot.his.name", 1, 1 },
{ ".forgot.his.name", 1, 1 },
{ "whoever.his.name", 0, 0 },
{ "whoever.forgot.his.name", 0, 0 },
{ "whatever.platformsh.site", 1, 1 },
{ ".platformsh.site", 1, 1 },
2018-02-21 16:58:52 +01:00
{ "whatever.yokohama.jp", 1, 1 },
{ ".yokohama.jp", 1, 1 },
{ ".", 1, 0 }, /* special case */
{ "", 1, 0 }, /* special case */
{ NULL, 1, 1 }, /* special case */
{ "adfhoweirh", 1, 0 }, /* unknown TLD */
{ "compute.amazonaws.com", 1, 1 }, /* special rule *.compute.amazonaws.com */
{ "y.compute.amazonaws.com", 1, 1 },
{ "x.y.compute.amazonaws.com", 0, 0 },
2014-03-22 20:35:56 +01:00
};
unsigned it;
const psl_ctx_t *psl;
2014-03-22 20:35:56 +01:00
2014-03-26 09:11:54 +01:00
psl = psl_builtin();
2014-03-22 20:35:56 +01:00
2014-03-26 09:11:54 +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-26 09:11:54 +01:00
for (it = 0; it < countof(test_data); it++) {
const struct test_data *t = &test_data[it];
int result = psl_is_public_suffix(psl, t->domain);
2014-03-22 20:35:56 +01:00
2014-03-26 09:11:54 +01:00
if (result == t->result) {
ok++;
} else {
failed++;
printf("psl_is_public_suffix(%s)=%d (expected %d)\n", t->domain, result, t->result);
2014-03-22 20:35:56 +01:00
}
2014-03-26 09:11:54 +01:00
}
2014-03-22 20:35:56 +01:00
2018-02-21 16:58:52 +01:00
for (it = 0; it < countof(test_data); it++) {
const struct test_data *t = &test_data[it];
int result = psl_is_public_suffix2(psl, t->domain, PSL_TYPE_ANY|PSL_TYPE_NO_STAR_RULE);
if (result == t->no_star_result) {
ok++;
} else {
failed++;
printf("psl_is_public_suffix2(%s, NO_STAR_RULE)=%d (expected %d)\n", t->domain, result, t->no_star_result);
}
}
printf("psl_builtin_file_time()=%ld\n", (long) psl_builtin_file_time());
2014-03-26 09:11:54 +01:00
psl_builtin_file_time() == 0 ? failed++ : ok++;
2014-03-23 21:49:19 +01:00
2014-03-26 09:11:54 +01:00
printf("psl_builtin_sha1sum()=%s\n", psl_builtin_sha1sum());
*psl_builtin_sha1sum() == 0 ? failed++ : ok++;
2014-03-22 20:35:56 +01:00
}
int main(int argc, const char * const *argv)
{
2014-05-12 12:20:59 +02:00
/* if VALGRIND testing is enabled, we have to call ourselves with valgrind checking */
2014-03-22 20:35:56 +01:00
if (argc == 1) {
const char *valgrind = getenv("TESTS_VALGRIND");
if (valgrind && *valgrind) {
2014-05-12 12:20:59 +02:00
size_t cmdsize = strlen(valgrind) + strlen(argv[0]) + 32;
char *cmd = alloca(cmdsize);
2014-03-22 20:35:56 +01:00
2014-05-12 12:20:59 +02:00
snprintf(cmd, cmdsize, "TESTS_VALGRIND="" %s %s", valgrind, argv[0]);
2014-03-22 20:35:56 +01:00
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;
}