Implemented relaxed iso constraints & Cunit based unit-tests
This commit is contained in:
@ -9,50 +9,25 @@
|
||||
#include <assert.h>
|
||||
#include <stdio.h>
|
||||
|
||||
void test_exclude()
|
||||
static void test_exclude()
|
||||
{
|
||||
struct iso_hash_table table = { {0,}, 0};
|
||||
|
||||
printf("Testing exclude hashtable...");
|
||||
assert( !iso_exclude_lookup(&table, "/dir") );
|
||||
assert( !iso_exclude_lookup(&table, "/otherdir") );
|
||||
CU_ASSERT_FALSE( iso_exclude_lookup(&table, "/dir") );
|
||||
CU_ASSERT_FALSE( iso_exclude_lookup(&table, "/otherdir") );
|
||||
iso_exclude_add_path(&table, "/otherdir");
|
||||
assert( iso_exclude_lookup(&table, "/otherdir") );
|
||||
assert( !iso_exclude_lookup(&table, "/dir") );
|
||||
CU_ASSERT_TRUE( iso_exclude_lookup(&table, "/otherdir") );
|
||||
CU_ASSERT_FALSE( iso_exclude_lookup(&table, "/dir") );
|
||||
iso_exclude_add_path(&table, "/dir");
|
||||
assert( iso_exclude_lookup(&table, "/otherdir") );
|
||||
assert( iso_exclude_lookup(&table, "/dir") );
|
||||
CU_ASSERT_TRUE( iso_exclude_lookup(&table, "/otherdir") );
|
||||
CU_ASSERT_TRUE( iso_exclude_lookup(&table, "/dir") );
|
||||
iso_exclude_empty(&table);
|
||||
assert( !iso_exclude_lookup(&table, "/dir") );
|
||||
assert( !iso_exclude_lookup(&table, "/otherdir") );
|
||||
printf("\tOK\n");
|
||||
CU_ASSERT_FALSE( iso_exclude_lookup(&table, "/dir") );
|
||||
CU_ASSERT_FALSE( iso_exclude_lookup(&table, "/otherdir") );
|
||||
}
|
||||
/*
|
||||
* Unit test for exclude.h
|
||||
*/
|
||||
|
||||
|
||||
#include "exclude.h"
|
||||
#include "test.h"
|
||||
|
||||
#include <assert.h>
|
||||
#include <stdio.h>
|
||||
|
||||
void test_exclude()
|
||||
void add_exclude_suite()
|
||||
{
|
||||
struct iso_hash_table table = { {0,}, 0};
|
||||
CU_pSuite pSuite = CU_add_suite("ExcludeSuite", NULL, NULL);
|
||||
|
||||
printf("Testing exclude hashtable...");
|
||||
assert( !iso_exclude_lookup(&table, "/dir") );
|
||||
assert( !iso_exclude_lookup(&table, "/otherdir") );
|
||||
iso_exclude_add_path(&table, "/otherdir");
|
||||
assert( iso_exclude_lookup(&table, "/otherdir") );
|
||||
assert( !iso_exclude_lookup(&table, "/dir") );
|
||||
iso_exclude_add_path(&table, "/dir");
|
||||
assert( iso_exclude_lookup(&table, "/otherdir") );
|
||||
assert( iso_exclude_lookup(&table, "/dir") );
|
||||
iso_exclude_empty(&table);
|
||||
assert( !iso_exclude_lookup(&table, "/dir") );
|
||||
assert( !iso_exclude_lookup(&table, "/otherdir") );
|
||||
printf("\tOK\n");
|
||||
CU_add_test(pSuite, "test of exclude", test_exclude);
|
||||
}
|
||||
|
Reference in New Issue
Block a user