Use json_is_true() in place of json_boolean_value() for compatibility
[trust_router.git] / common / t_constraint.c
1 /*
2  * Copyright (c) 2012, JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31  * OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  */
34
35 #include <jansson.h>
36 #if JANSSON_VERSION_HEX < 0x020500
37 #include "jansson_iterators.h"
38 #endif
39 #include <stdio.h>
40 #include <assert.h>
41
42 #include <trust_router/tid.h>
43 #include <trust_router/tr_constraint.h>
44 #include <tid_internal.h>
45 #include <tr_debug.h>
46
47 static TID_REQ *request = NULL;
48
49 static int handle_test_case(
50                              json_t *tc)
51 {
52   json_t *constraints, *valid, *expected;
53   int validp;
54   json_t *result;
55   assert(constraints = json_object_get(tc, "constraints"));
56   assert( valid = json_object_get(tc, "valid"));
57   validp = tr_constraint_set_validate((TR_CONSTRAINT_SET *)constraints);
58   if (validp != json_is_true(valid)) {
59     tr_debug("Unexpected validation result for \n");
60     json_dumpf( constraints, stderr, JSON_INDENT(4));
61     return 0;
62   }
63   if (!validp)
64     return 1;
65   assert( expected = json_object_get(tc, "expected"));
66   result = (json_t *) tr_constraint_set_intersect(request, (TR_CONSTRAINT_SET *) constraints);
67   if (!json_equal(result, expected)) {
68     tr_debug("Unexpected intersection; actual:\n");
69     json_dumpf(result, stderr, JSON_INDENT(4));
70     tr_debug("Expected: \n");
71     json_dumpf(expected, stderr, JSON_INDENT(4));
72     return 0;
73   }
74   return 1;
75 }
76
77 int main(void) {
78   json_t *tests;
79   int error=0;
80   json_t *tc;
81   size_t index;
82   request = tid_req_new();
83   tests = json_load_file(TESTS, JSON_REJECT_DUPLICATES|JSON_DISABLE_EOF_CHECK, NULL);
84   json_array_foreach(tests, index, tc)
85     if (!handle_test_case(tc))
86       error = 1;
87   if (error)
88     return 1;
89   return 0;
90 }