blob: fde5cba0789cc3aa8019a0bd956e294ddc3d7a8b [file] [log] [blame]
Rich Lanea06d0c32013-03-25 08:52:03 -07001:: # Copyright 2013, Big Switch Networks, Inc.
2:: #
3:: # LoxiGen is licensed under the Eclipse Public License, version 1.0 (EPL), with
4:: # the following special exception:
5:: #
6:: # LOXI Exception
7:: #
8:: # As a special exception to the terms of the EPL, you may distribute libraries
9:: # generated by LoxiGen (LoxiGen Libraries) under the terms of your choice, provided
10:: # that copyright and licensing notices generated by LoxiGen are not altered or removed
11:: # from the LoxiGen Libraries and the notice provided below is (i) included in
12:: # the LoxiGen Libraries, if distributed in source code form and (ii) included in any
13:: # documentation for the LoxiGen Libraries, if distributed in binary form.
14:: #
15:: # Notice: "Copyright 2013, Big Switch Networks, Inc. This library was generated by the LoxiGen Compiler."
16:: #
17:: # You may not use this file except in compliance with the EPL or LOXI Exception. You may obtain
18:: # a copy of the EPL at:
19:: #
20:: # http://www.eclipse.org/legal/epl-v10.html
21:: #
22:: # Unless required by applicable law or agreed to in writing, software
23:: # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
24:: # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
25:: # EPL for the specific language governing permissions and limitations
26:: # under the EPL.
27::
Rich Laned983aa52013-06-13 11:48:37 -070028:: include('_copyright.c')
Andreas Wundsam76db0062013-11-15 13:34:41 -080029:: import c_gen.of_g_legacy as of_g
Andreas Wundsam542a13c2013-11-15 13:28:55 -080030:: import c_gen.loxi_utils_legacy as loxi_utils
31:: from c_gen import type_maps
Rich Lanea06d0c32013-03-25 08:52:03 -070032
33/**
34 * Test message validator
35 *
36 * Run the message validator on corrupt messages to ensure it catches them.
37 */
38
39#include "loci_log.h"
40
41#include <locitest/test_common.h>
42#include <loci/loci_validator.h>
43
44static int
45test_validate_fixed_length(void)
46{
47 of_table_stats_request_t *obj = of_table_stats_request_new(OF_VERSION_1_0);
48 of_message_t msg = OF_OBJECT_TO_MESSAGE(obj);
49
50 TEST_ASSERT(of_validate_message(msg, of_message_length_get(msg)) == 0);
51
52 of_message_length_set(msg, of_message_length_get(msg) - 1);
53 TEST_ASSERT(of_validate_message(msg, of_message_length_get(msg)) == -1);
54
55 of_table_stats_request_delete(obj);
56 return TEST_PASS;
57}
58
59static int
60test_validate_fixed_length_list(void)
61{
62 of_table_stats_reply_t *obj = of_table_stats_reply_new(OF_VERSION_1_0);
63 of_list_table_stats_entry_t list;
64 of_table_stats_entry_t element;
65 of_message_t msg;
66 of_table_stats_reply_entries_bind(obj, &list);
67 of_table_stats_entry_init(&element, OF_VERSION_1_0, -1, 1);
68 of_list_table_stats_entry_append_bind(&list, &element);
69 of_list_table_stats_entry_append_bind(&list, &element);
70 msg = OF_OBJECT_TO_MESSAGE(obj);
71
72 TEST_ASSERT(of_validate_message(msg, of_message_length_get(msg)) == 0);
73
74 of_message_length_set(msg, of_message_length_get(msg) - 1);
75 TEST_ASSERT(of_validate_message(msg, of_message_length_get(msg)) == -1);
76
77 of_table_stats_reply_delete(obj);
78 return TEST_PASS;
79}
80
81static int
82test_validate_tlv16_list(void)
83{
84 of_flow_modify_t *obj = of_flow_modify_new(OF_VERSION_1_0);
85 of_list_action_t list;
86 of_action_set_tp_dst_t element1;
87 of_action_output_t element2;
88 of_message_t msg;
89 of_flow_modify_actions_bind(obj, &list);
90 of_action_set_tp_dst_init(&element1, OF_VERSION_1_0, -1, 1);
Rich Lanee499bd12014-10-28 15:25:09 -070091 of_list_action_append_bind(&list, &element1);
Rich Lanea06d0c32013-03-25 08:52:03 -070092 of_action_output_init(&element2, OF_VERSION_1_0, -1, 1);
Rich Lanee499bd12014-10-28 15:25:09 -070093 of_list_action_append_bind(&list, &element2);
Rich Lanea06d0c32013-03-25 08:52:03 -070094 msg = OF_OBJECT_TO_MESSAGE(obj);
95
96 TEST_ASSERT(of_validate_message(msg, of_message_length_get(msg)) == 0);
97
98 of_message_length_set(msg, of_message_length_get(msg) - 1);
99 TEST_ASSERT(of_validate_message(msg, of_message_length_get(msg)) == -1);
100
101 of_message_length_set(msg, of_message_length_get(msg) + 2);
102 TEST_ASSERT(of_validate_message(msg, of_message_length_get(msg)) == -1);
103
104 of_flow_modify_delete(obj);
105 return TEST_PASS;
106}
107
Rich Lane32b13b02013-07-12 09:46:30 -0700108/*
109 * Create an instance of every message and run it through the validator.
110 */
111static int
112test_validate_all(void)
113{
114:: for version in of_g.of_version_range:
115:: ver_name = loxi_utils.version_to_name(version)
116::
117:: for cls in reversed(of_g.standard_class_order):
118:: if not loxi_utils.class_in_version(cls, version):
119:: continue
Rich Lanea8775822013-07-22 15:47:58 -0700120:: elif type_maps.class_is_virtual(cls):
Rich Lane32b13b02013-07-12 09:46:30 -0700121:: continue
122:: elif not loxi_utils.class_is_message(cls):
123:: continue
124:: #endif
125 {
126 ${cls}_t *obj = ${cls}_new(${ver_name});
127 of_message_t msg;
128 ${cls}_${ver_name}_populate(obj, 1);
129 msg = OF_OBJECT_TO_MESSAGE(obj);
130 TEST_ASSERT(of_validate_message(msg, of_message_length_get(msg)) == 0);
131 ${cls}_delete(obj);
132 }
133
134:: #endfor
135:: #endfor
136
137 return TEST_PASS;
138}
139
Rich Lanea06d0c32013-03-25 08:52:03 -0700140int
141run_validator_tests(void)
142{
143 RUN_TEST(validate_fixed_length);
144 RUN_TEST(validate_fixed_length_list);
145 RUN_TEST(validate_tlv16_list);
Rich Lane32b13b02013-07-12 09:46:30 -0700146 RUN_TEST(validate_all);
Rich Lanea06d0c32013-03-25 08:52:03 -0700147
148 return TEST_PASS;
149}