libamxo  4.3.4
Object Definition Language (ODL) parsing
test_define_behavior.c
Go to the documentation of this file.
1 /****************************************************************************
2 **
3 ** SPDX-License-Identifier: BSD-2-Clause-Patent
4 **
5 ** SPDX-FileCopyrightText: Copyright (c) 2023 SoftAtHome
6 **
7 ** Redistribution and use in source and binary forms, with or without modification,
8 ** are permitted provided that the following conditions are met:
9 **
10 ** 1. Redistributions of source code must retain the above copyright notice,
11 ** this list of conditions and the following disclaimer.
12 **
13 ** 2. Redistributions in binary form must reproduce the above copyright notice,
14 ** this list of conditions and the following disclaimer in the documentation
15 ** and/or other materials provided with the distribution.
16 **
17 ** Subject to the terms and conditions of this license, each copyright holder
18 ** and contributor hereby grants to those receiving rights under this license
19 ** a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable
20 ** (except for failure to satisfy the conditions of this license) patent license
21 ** to make, have made, use, offer to sell, sell, import, and otherwise transfer
22 ** this software, where such license applies only to those patent claims, already
23 ** acquired or hereafter acquired, licensable by such copyright holder or contributor
24 ** that are necessarily infringed by:
25 **
26 ** (a) their Contribution(s) (the licensed copyrights of copyright holders and
27 ** non-copyrightable additions of contributors, in source or binary form) alone;
28 ** or
29 **
30 ** (b) combination of their Contribution(s) with the work of authorship to which
31 ** such Contribution(s) was added by such copyright holder or contributor, if,
32 ** at the time the Contribution is added, such addition causes such combination
33 ** to be necessarily infringed. The patent license shall not apply to any other
34 ** combinations which include the Contribution.
35 **
36 ** Except as expressly stated above, no rights or licenses from any copyright
37 ** holder or contributor is granted under this license, whether expressly, by
38 ** implication, estoppel or otherwise.
39 **
40 ** DISCLAIMER
41 **
42 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
43 ** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
44 ** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
45 ** ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
46 ** LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
47 ** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
48 ** SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
49 ** CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
50 ** OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
51 ** USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
52 **
53 ****************************************************************************/
54 #include <sys/time.h>
55 #include <sys/resource.h>
56 #include <sys/types.h>
57 #include <sys/stat.h>
58 
59 #include <string.h>
60 #include <stdlib.h>
61 #include <stdio.h>
62 #include <stdarg.h>
63 #include <stddef.h>
64 #include <setjmp.h>
65 #include <inttypes.h>
66 #include <limits.h>
67 #include <unistd.h>
68 #include <fcntl.h>
69 #include <cmocka.h>
70 
71 #include <amxc/amxc.h>
72 #include <amxp/amxp_signal.h>
73 #include <amxd/amxd_dm.h>
74 #include <amxd/amxd_object.h>
75 #include <amxd/amxd_parameter.h>
76 #include <amxo/amxo.h>
77 
78 #include "test_define_behavior.h"
79 
80 #include <amxc/amxc_macros.h>
82  amxd_dm_t dm;
83  amxo_parser_t parser;
84  const char* main_odl = "%define { object MyObject; }";
85  const char* second_odl = "%define { object MyObject; }";
86  const char* odls[] = {
87  "%define { object MyObject; object MyObject; }",
88  "%define { object MyObject; } %define { object MyObject; }",
89  NULL
90  };
91 
92  amxd_dm_init(&dm);
93  amxo_parser_init(&parser);
94 
95  for(int i = 0; odls[i] != NULL; i++) {
96  assert_int_not_equal(amxo_parser_parse_string(&parser, odls[i], amxd_dm_get_root(&dm)), 0);
97  assert_int_equal(amxo_parser_get_status(&parser), amxd_status_duplicate);
98  amxd_dm_clean(&dm);
99  }
100 
101  assert_int_equal(amxo_parser_parse_string(&parser, main_odl, amxd_dm_get_root(&dm)), 0);
102  assert_int_equal(amxo_parser_get_status(&parser), amxd_status_ok);
103  assert_int_not_equal(amxo_parser_parse_string(&parser, second_odl, amxd_dm_get_root(&dm)), 0);
104  assert_int_equal(amxo_parser_get_status(&parser), amxd_status_duplicate);
105 
106  amxd_dm_clean(&dm);
107  amxo_parser_clean(&parser);
108 }
109 
111  amxd_dm_t dm;
112  amxo_parser_t parser;
113  const char* main_odl = "%define { object MyObject; }";
114  const char* second_odl = "%config { define-behavior = { existing-object = \"update\" }; } %define { object MyObject; }";
115 
116  amxd_dm_init(&dm);
117  amxo_parser_init(&parser);
118 
119  assert_int_equal(amxo_parser_parse_string(&parser, main_odl, amxd_dm_get_root(&dm)), 0);
120  assert_int_equal(amxo_parser_get_status(&parser), amxd_status_ok);
121  assert_int_equal(amxo_parser_parse_string(&parser, second_odl, amxd_dm_get_root(&dm)), 0);
122  assert_int_equal(amxo_parser_get_status(&parser), amxd_status_ok);
123 
124  amxd_dm_clean(&dm);
125  amxo_parser_clean(&parser);
126 }
127 
129  amxd_dm_t dm;
130  amxd_object_t* object = NULL;
131  amxd_param_t* param = NULL;
132  amxo_parser_t parser;
133  const char* main_odl = "%define { object MyObject { string Text; } }";
134  const char* second_odl =
135  "%config { define-behavior = { existing-object = \"update\" }; }"
136  "%define {"
137  " object MyObject {"
138  " string TestParam;"
139  " }"
140  "}";
141 
142  amxd_dm_init(&dm);
143  amxo_parser_init(&parser);
144 
145  assert_int_equal(amxo_parser_parse_string(&parser, main_odl, amxd_dm_get_root(&dm)), 0);
146  assert_int_equal(amxo_parser_get_status(&parser), amxd_status_ok);
147  assert_int_equal(amxo_parser_parse_string(&parser, second_odl, amxd_dm_get_root(&dm)), 0);
148  assert_int_equal(amxo_parser_get_status(&parser), amxd_status_ok);
149 
150  object = amxd_dm_findf(&dm, "MyObject");
151  assert_ptr_not_equal(object, NULL);
152  param = amxd_object_get_param_def(object, "TestParam");
153  assert_ptr_not_equal(param, NULL);
154  param = amxd_object_get_param_def(object, "Text");
155  assert_ptr_not_equal(param, NULL);
156 
157  amxd_dm_clean(&dm);
158  amxo_parser_clean(&parser);
159 }
160 
162  amxd_dm_t dm;
163  amxo_parser_t parser;
164  const char* odl =
165  "%define { object MyObject { string TestParam; uint32 TestParam; } }";
166 
167  amxd_dm_init(&dm);
168  amxo_parser_init(&parser);
169 
170  assert_int_not_equal(amxo_parser_parse_string(&parser, odl, amxd_dm_get_root(&dm)), 0);
171  assert_int_equal(amxo_parser_get_status(&parser), amxd_status_duplicate);
172 
173  amxd_dm_clean(&dm);
174  amxo_parser_clean(&parser);
175 }
176 
178  amxd_dm_t dm;
179  amxo_parser_t parser;
180  amxd_object_t* object = NULL;
181  amxd_param_t* param = NULL;
182  const char* odl =
183  "%config { define-behavior = { existing-parameter = \"update\" }; }"
184  "%define { object MyObject { string TestParam; uint32 TestParam; } }";
185 
186  amxd_dm_init(&dm);
187  amxo_parser_init(&parser);
188 
189  assert_int_equal(amxo_parser_parse_string(&parser, odl, amxd_dm_get_root(&dm)), 0);
190  assert_int_equal(amxo_parser_get_status(&parser), amxd_status_ok);
191 
192  object = amxd_dm_findf(&dm, "MyObject");
193  param = amxd_object_get_param_def(object, "TestParam");
194  assert_ptr_not_equal(param, NULL);
195  assert_int_equal(amxd_param_get_type(param), AMXC_VAR_ID_UINT32);
196 
197  amxd_dm_clean(&dm);
198  amxo_parser_clean(&parser);
199 }
200 
202  amxd_dm_t dm;
203  amxo_parser_t parser;
204  const char* odl =
205  "%config { define-behavior = { existing-parameter = \"update\" }; }"
206  "%define { object MyObject { string TestParam; htable TestParam; } }";
207 
208  amxd_dm_init(&dm);
209  amxo_parser_init(&parser);
210 
211  assert_int_not_equal(amxo_parser_parse_string(&parser, odl, amxd_dm_get_root(&dm)), 0);
212  assert_int_equal(amxo_parser_get_status(&parser), amxd_status_invalid_type);
213 
214  amxd_dm_clean(&dm);
215  amxo_parser_clean(&parser);
216 }
Ambiorix ODL parser header file.
include test_include odl
Definition: test_valid.odl:66
int amxo_parser_parse_string(amxo_parser_t *parser, const char *text, amxd_object_t *object)
Parses a string containing a valid ODL part.
void amxo_parser_clean(amxo_parser_t *parser)
Cleans up the odl parser instance.
static amxd_status_t amxo_parser_get_status(amxo_parser_t *parser)
Get the status of the odl parser.
Definition: amxo.h:414
int amxo_parser_init(amxo_parser_t *parser)
Initializes a new odl parser instance.
The ODL parser structure.
Definition: amxo_types.h:245
void test_duplicate_objects_default_behavior(UNUSED void **state)
void test_duplicate_parameters_change_to_invalid_type_fails(UNUSED void **state)
void test_duplicate_objects_can_add_parameter(UNUSED void **state)
void test_duplicate_parameters_can_update(UNUSED void **state)
void test_duplicate_parameters_default_behavior(UNUSED void **state)
void test_duplicate_objects_can_update(UNUSED void **state)
#define UNUSED
Definition: test_issue_48.c:84