blob: 999addfccd2909a415625ea19a2e54753c7e60f6 [file] [log] [blame]
Paul Vinciguerra7e0c48e2019-02-01 19:37:45 -08001#!/usr/bin/env python3
Ole Troan9d420872017-10-12 13:06:35 +02002
3import unittest
Ole Troan9f84e702020-06-25 14:27:46 +02004from vppapigen import VPPAPI, Option, ParseError, Union, foldup_crcs, global_types
5import vppapigen
Ole Troan9d420872017-10-12 13:06:35 +02006
7# TODO
Ole Troan9f84e702020-06-25 14:27:46 +02008# - test parsing of options, typedefs, enums, defines
Ole Troan9d420872017-10-12 13:06:35 +02009# - test JSON, C output
10
11
12class TestVersion(unittest.TestCase):
13 @classmethod
14 def setUpClass(cls):
15 cls.parser = VPPAPI()
16
17 def test_version(self):
18 version_string = 'option version = "1.0.0";'
19 r = self.parser.parse_string(version_string)
20 self.assertTrue(isinstance(r[0], Option))
21
Ole Troand5a78a52019-09-18 12:12:47 +020022class TestUnion(unittest.TestCase):
23 @classmethod
24 def setUpClass(cls):
25 cls.parser = VPPAPI()
26
27 def test_union(self):
28 test_string = '''
29 union foo_union {
30 u32 a;
31 u8 b;
32 };
33 '''
34 r = self.parser.parse_string(test_string)
35 self.assertTrue(isinstance(r[0], Union))
36
37 def test_union_vla(self):
38 test_string = '''
39 union foo_union_vla {
40 u32 a;
41 u8 b[a];
42 };
43 autoreply define foo {
44 vl_api_foo_union_vla_t v;
45 };
46 '''
47 r = self.parser.parse_string(test_string)
48 self.assertTrue(isinstance(r[0], Union))
49 self.assertTrue(r[0].vla)
50 s = self.parser.process(r)
51
52
53 test_string2 = '''
54 union foo_union_vla2 {
55 u32 a;
56 u8 b[a];
57 u32 c;
58 };
59 autoreply define foo2 {
60 vl_api_foo_union_vla2_t v;
61 };
62 '''
63 self.assertRaises(ValueError, self.parser.parse_string, test_string2)
64
65 test_string3 = '''
66 union foo_union_vla3 {
67 u32 a;
68 u8 b[a];
69 };
70 autoreply define foo3 {
71 vl_api_foo_union_vla3_t v;
72 u32 x;
73 };
74 '''
75 self.assertRaises(ValueError, self.parser.parse_string, test_string3)
Ole Troan9d420872017-10-12 13:06:35 +020076
77class TestTypedef(unittest.TestCase):
78 @classmethod
79 def setUpClass(cls):
80 cls.parser = VPPAPI()
81
82 def test_duplicatetype(self):
83 test_string = '''
Paul Vinciguerra4bf84902019-07-31 00:34:05 -040084 typedef foo1 { u8 dummy; };
85 typedef foo1 { u8 dummy; };
Ole Troan9d420872017-10-12 13:06:35 +020086 '''
87 self.assertRaises(KeyError, self.parser.parse_string, test_string)
88
89
90class TestDefine(unittest.TestCase):
91 @classmethod
92 def setUpClass(cls):
93 cls.parser = VPPAPI()
94
95 def test_unknowntype(self):
96 test_string = 'define foo { foobar foo;};'
Paul Vinciguerra4bf84902019-07-31 00:34:05 -040097 with self.assertRaises(ParseError) as ctx:
98 self.parser.parse_string(test_string)
99 self.assertIn('Undefined type: foobar', str(ctx.exception))
100
Ole Troan9d420872017-10-12 13:06:35 +0200101 test_string = 'define { u8 foo;};'
Paul Vinciguerra4bf84902019-07-31 00:34:05 -0400102 with self.assertRaises(ParseError) as ctx:
103 self.parser.parse_string(test_string)
Ole Troan9d420872017-10-12 13:06:35 +0200104
105 def test_flags(self):
106 test_string = '''
107 manual_print dont_trace manual_endian define foo { u8 foo; };
Paul Vinciguerra4bf84902019-07-31 00:34:05 -0400108 define foo_reply {u32 context; i32 retval; };
Ole Troan9d420872017-10-12 13:06:35 +0200109 '''
110 r = self.parser.parse_string(test_string)
111 self.assertIsNotNone(r)
112 s = self.parser.process(r)
113 self.assertIsNotNone(s)
Paul Vinciguerra4bf84902019-07-31 00:34:05 -0400114 for d in s['Define']:
115 if d.name == 'foo':
116 self.assertTrue(d.dont_trace)
117 self.assertTrue(d.manual_endian)
118 self.assertTrue(d.manual_print)
119 self.assertFalse(d.autoreply)
Ole Troan9d420872017-10-12 13:06:35 +0200120
121 test_string = '''
122 nonexisting_flag define foo { u8 foo; };
123 '''
Paul Vinciguerra7e0c48e2019-02-01 19:37:45 -0800124 with self.assertRaises(ParseError):
125 self.parser.parse_string(test_string)
Ole Troan9d420872017-10-12 13:06:35 +0200126
Ole Troan68ebcd52020-08-10 17:06:44 +0200127 def test_options(self):
128 test_string = '''
129 define foo { option deprecated; u8 foo; };
130 define foo_reply {u32 context; i32 retval; };
131 '''
132 r = self.parser.parse_string(test_string)
133 self.assertIsNotNone(r)
134 s = self.parser.process(r)
135 self.assertIsNotNone(s)
136
Ole Troan9d420872017-10-12 13:06:35 +0200137
138class TestService(unittest.TestCase):
139 @classmethod
140 def setUpClass(cls):
141 cls.parser = VPPAPI()
142
143 def test_service(self):
144 test_string = '''
Paul Vinciguerra4bf84902019-07-31 00:34:05 -0400145 autoreply define show_version { u8 foo;};
146 service { rpc show_version returns show_version_reply; };
Ole Troan9d420872017-10-12 13:06:35 +0200147 '''
148 r = self.parser.parse_string(test_string)
Paul Vinciguerra4bf84902019-07-31 00:34:05 -0400149 s = self.parser.process(r)
150 self.assertEqual(s['Service'][0].caller, 'show_version')
151 self.assertEqual(s['Service'][0].reply, 'show_version_reply')
Ole Troan9d420872017-10-12 13:06:35 +0200152
153
Ole Troan9f84e702020-06-25 14:27:46 +0200154def get_crc(apistring, name):
155 vppapigen.global_types = {}
156 parser = vppapigen.VPPAPI()
157 r = parser.parse_string(apistring)
158 s = parser.process(r)
159 foldup_crcs(s['Define'])
160 d = [f for f in s['Define'] if f.name == name]
161 return d[0].crc
162
163
164class TestCRC(unittest.TestCase):
165 def test_crc(self):
166 test_string = '''
167 typedef list { u8 foo; };
168 autoreply define foo { u8 foo; vl_api_list_t l;};
169 '''
170 crc = get_crc(test_string, 'foo')
171
172 # modify underlaying type
173 test_string = '''
174 typedef list { u8 foo2; };
175 autoreply define foo { u8 foo; vl_api_list_t l;};
176 '''
177 crc2 = get_crc(test_string, 'foo')
178 self.assertNotEqual(crc, crc2)
179
180 # two user-defined types
181 test_string = '''
182 typedef address { u8 foo2; };
183 typedef list { u8 foo2; vl_api_address_t add; };
184 autoreply define foo { u8 foo; vl_api_list_t l;};
185 '''
186 crc3 = get_crc(test_string, 'foo')
187
188 test_string = '''
189 typedef address { u8 foo3; };
190 typedef list { u8 foo2; vl_api_address_t add; };
191 autoreply define foo { u8 foo; vl_api_list_t l;};
192 '''
193 crc4 = get_crc(test_string, 'foo')
194 self.assertNotEqual(crc3, crc4)
195
196 test_string = '''
197 typedef address { u8 foo3; };
198 typedef list { u8 foo2; vl_api_address_t add; u8 foo3; };
199 autoreply define foo { u8 foo; vl_api_list_t l;};
200 '''
201 crc5 = get_crc(test_string, 'foo')
202 self.assertNotEqual(crc4, crc5)
203
204 test_string = '''
205typedef ip6_address
206{
207 u8 foo;
208};
209typedef srv6_sid_list
210{
211 u8 num_sids;
212 u32 weight;
213 u32 sl_index;
214 vl_api_ip6_address_t sids[16];
215};
216autoreply define sr_policy_add
217{
218 u32 client_index;
219 u32 context;
220 vl_api_ip6_address_t bsid_addr;
221 u32 weight;
222 bool is_encap;
223 bool is_spray;
224 u32 fib_table;
225 vl_api_srv6_sid_list_t sids;
226};
227'''
228
229 crc = get_crc(test_string, 'sr_policy_add')
230
231 test_string = '''
232typedef ip6_address
233{
234 u8 foo;
235};
236typedef srv6_sid_list
237{
238 u8 num_sids;
239 u32 weight;
240 vl_api_ip6_address_t sids[16];
241};
242autoreply define sr_policy_add
243{
244 u32 client_index;
245 u32 context;
246 vl_api_ip6_address_t bsid_addr;
247 u32 weight;
248 bool is_encap;
249 bool is_spray;
250 u32 fib_table;
251 vl_api_srv6_sid_list_t sids;
252};
253'''
254 crc2 = get_crc(test_string, 'sr_policy_add')
255
256 self.assertNotEqual(crc, crc2)
257
Ole Troan9d420872017-10-12 13:06:35 +0200258if __name__ == '__main__':
Paul Vinciguerra4bf84902019-07-31 00:34:05 -0400259 unittest.main(verbosity=2)