mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
90 lines
2.3 KiB
C
90 lines
2.3 KiB
C
/*
|
|
* Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
|
|
* Copyright (C) 2004-2010 Red Hat, Inc. All rights reserved.
|
|
*
|
|
* This file is part of LVM2.
|
|
*
|
|
* This copyrighted material is made available to anyone wishing to use,
|
|
* modify, copy, or redistribute it subject to the terms and conditions
|
|
* of the GNU General Public License v.2.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include "units.h"
|
|
#include "libdevmapper.h"
|
|
|
|
#include "matcher_data.h"
|
|
|
|
static void *_mem_init(void)
|
|
{
|
|
struct dm_pool *mem = dm_pool_create("bitset test", 1024);
|
|
if (!mem) {
|
|
fprintf(stderr, "out of memory");
|
|
exit(1);
|
|
}
|
|
|
|
return mem;
|
|
}
|
|
|
|
static void _mem_exit(void *mem)
|
|
{
|
|
dm_pool_destroy(mem);
|
|
}
|
|
|
|
static struct dm_regex *make_scanner(struct dm_pool *mem, const char **rx)
|
|
{
|
|
struct dm_regex *scanner;
|
|
int nrx = 0;
|
|
for (; rx[nrx]; ++nrx);
|
|
|
|
scanner = dm_regex_create(mem, rx, nrx);
|
|
T_ASSERT(scanner != NULL);
|
|
return scanner;
|
|
}
|
|
|
|
static void test_fingerprints(void *fixture)
|
|
{
|
|
struct dm_pool *mem = fixture;
|
|
struct dm_regex *scanner;
|
|
|
|
scanner = make_scanner(mem, dev_patterns);
|
|
T_ASSERT_EQUAL(dm_regex_fingerprint(scanner), 0x7f556c09);
|
|
|
|
scanner = make_scanner(mem, random_patterns);
|
|
T_ASSERT_EQUAL(dm_regex_fingerprint(scanner), 0x9f11076c);
|
|
}
|
|
|
|
static void test_matching(void *fixture)
|
|
{
|
|
struct dm_pool *mem = fixture;
|
|
struct dm_regex *scanner;
|
|
int i;
|
|
|
|
scanner = make_scanner(mem, dev_patterns);
|
|
for (i = 0; devices[i].str; ++i)
|
|
T_ASSERT_EQUAL(dm_regex_match(scanner, devices[i].str), devices[i].expected - 1);
|
|
|
|
scanner = make_scanner(mem, nonprint_patterns);
|
|
for (i = 0; nonprint[i].str; ++i)
|
|
T_ASSERT_EQUAL(dm_regex_match(scanner, nonprint[i].str), nonprint[i].expected - 1);
|
|
}
|
|
|
|
#define T(path, desc, fn) register_test(ts, "/base/regex/" path, desc, fn)
|
|
|
|
void regex_tests(struct dm_list *all_tests)
|
|
{
|
|
struct test_suite *ts = test_suite_create(_mem_init, _mem_exit);
|
|
if (!ts) {
|
|
fprintf(stderr, "out of memory\n");
|
|
exit(1);
|
|
}
|
|
|
|
T("fingerprints", "not sure", test_fingerprints);
|
|
T("matching", "test the matcher with a variety of regexes", test_matching);
|
|
|
|
dm_list_add(all_tests, &ts->list);
|
|
}
|