libamxo  4.3.4
Object Definition Language (ODL) parsing
test_object_action.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_object_action.h"
79 
80 #include <amxc/amxc_macros.h>
81 static bool called = false;
82 
83 static amxd_status_t failing_action(UNUSED amxd_object_t* const object,
84  UNUSED amxd_param_t* const param,
85  UNUSED amxd_action_t reason,
86  UNUSED const amxc_var_t* const args,
87  UNUSED amxc_var_t* const retval,
88  UNUSED void* priv) {
89  called = true;
90  return amxd_status_invalid_value;
91 }
92 
93 static amxd_status_t success_action(UNUSED amxd_object_t* const object,
94  UNUSED amxd_param_t* const param,
95  UNUSED amxd_action_t reason,
96  UNUSED const amxc_var_t* const args,
97  UNUSED amxc_var_t* const retval,
98  UNUSED void* priv) {
99  called = true;
100  return amxd_status_ok;
101 }
102 
103 static amxd_status_t data_action(UNUSED amxd_object_t* const object,
104  UNUSED amxd_param_t* const param,
105  UNUSED amxd_action_t reason,
106  UNUSED const amxc_var_t* const args,
107  UNUSED amxc_var_t* const retval,
108  void* priv) {
109  amxc_var_t* data = (amxc_var_t*) priv;
110 
111  assert_int_equal(amxc_var_type_of(data), AMXC_VAR_ID_HTABLE);
112  assert_ptr_not_equal(amxc_var_get_path(data, "In", AMXC_VAR_FLAG_DEFAULT), NULL);
113  assert_ptr_not_equal(amxc_var_get_path(data, "Out", AMXC_VAR_FLAG_DEFAULT), NULL);
114  called = true;
115  return amxd_status_ok;
116 }
117 
119  amxd_dm_t dm;
120  amxo_parser_t parser;
121  const char* odl =
122  "%define {\n"
123  " object MyObject {"
124  " on action validate call myvalidator;"
125  " }"
126  "}";
127 
128  amxd_dm_init(&dm);
129  amxo_parser_init(&parser);
130 
131  amxo_resolver_ftab_add(&parser, "myvalidator", AMXO_FUNC(success_action));
132 
133  called = false;
134  assert_int_equal(amxo_parser_parse_string(&parser, odl, amxd_dm_get_root(&dm)), 0);
135  assert_int_equal(amxo_parser_get_status(&parser), amxd_status_ok);
136  assert_true(called);
137 
138  amxo_parser_clean(&parser);
139  amxd_dm_clean(&dm);
140 }
141 
143  amxd_dm_t dm;
144  amxo_parser_t parser;
145  const char* odl =
146  "%define {\n"
147  " object MyObject {"
148  " on action any call myvalidator;"
149  " }"
150  "}";
151 
152  amxd_dm_init(&dm);
153  amxo_parser_init(&parser);
154 
155  amxo_resolver_ftab_add(&parser, "myvalidator", AMXO_FUNC(success_action));
156 
157  called = false;
158  assert_int_equal(amxo_parser_parse_string(&parser, odl, amxd_dm_get_root(&dm)), 0);
159  assert_int_equal(amxo_parser_get_status(&parser), amxd_status_ok);
160  assert_true(called);
161 
162  amxo_parser_clean(&parser);
163  amxd_dm_clean(&dm);
164 }
165 
167  amxd_dm_t dm;
168  amxo_parser_t parser;
169  const char* odl =
170  "%define {\n"
171  " object MyObject {"
172  " on action validate call myvalidator { In = 1, Out = 2 };"
173  " }"
174  "}";
175 
176  amxd_dm_init(&dm);
177  amxo_parser_init(&parser);
178 
179  amxo_resolver_ftab_add(&parser, "myvalidator", AMXO_FUNC(data_action));
180 
181  called = false;
182  assert_int_equal(amxo_parser_parse_string(&parser, odl, amxd_dm_get_root(&dm)), 0);
183  assert_int_equal(amxo_parser_get_status(&parser), amxd_status_ok);
184  assert_true(called);
185 
186  amxo_parser_clean(&parser);
187  amxd_dm_clean(&dm);
188 }
189 
191  amxd_dm_t dm;
192  amxo_parser_t parser;
193  const char* odl =
194  "%define {\n"
195  " object MyObject {"
196  " on action validate call myvalidator;"
197  " }"
198  "}";
199 
200  amxd_dm_init(&dm);
201  amxo_parser_init(&parser);
202 
203  amxo_resolver_ftab_add(&parser, "myvalidator", AMXO_FUNC(failing_action));
204 
205  called = false;
206  assert_int_not_equal(amxo_parser_parse_string(&parser, odl, amxd_dm_get_root(&dm)), 0);
207  assert_int_equal(amxo_parser_get_status(&parser), amxd_status_invalid_value);
208  assert_true(called);
209 
210  amxo_parser_clean(&parser);
211  amxd_dm_clean(&dm);
212 }
213 
215  amxd_dm_t dm;
216  amxo_parser_t parser;
217  const char* odl =
218  "%define {\n"
219  " object MyObject {"
220  " on action translate call translate_object;"
221  " }"
222  "}";
223 
224  amxd_dm_init(&dm);
225  amxo_parser_init(&parser);
226 
227  amxo_resolver_ftab_add(&parser, "translate_object", AMXO_FUNC(failing_action));
228 
229  assert_int_not_equal(amxo_parser_parse_string(&parser, odl, amxd_dm_get_root(&dm)), 0);
230  assert_int_equal(amxo_parser_get_status(&parser), amxd_status_invalid_action);
231 
232  amxo_parser_clean(&parser);
233  amxd_dm_clean(&dm);
234 }
235 
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.
int amxo_resolver_ftab_add(amxo_parser_t *parser, const char *fn_name, amxo_fn_ptr_t fn)
Adds a C function to the function table.
#define AMXO_FUNC(x)
Function ponter caster macro.
Definition: amxo_types.h:80
The ODL parser structure.
Definition: amxo_types.h:245
#define UNUSED
Definition: test_issue_48.c:84
void test_can_add_any_action_on_object(UNUSED void **state)
static amxd_status_t data_action(UNUSED amxd_object_t *const object, UNUSED amxd_param_t *const param, UNUSED amxd_action_t reason, UNUSED const amxc_var_t *const args, UNUSED amxc_var_t *const retval, void *priv)
static amxd_status_t failing_action(UNUSED amxd_object_t *const object, UNUSED amxd_param_t *const param, UNUSED amxd_action_t reason, UNUSED const amxc_var_t *const args, UNUSED amxc_var_t *const retval, UNUSED void *priv)
static amxd_status_t success_action(UNUSED amxd_object_t *const object, UNUSED amxd_param_t *const param, UNUSED amxd_action_t reason, UNUSED const amxc_var_t *const args, UNUSED amxc_var_t *const retval, UNUSED void *priv)
void test_can_add_action_on_object(UNUSED void **state)
void test_parser_fails_when_invalid_object_action(UNUSED void **state)
static bool called
void test_failing_object_validation_makes_parser_fail(UNUSED void **state)
void test_can_proivide_data_to_object_action(UNUSED void **state)