blob: 4c09ab4439cccbf50cda34482666e52f3962b5da [file] [log] [blame]
Neale Ranns812ed392017-10-16 04:20:13 -07001/*
2 * Test suite for class VppOM
3 *
4 * Copyright (c) 2017 Cisco Systems, Inc. and others. All rights reserved.
5 *
6 * This program and the accompanying materials are made available under the
7 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
8 * and is available at http://www.eclipse.org/legal/epl-v10.html
9 */
10#define BOOST_TEST_MODULE "VPP OBJECT MODEL"
11#define BOOST_TEST_DYN_LINK
12
13#include <boost/test/unit_test.hpp>
14#include <boost/assign/list_inserter.hpp>
15
16
17#include <iostream>
18#include <deque>
19
20#include "vom/om.hpp"
21#include "vom/interface.hpp"
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070022#include "vom/interface_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070023#include "vom/l2_binding.hpp"
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070024#include "vom/l2_binding_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070025#include "vom/l3_binding.hpp"
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070026#include "vom/l3_binding_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070027#include "vom/bridge_domain.hpp"
28#include "vom/bridge_domain_entry.hpp"
29#include "vom/bridge_domain_arp_entry.hpp"
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070030#include "vom/bridge_domain_cmds.hpp"
31#include "vom/bridge_domain_entry_cmds.hpp"
32#include "vom/bridge_domain_arp_entry_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070033#include "vom/prefix.hpp"
34#include "vom/route.hpp"
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070035#include "vom/route_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070036#include "vom/route_domain.hpp"
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070037#include "vom/route_domain_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070038#include "vom/vxlan_tunnel.hpp"
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070039#include "vom/vxlan_tunnel_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070040#include "vom/sub_interface.hpp"
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070041#include "vom/sub_interface_cmds.hpp"
Mohsin Kazmi49c7f0c2018-02-07 20:20:36 +010042#include "vom/acl_ethertype.hpp"
43#include "vom/acl_ethertype_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070044#include "vom/acl_list.hpp"
45#include "vom/acl_binding.hpp"
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070046#include "vom/acl_list_cmds.hpp"
47#include "vom/acl_binding_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070048#include "vom/acl_l3_rule.hpp"
49#include "vom/acl_l2_rule.hpp"
50#include "vom/arp_proxy_config.hpp"
51#include "vom/arp_proxy_binding.hpp"
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070052#include "vom/arp_proxy_config_cmds.hpp"
53#include "vom/arp_proxy_binding_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070054#include "vom/ip_unnumbered.hpp"
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070055#include "vom/ip_unnumbered_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070056#include "vom/interface_ip6_nd.hpp"
57#include "vom/interface_span.hpp"
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070058#include "vom/interface_span_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070059#include "vom/neighbour.hpp"
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070060#include "vom/neighbour_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070061#include "vom/nat_static.hpp"
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070062#include "vom/nat_static_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070063#include "vom/nat_binding.hpp"
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070064#include "vom/nat_binding_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070065
66using namespace boost;
67using namespace VOM;
68
69/**
70 * An expectation exception
71 */
72class ExpException
73{
74public:
75 ExpException(unsigned int number)
76 {
77 // a neat place to add a break point
78 std::cout << " ExpException here: " << number << std::endl;
79 }
80};
81
82class MockListener : public interface::event_listener,
83 public interface::stat_listener
84{
Neale Rannsa2ee0292017-11-28 22:29:13 -080085 void handle_interface_stat(interface_cmds::stats_enable_cmd *cmd)
Neale Ranns812ed392017-10-16 04:20:13 -070086 {
87 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070088 void handle_interface_event(interface_cmds::events_cmd *cmd)
Neale Ranns812ed392017-10-16 04:20:13 -070089 {
90 }
91};
92
93class MockCmdQ : public HW::cmd_q
94{
95public:
96 MockCmdQ():
97 m_strict_order(true)
98 {
99 }
100 virtual ~MockCmdQ()
101 {
102 }
103 void expect(cmd *f)
104 {
105 m_exp_queue.push_back(f);
106 }
107 void enqueue(cmd *f)
108 {
109 m_act_queue.push_back(f);
110 }
111 void enqueue(std::queue<cmd*> &cmds)
112 {
113 while (cmds.size())
114 {
115 m_act_queue.push_back(cmds.front());
116 cmds.pop();
117 }
118 }
119 void enqueue(std::shared_ptr<cmd> f)
120 {
121 m_act_queue.push_back(f.get());
122 }
123
124 void dequeue(cmd *f)
125 {
126 }
127
128 void dequeue(std::shared_ptr<cmd> cmd)
129 {
130 }
131
132 void strict_order(bool on)
133 {
134 m_strict_order = on;
135 }
136
137 bool is_empty()
138 {
139 return ((0 == m_exp_queue.size()) &&
140 (0 == m_act_queue.size()));
141 }
142
143 rc_t write()
144 {
145 cmd *f_exp, *f_act;
146 rc_t rc = rc_t::OK;
147
148 while (m_act_queue.size())
149 {
150 bool matched = false;
151 auto it_exp = m_exp_queue.begin();
152 auto it_act = m_act_queue.begin();
153
154 f_act = *it_act;
155
156 std::cout << " Act: " << f_act->to_string() << std::endl;
157 while (it_exp != m_exp_queue.end())
158 {
159 f_exp = *it_exp;
160 try
161 {
162 std::cout << " Exp: " << f_exp->to_string() << std::endl;
163
164 if (typeid(*f_exp) != typeid(*f_act))
165 {
166 throw ExpException(1);
167 }
168
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700169 if (typeid(*f_exp) == typeid(interface_cmds::af_packet_create_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700170 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700171 rc = handle_derived<interface_cmds::af_packet_create_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700172 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700173 else if (typeid(*f_exp) == typeid(interface_cmds::loopback_create_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700174 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700175 rc = handle_derived<interface_cmds::loopback_create_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700176 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700177 else if (typeid(*f_exp) == typeid(interface_cmds::loopback_delete_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700178 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700179 rc = handle_derived<interface_cmds::loopback_delete_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700180 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700181 else if (typeid(*f_exp) == typeid(interface_cmds::af_packet_delete_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700182 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700183 rc = handle_derived<interface_cmds::af_packet_delete_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700184 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700185 else if (typeid(*f_exp) == typeid(interface_cmds::state_change_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700186 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700187 rc = handle_derived<interface_cmds::state_change_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700188 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700189 else if (typeid(*f_exp) == typeid(interface_cmds::set_table_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700190 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700191 rc = handle_derived<interface_cmds::set_table_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700192 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700193 else if (typeid(*f_exp) == typeid(interface_cmds::set_mac_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700194 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700195 rc = handle_derived<interface_cmds::set_mac_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700196 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700197 else if (typeid(*f_exp) == typeid(interface_cmds::set_tag))
Neale Ranns812ed392017-10-16 04:20:13 -0700198 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700199 rc = handle_derived<interface_cmds::set_tag>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700200 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700201 else if (typeid(*f_exp) == typeid(route_domain_cmds::create_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700202 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700203 rc = handle_derived<route_domain_cmds::create_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700204 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700205 else if (typeid(*f_exp) == typeid(route_domain_cmds::delete_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700206 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700207 rc = handle_derived<route_domain_cmds::delete_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700208 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700209 else if (typeid(*f_exp) == typeid(route::ip_route_cmds::update_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700210 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700211 rc = handle_derived<route::ip_route_cmds::update_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700212 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700213 else if (typeid(*f_exp) == typeid(route::ip_route_cmds::delete_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700214 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700215 rc = handle_derived<route::ip_route_cmds::delete_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700216 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700217 else if (typeid(*f_exp) == typeid(neighbour_cmds::create_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700218 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700219 rc = handle_derived<neighbour_cmds::create_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700220 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700221 else if (typeid(*f_exp) == typeid(neighbour_cmds::delete_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700222 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700223 rc = handle_derived<neighbour_cmds::delete_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700224 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700225 else if (typeid(*f_exp) == typeid(l3_binding_cmds::bind_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700226 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700227 rc = handle_derived<l3_binding_cmds::bind_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700228 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700229 else if (typeid(*f_exp) == typeid(l3_binding_cmds::unbind_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700230 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700231 rc = handle_derived<l3_binding_cmds::unbind_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700232 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700233 else if (typeid(*f_exp) == typeid(bridge_domain_cmds::create_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700234 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700235 rc = handle_derived<bridge_domain_cmds::create_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700236 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700237 else if (typeid(*f_exp) == typeid(bridge_domain_cmds::delete_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700238 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700239 rc = handle_derived<bridge_domain_cmds::delete_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700240 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700241 else if (typeid(*f_exp) == typeid(bridge_domain_entry_cmds::create_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700242 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700243 rc = handle_derived<bridge_domain_entry_cmds::create_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700244 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700245 else if (typeid(*f_exp) == typeid(bridge_domain_entry_cmds::delete_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700246 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700247 rc = handle_derived<bridge_domain_entry_cmds::delete_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700248 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700249 else if (typeid(*f_exp) == typeid(bridge_domain_arp_entry_cmds::create_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700250 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700251 rc = handle_derived<bridge_domain_arp_entry_cmds::create_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700252 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700253 else if (typeid(*f_exp) == typeid(bridge_domain_arp_entry_cmds::delete_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700254 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700255 rc = handle_derived<bridge_domain_arp_entry_cmds::delete_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700256 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700257 else if (typeid(*f_exp) == typeid(l2_binding_cmds::bind_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700258 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700259 rc = handle_derived<l2_binding_cmds::bind_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700260 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700261 else if (typeid(*f_exp) == typeid(l2_binding_cmds::unbind_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700262 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700263 rc = handle_derived<l2_binding_cmds::unbind_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700264 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700265 else if (typeid(*f_exp) == typeid(l2_binding_cmds::set_vtr_op_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700266 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700267 rc = handle_derived<l2_binding_cmds::set_vtr_op_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700268 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700269 else if (typeid(*f_exp) == typeid(vxlan_tunnel_cmds::create_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700270 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700271 rc = handle_derived<vxlan_tunnel_cmds::create_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700272 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700273 else if (typeid(*f_exp) == typeid(vxlan_tunnel_cmds::delete_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700274 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700275 rc = handle_derived<vxlan_tunnel_cmds::delete_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700276 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700277 else if (typeid(*f_exp) == typeid(sub_interface_cmds::create_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700278 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700279 rc = handle_derived<sub_interface_cmds::create_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700280 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700281 else if (typeid(*f_exp) == typeid(sub_interface_cmds::delete_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700282 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700283 rc = handle_derived<sub_interface_cmds::delete_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700284 }
Mohsin Kazmi49c7f0c2018-02-07 20:20:36 +0100285 else if (typeid(*f_exp) == typeid(ACL::acl_ethertype_cmds::bind_cmd))
286 {
287 rc = handle_derived<ACL::acl_ethertype_cmds::bind_cmd>(f_exp, f_act);
288 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700289 else if (typeid(*f_exp) == typeid(ACL::list_cmds::l3_update_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700290 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700291 rc = handle_derived<ACL::list_cmds::l3_update_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700292 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700293 else if (typeid(*f_exp) == typeid(ACL::list_cmds::l3_delete_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700294 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700295 rc = handle_derived<ACL::list_cmds::l3_delete_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700296 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700297 else if (typeid(*f_exp) == typeid(ACL::binding_cmds::l3_bind_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700298 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700299 rc = handle_derived<ACL::binding_cmds::l3_bind_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700300 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700301 else if (typeid(*f_exp) == typeid(ACL::binding_cmds::l3_unbind_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700302 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700303 rc = handle_derived<ACL::binding_cmds::l3_unbind_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700304 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700305 else if (typeid(*f_exp) == typeid(ACL::list_cmds::l2_update_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700306 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700307 rc = handle_derived<ACL::list_cmds::l2_update_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700308 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700309 else if (typeid(*f_exp) == typeid(ACL::list_cmds::l2_delete_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700310 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700311 rc = handle_derived<ACL::list_cmds::l2_delete_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700312 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700313 else if (typeid(*f_exp) == typeid(ACL::binding_cmds::l2_bind_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700314 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700315 rc = handle_derived<ACL::binding_cmds::l2_bind_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700316 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700317 else if (typeid(*f_exp) == typeid(ACL::binding_cmds::l2_unbind_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700318 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700319 rc = handle_derived<ACL::binding_cmds::l2_unbind_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700320 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700321 else if (typeid(*f_exp) == typeid(arp_proxy_binding_cmds::bind_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700322 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700323 rc = handle_derived<arp_proxy_binding_cmds::bind_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700324 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700325 else if (typeid(*f_exp) == typeid(arp_proxy_binding_cmds::unbind_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700326 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700327 rc = handle_derived<arp_proxy_binding_cmds::unbind_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700328 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700329 else if (typeid(*f_exp) == typeid(arp_proxy_config_cmds::config_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700330 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700331 rc = handle_derived<arp_proxy_config_cmds::config_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700332 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700333 else if (typeid(*f_exp) == typeid(arp_proxy_config_cmds::unconfig_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700334 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700335 rc = handle_derived<arp_proxy_config_cmds::unconfig_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700336 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700337 else if (typeid(*f_exp) == typeid(ip_unnumbered_cmds::config_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700338 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700339 rc = handle_derived<ip_unnumbered_cmds::config_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700340 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700341 else if (typeid(*f_exp) == typeid(ip_unnumbered_cmds::unconfig_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700342 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700343 rc = handle_derived<ip_unnumbered_cmds::unconfig_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700344 }
345 else if (typeid(*f_exp) == typeid(ip6nd_ra_config::config_cmd))
346 {
347 rc = handle_derived<ip6nd_ra_config::config_cmd>(f_exp, f_act);
348 }
349 else if (typeid(*f_exp) == typeid(ip6nd_ra_config::unconfig_cmd))
350 {
351 rc = handle_derived<ip6nd_ra_config::unconfig_cmd>(f_exp, f_act);
352 }
353 else if (typeid(*f_exp) == typeid(ip6nd_ra_prefix::config_cmd))
354 {
355 rc = handle_derived<ip6nd_ra_prefix::config_cmd>(f_exp, f_act);
356 }
357 else if (typeid(*f_exp) == typeid(ip6nd_ra_prefix::unconfig_cmd))
358 {
359 rc = handle_derived<ip6nd_ra_prefix::unconfig_cmd>(f_exp, f_act);
360 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700361 else if (typeid(*f_exp) == typeid(interface_span_cmds::config_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700362 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700363 rc = handle_derived<interface_span_cmds::config_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700364 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700365 else if (typeid(*f_exp) == typeid(interface_span_cmds::unconfig_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700366 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700367 rc = handle_derived<interface_span_cmds::unconfig_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700368 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700369 else if (typeid(*f_exp) == typeid(nat_static_cmds::create_44_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700370 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700371 rc = handle_derived<nat_static_cmds::create_44_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700372 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700373 else if (typeid(*f_exp) == typeid(nat_static_cmds::delete_44_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700374 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700375 rc = handle_derived<nat_static_cmds::delete_44_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700376 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700377 else if (typeid(*f_exp) == typeid(nat_binding_cmds::bind_44_input_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700378 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700379 rc = handle_derived<nat_binding_cmds::bind_44_input_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700380 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700381 else if (typeid(*f_exp) == typeid(nat_binding_cmds::unbind_44_input_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700382 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700383 rc = handle_derived<nat_binding_cmds::unbind_44_input_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700384 }
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700385 else if (typeid(*f_exp) == typeid(interface_cmds::events_cmd))
Neale Ranns812ed392017-10-16 04:20:13 -0700386 {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700387 rc = handle_derived<interface_cmds::events_cmd>(f_exp, f_act);
Neale Ranns812ed392017-10-16 04:20:13 -0700388 }
389 else
390 {
391 throw ExpException(2);
392 }
393
394 // if we get here then we found the match.
395 m_exp_queue.erase(it_exp);
396 m_act_queue.erase(it_act);
397 delete f_exp;
398 delete f_act;
399
400 // return any injected failures to the agent
401 if (rc_t::OK != rc && rc_t::NOOP != rc)
402 {
403 return (rc);
404 }
405
406 matched = true;
407 break;
408 }
409 catch (ExpException &e)
410 {
411 // The expected and actual do not match
412 if (m_strict_order)
413 {
414 // in strict ordering mode this is fatal, so rethrow
415 throw e;
416 }
417 else
418 {
419 // move the iterator onto the next in the expected list and
420 // check for a match
421 ++it_exp;
422 }
423 }
424 }
425
426 if (!matched)
427 throw ExpException(3);
428 }
429
430 return (rc);
431 }
432private:
433
434 template <typename T>
435 rc_t handle_derived(const cmd *f_exp, cmd *f_act)
436 {
437 const T *i_exp;
438 T *i_act;
439
440 i_exp = dynamic_cast<const T*>(f_exp);
441 i_act = dynamic_cast<T*>(f_act);
442 if (!(*i_exp == *i_act))
443 {
444 throw ExpException(4);
445 }
446 // pass the data and return code to the agent
447 i_act->item() = i_exp->item();
448
449 return (i_act->item().rc());
450 }
451
452 // The Q to push the expectations on
453 std::deque<cmd*> m_exp_queue;
454
455 // the queue to push the actual events on
456 std::deque<cmd*> m_act_queue;
457
458 // control whether the expected queue is strictly ordered.
459 bool m_strict_order;
460};
461
462class VppInit {
463public:
464 std::string name;
465 MockCmdQ *f;
466
467 VppInit()
468 : name("vpp-ut"),
469 f(new MockCmdQ())
470 {
471 HW::init(f);
472 OM::init();
473 logger().set(log_level_t::DEBUG);
474 }
475
476 ~VppInit() {
477 delete f;
478 }
479};
480
Neale Rannsd3464b52017-12-07 08:48:02 -0800481BOOST_AUTO_TEST_SUITE(vom)
Neale Ranns812ed392017-10-16 04:20:13 -0700482
483#define TRY_CHECK_RC(stmt) \
484{ \
485 try { \
486 BOOST_CHECK(rc_t::OK == stmt); \
487 } \
488 catch (ExpException &e) \
489 { \
490 BOOST_CHECK(false); \
491 } \
492 BOOST_CHECK(vi.f->is_empty()); \
493}
494
495#define TRY_CHECK(stmt) \
496{ \
497 try { \
498 stmt; \
499 } \
500 catch (ExpException &e) \
501 { \
502 BOOST_CHECK(false); \
503 } \
504 BOOST_CHECK(vi.f->is_empty()); \
505}
506
507#define ADD_EXPECT(stmt) \
508 vi.f->expect(new stmt)
509
510#define STRICT_ORDER_OFF() \
511 vi.f->strict_order(false)
512
513BOOST_AUTO_TEST_CASE(test_interface) {
514 VppInit vi;
515 const std::string go = "GeorgeOrwell";
516 const std::string js = "JohnSteinbeck";
517 rc_t rc = rc_t::OK;
518
519 /*
520 * George creates and deletes the interface
521 */
522 std::string itf1_name = "afpacket1";
523 interface itf1(itf1_name,
524 interface::type_t::AFPACKET,
525 interface::admin_state_t::UP);
526
527 /*
528 * set the expectation for a afpacket interface create.
529 * 2 is the interface handle VPP [mock] assigns
530 */
531 HW::item<handle_t> hw_ifh(2, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700532 ADD_EXPECT(interface_cmds::af_packet_create_cmd(hw_ifh, itf1_name));
Neale Ranns812ed392017-10-16 04:20:13 -0700533
534 HW::item<interface::admin_state_t> hw_as_up(interface::admin_state_t::UP, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700535 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up, hw_ifh));
Neale Ranns812ed392017-10-16 04:20:13 -0700536
537 TRY_CHECK_RC(OM::write(go, itf1));
538
539 HW::item<interface::admin_state_t> hw_as_down(interface::admin_state_t::DOWN, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700540 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down, hw_ifh));
541 ADD_EXPECT(interface_cmds::af_packet_delete_cmd(hw_ifh, itf1_name));
Neale Ranns812ed392017-10-16 04:20:13 -0700542
543 TRY_CHECK(OM::remove(go));
544
545 /*
546 * George creates the interface, then John brings it down.
547 * George's remove is a no-op, sice John also owns the interface
548 */
549 interface itf1b(itf1_name,
550 interface::type_t::AFPACKET,
551 interface::admin_state_t::DOWN);
552
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700553 ADD_EXPECT(interface_cmds::af_packet_create_cmd(hw_ifh, itf1_name));
554 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up, hw_ifh));
Neale Ranns812ed392017-10-16 04:20:13 -0700555 TRY_CHECK_RC(OM::write(go, itf1));
556
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700557 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down, hw_ifh));
Neale Ranns812ed392017-10-16 04:20:13 -0700558 TRY_CHECK_RC(OM::write(js, itf1b));
559
560 TRY_CHECK(OM::remove(go));
561
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700562 ADD_EXPECT(interface_cmds::af_packet_delete_cmd(hw_ifh, itf1_name));
Neale Ranns812ed392017-10-16 04:20:13 -0700563 TRY_CHECK(OM::remove(js));
564
565 /*
566 * George adds an interface, then we flush all of Geroge's state
567 */
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700568 ADD_EXPECT(interface_cmds::af_packet_create_cmd(hw_ifh, itf1_name));
569 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up, hw_ifh));
Neale Ranns812ed392017-10-16 04:20:13 -0700570 TRY_CHECK_RC(OM::write(go, itf1));
571
572 TRY_CHECK(OM::mark(go));
573
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700574 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down, hw_ifh));
575 ADD_EXPECT(interface_cmds::af_packet_delete_cmd(hw_ifh, itf1_name));
Neale Ranns812ed392017-10-16 04:20:13 -0700576 TRY_CHECK(OM::sweep(go));
577
578 /*
579 * George adds an interface. mark stale. update the same interface. sweep
580 * and expect no delete
581 */
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700582 ADD_EXPECT(interface_cmds::af_packet_create_cmd(hw_ifh, itf1_name));
583 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down, hw_ifh));
Neale Ranns812ed392017-10-16 04:20:13 -0700584 TRY_CHECK_RC(OM::write(go, itf1b));
585
586 TRY_CHECK(OM::mark(go));
587
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700588 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up, hw_ifh));
Neale Ranns812ed392017-10-16 04:20:13 -0700589 TRY_CHECK_RC(OM::write(go, itf1));
590
591 TRY_CHECK(OM::sweep(go));
592
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700593 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down, hw_ifh));
594 ADD_EXPECT(interface_cmds::af_packet_delete_cmd(hw_ifh, itf1_name));
Neale Ranns812ed392017-10-16 04:20:13 -0700595 TRY_CHECK(OM::remove(go));
596
597 /*
598 * George adds an insterface, then we mark that state. Add a second interface
599 * an flush the first that is now stale.
600 */
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700601 ADD_EXPECT(interface_cmds::af_packet_create_cmd(hw_ifh, itf1_name));
602 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up, hw_ifh));
Neale Ranns812ed392017-10-16 04:20:13 -0700603 TRY_CHECK_RC(OM::write(go, itf1));
604
605 TRY_CHECK(OM::mark(go));
606
607 std::string itf2_name = "afpacket2";
608 interface itf2(itf2_name,
609 interface::type_t::AFPACKET,
610 interface::admin_state_t::UP);
611 HW::item<handle_t> hw_ifh2(3, rc_t::OK);
612
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700613 ADD_EXPECT(interface_cmds::af_packet_create_cmd(hw_ifh2, itf2_name));
614 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up, hw_ifh2));
Neale Ranns812ed392017-10-16 04:20:13 -0700615 TRY_CHECK_RC(OM::write(go, itf2));
616
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700617 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down, hw_ifh));
618 ADD_EXPECT(interface_cmds::af_packet_delete_cmd(hw_ifh, itf1_name));
Neale Ranns812ed392017-10-16 04:20:13 -0700619 TRY_CHECK(OM::sweep(go));
620
621 TRY_CHECK(OM::mark(go));
622
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700623 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down, hw_ifh2));
624 ADD_EXPECT(interface_cmds::af_packet_delete_cmd(hw_ifh2, itf2_name));
Neale Ranns812ed392017-10-16 04:20:13 -0700625 TRY_CHECK(OM::sweep(go));
626}
627
628BOOST_AUTO_TEST_CASE(test_bvi) {
629 VppInit vi;
630 const std::string ernest = "ErnestHemmingway";
631 const std::string graham = "GrahamGreene";
632 rc_t rc = rc_t::OK;
633 l3_binding *l3;
634
635 HW::item<interface::admin_state_t> hw_as_up(interface::admin_state_t::UP,
636 rc_t::OK);
637 HW::item<interface::admin_state_t> hw_as_down(interface::admin_state_t::DOWN,
638 rc_t::OK);
639
640 /*
641 * Enrest creates a BVI with address 10.10.10.10/24
642 */
643 route::prefix_t pfx_10("10.10.10.10", 24);
644
645 const std::string bvi_name = "bvi1";
646 interface itf(bvi_name,
647 interface::type_t::BVI,
648 interface::admin_state_t::UP);
649 HW::item<handle_t> hw_ifh(4, rc_t::OK);
650 HW::item<route::prefix_t> hw_pfx_10(pfx_10, rc_t::OK);
651
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700652 ADD_EXPECT(interface_cmds::loopback_create_cmd(hw_ifh, bvi_name));
653 ADD_EXPECT(interface_cmds::set_tag(hw_ifh, bvi_name));
654 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up, hw_ifh));
Neale Ranns812ed392017-10-16 04:20:13 -0700655 TRY_CHECK_RC(OM::write(ernest, itf));
656
657 l3 = new l3_binding(itf, pfx_10);
658 HW::item<bool> hw_l3_bind(true, rc_t::OK);
659 HW::item<bool> hw_l3_unbind(false, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700660 ADD_EXPECT(l3_binding_cmds::bind_cmd(hw_l3_bind, hw_ifh.data(), pfx_10));
Neale Ranns812ed392017-10-16 04:20:13 -0700661 TRY_CHECK_RC(OM::write(ernest, *l3));
662
663 // change the MAC address on the BVI
664 interface itf_new_mac(bvi_name,
665 interface::type_t::BVI,
666 interface::admin_state_t::UP);
667 l2_address_t l2_addr({0,1,2,3,4,5});
668 HW::item<l2_address_t> hw_mac(l2_addr, rc_t::OK);
669 itf_new_mac.set(l2_addr);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700670 ADD_EXPECT(interface_cmds::set_mac_cmd(hw_mac, hw_ifh));
Neale Ranns812ed392017-10-16 04:20:13 -0700671 TRY_CHECK_RC(OM::write(ernest, itf_new_mac));
672
673 // create/write the interface to the OM again but with an unset MAC
674 // this should not generate a MAC address update
675 TRY_CHECK_RC(OM::write(ernest, itf));
676
677 // change the MAC address on the BVI - again
678 interface itf_new_mac2(bvi_name,
679 interface::type_t::BVI,
680 interface::admin_state_t::UP);
681 l2_address_t l2_addr2({0,1,2,3,4,6});
682 HW::item<l2_address_t> hw_mac2(l2_addr2, rc_t::OK);
683 itf_new_mac2.set(l2_addr2);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700684 ADD_EXPECT(interface_cmds::set_mac_cmd(hw_mac2, hw_ifh));
Neale Ranns812ed392017-10-16 04:20:13 -0700685 TRY_CHECK_RC(OM::write(ernest, itf_new_mac2));
686
687 delete l3;
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700688 ADD_EXPECT(l3_binding_cmds::unbind_cmd(hw_l3_unbind, hw_ifh.data(), pfx_10));
689 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down, hw_ifh));
690 ADD_EXPECT(interface_cmds::loopback_delete_cmd(hw_ifh));
Neale Ranns812ed392017-10-16 04:20:13 -0700691 TRY_CHECK(OM::remove(ernest));
692
693 /*
694 * Graham creates a BVI with address 10.10.10.10/24 in Routing Domain
695 */
696 route_domain rd(1);
697 HW::item<bool> hw_rd4_create(true, rc_t::OK);
698 HW::item<bool> hw_rd4_delete(false, rc_t::OK);
699 HW::item<bool> hw_rd6_create(true, rc_t::OK);
700 HW::item<bool> hw_rd6_delete(false, rc_t::OK);
701 HW::item<route::table_id_t> hw_rd4_bind(1, rc_t::OK);
702 HW::item<route::table_id_t> hw_rd4_unbind(route::DEFAULT_TABLE, rc_t::OK);
703 HW::item<route::table_id_t> hw_rd6_bind(1, rc_t::OK);
704 HW::item<route::table_id_t> hw_rd6_unbind(route::DEFAULT_TABLE, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700705 ADD_EXPECT(route_domain_cmds::create_cmd(hw_rd4_create, l3_proto_t::IPV4, 1));
706 ADD_EXPECT(route_domain_cmds::create_cmd(hw_rd6_create, l3_proto_t::IPV6, 1));
Neale Ranns812ed392017-10-16 04:20:13 -0700707 TRY_CHECK_RC(OM::write(graham, rd));
708
709 const std::string bvi2_name = "bvi2";
710 interface *itf2 = new interface(bvi2_name,
711 interface::type_t::BVI,
712 interface::admin_state_t::UP,
713 rd);
714 HW::item<handle_t> hw_ifh2(5, rc_t::OK);
715
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700716 ADD_EXPECT(interface_cmds::loopback_create_cmd(hw_ifh2, bvi2_name));
717 ADD_EXPECT(interface_cmds::set_tag(hw_ifh2, bvi2_name));
718 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up, hw_ifh2));
719 ADD_EXPECT(interface_cmds::set_table_cmd(hw_rd4_bind, l3_proto_t::IPV4, hw_ifh2));
720 ADD_EXPECT(interface_cmds::set_table_cmd(hw_rd6_bind, l3_proto_t::IPV6, hw_ifh2));
Neale Ranns812ed392017-10-16 04:20:13 -0700721
722 TRY_CHECK_RC(OM::write(graham, *itf2));
723
724 l3 = new l3_binding(*itf2, pfx_10);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700725 ADD_EXPECT(l3_binding_cmds::bind_cmd(hw_l3_bind, hw_ifh2.data(), pfx_10));
Neale Ranns812ed392017-10-16 04:20:13 -0700726 TRY_CHECK_RC(OM::write(graham, *l3));
727
728 delete l3;
729 delete itf2;
730
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700731 ADD_EXPECT(l3_binding_cmds::unbind_cmd(hw_l3_unbind, hw_ifh2.data(), pfx_10));
732 ADD_EXPECT(interface_cmds::set_table_cmd(hw_rd4_unbind, l3_proto_t::IPV4, hw_ifh2));
733 ADD_EXPECT(interface_cmds::set_table_cmd(hw_rd6_unbind, l3_proto_t::IPV6, hw_ifh2));
734 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down, hw_ifh2));
735 ADD_EXPECT(interface_cmds::loopback_delete_cmd(hw_ifh2));
736 ADD_EXPECT(route_domain_cmds::delete_cmd(hw_rd4_delete, l3_proto_t::IPV4, 1));
737 ADD_EXPECT(route_domain_cmds::delete_cmd(hw_rd6_delete, l3_proto_t::IPV6, 1));
Neale Ranns812ed392017-10-16 04:20:13 -0700738 TRY_CHECK(OM::remove(graham));
739}
740
741BOOST_AUTO_TEST_CASE(test_bridge) {
742 VppInit vi;
743 const std::string franz = "FranzKafka";
744 const std::string dante = "Dante";
Mohsin Kazmie2e9ce52017-12-01 15:12:57 +0100745 const std::string jkr = "jkrowling";
Neale Ranns812ed392017-10-16 04:20:13 -0700746 rc_t rc = rc_t::OK;
747
748 /*
749 * Franz creates an interface, Bridge-domain, then binds the two
750 */
751
752 // interface create
753 std::string itf1_name = "afpacket1";
754 interface itf1(itf1_name,
755 interface::type_t::AFPACKET,
756 interface::admin_state_t::UP);
757
758 HW::item<handle_t> hw_ifh(3, rc_t::OK);
759 HW::item<interface::admin_state_t> hw_as_up(interface::admin_state_t::UP,
760 rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700761 ADD_EXPECT(interface_cmds::af_packet_create_cmd(hw_ifh, itf1_name));
762 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up, hw_ifh));
Neale Ranns812ed392017-10-16 04:20:13 -0700763
764 TRY_CHECK_RC(OM::write(franz, itf1));
765
766 // bridge-domain create
767 bridge_domain bd1(33);
768
769 HW::item<uint32_t> hw_bd(33, rc_t::OK);
Neale Ranns10e7a9f2017-11-14 08:40:43 -0800770 ADD_EXPECT(bridge_domain_cmds::create_cmd(hw_bd, bridge_domain::learning_mode_t::ON));
Neale Ranns812ed392017-10-16 04:20:13 -0700771
772 TRY_CHECK_RC(OM::write(franz, bd1));
773
774 // L2-interface create and bind
775 // this needs to be delete'd before the flush below, since it too maintains
776 // references to the BD and Interface
777 l2_binding *l2itf = new l2_binding(itf1, bd1);
778 HW::item<bool> hw_l2_bind(true, rc_t::OK);
779
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700780 ADD_EXPECT(l2_binding_cmds::bind_cmd(hw_l2_bind, hw_ifh.data(), hw_bd.data(), false));
Neale Ranns812ed392017-10-16 04:20:13 -0700781 TRY_CHECK_RC(OM::write(franz, *l2itf));
782
783 /*
784 * Dante adds an interface to the same BD
785 */
786 std::string itf2_name = "afpacket2";
787 interface itf2(itf2_name,
788 interface::type_t::AFPACKET,
789 interface::admin_state_t::UP);
790
791 HW::item<handle_t> hw_ifh2(4, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700792 ADD_EXPECT(interface_cmds::af_packet_create_cmd(hw_ifh2, itf2_name));
793 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up, hw_ifh2));
Neale Ranns812ed392017-10-16 04:20:13 -0700794 TRY_CHECK_RC(OM::write(dante, itf2));
795
796 // BD add is a no-op since it exists
797 TRY_CHECK_RC(OM::write(dante, bd1));
798
799 l2_binding *l2itf2 = new l2_binding(itf2, bd1);
800 HW::item<l2_binding::l2_vtr_op_t> hw_set_vtr(l2_binding::l2_vtr_op_t::L2_VTR_POP_1, rc_t::OK);
801 l2itf2->set(l2_binding::l2_vtr_op_t::L2_VTR_POP_1, 68);
802
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700803 ADD_EXPECT(l2_binding_cmds::bind_cmd(hw_l2_bind, hw_ifh2.data(), hw_bd.data(), false));
804 ADD_EXPECT(l2_binding_cmds::set_vtr_op_cmd(hw_set_vtr, hw_ifh2.data(), 68));
Neale Ranns812ed392017-10-16 04:20:13 -0700805 TRY_CHECK_RC(OM::write(dante, *l2itf2));
806
807 // Add some static entries to the bridge-domain
808 HW::item<bool> hw_be1(true, rc_t::OK);
809 mac_address_t mac1({0,1,2,3,4,5});
810 bridge_domain_entry *be1 = new bridge_domain_entry(bd1, mac1, itf2);
Mohsin Kazmie2e9ce52017-12-01 15:12:57 +0100811 ADD_EXPECT(bridge_domain_entry_cmds::create_cmd(hw_be1, mac1, bd1.id(), hw_ifh2.data(),
812 false));
Neale Ranns812ed392017-10-16 04:20:13 -0700813 TRY_CHECK_RC(OM::write(dante, *be1));
814
815 // Add some entries to the bridge-domain ARP termination table
816 HW::item<bool> hw_bea1(true, rc_t::OK);
817 boost::asio::ip::address ip1 = boost::asio::ip::address::from_string("10.10.10.10");
818
Neale Rannsfd920602017-11-23 12:15:00 -0800819 bridge_domain_arp_entry *bea1 = new bridge_domain_arp_entry(bd1, ip1, mac1);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700820 ADD_EXPECT(bridge_domain_arp_entry_cmds::create_cmd(hw_be1, bd1.id(), mac1, ip1));
Neale Ranns812ed392017-10-16 04:20:13 -0700821 TRY_CHECK_RC(OM::write(dante, *bea1));
822
823 // flush Franz's state
824 delete l2itf;
825 HW::item<interface::admin_state_t> hw_as_down(interface::admin_state_t::DOWN,
826 rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700827 ADD_EXPECT(l2_binding_cmds::unbind_cmd(hw_l2_bind, hw_ifh.data(), hw_bd.data(), false));
828 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down, hw_ifh));
829 ADD_EXPECT(interface_cmds::af_packet_delete_cmd(hw_ifh, itf1_name));
Neale Ranns812ed392017-10-16 04:20:13 -0700830 TRY_CHECK(OM::remove(franz));
831
832 // flush Dante's state - the order the interface and BD are deleted
833 // is an uncontrollable artifact of the C++ object destruction.
834 delete l2itf2;
835 delete be1;
836 delete bea1;
837 STRICT_ORDER_OFF();
Mohsin Kazmie2e9ce52017-12-01 15:12:57 +0100838 ADD_EXPECT(bridge_domain_arp_entry_cmds::delete_cmd(hw_be1, bd1.id(), mac1, ip1));
839 ADD_EXPECT(bridge_domain_entry_cmds::delete_cmd(hw_be1, mac1, bd1.id(), false));
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700840 ADD_EXPECT(l2_binding_cmds::unbind_cmd(hw_l2_bind, hw_ifh2.data(), hw_bd.data(), false));
Mohsin Kazmie2e9ce52017-12-01 15:12:57 +0100841
842 ADD_EXPECT(bridge_domain_cmds::delete_cmd(hw_bd));
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700843 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down, hw_ifh2));
844 ADD_EXPECT(interface_cmds::af_packet_delete_cmd(hw_ifh2, itf2_name));
Neale Ranns812ed392017-10-16 04:20:13 -0700845 TRY_CHECK(OM::remove(dante));
Mohsin Kazmie2e9ce52017-12-01 15:12:57 +0100846
847 // test the BVI entry in l2fib
848 bridge_domain bd2(99);
849
850 HW::item<uint32_t> hw_bd2(99, rc_t::OK);
851 ADD_EXPECT(bridge_domain_cmds::create_cmd(hw_bd2, bridge_domain::learning_mode_t::ON));
852
853 TRY_CHECK_RC(OM::write(jkr, bd2));
854
855 std::string itf3_name = "bvi";
856 interface itf3(itf3_name,
857 interface::type_t::BVI,
858 interface::admin_state_t::UP);
859
860 HW::item<handle_t> hw_ifh3(5, rc_t::OK);
861 ADD_EXPECT(interface_cmds::loopback_create_cmd(hw_ifh3, itf3_name));
862 ADD_EXPECT(interface_cmds::set_tag(hw_ifh3, itf3_name));
863 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up, hw_ifh3));
864 TRY_CHECK_RC(OM::write(jkr, itf3));
865
866 l2_binding *l2itf3 = new l2_binding(itf3, bd2);
867 ADD_EXPECT(l2_binding_cmds::bind_cmd(hw_l2_bind, hw_ifh3.data(), hw_bd2.data(), true));
868 TRY_CHECK_RC(OM::write(jkr, *l2itf3));
869
870 HW::item<bool> hw_be2(true, rc_t::OK);
871 mac_address_t mac2({0,1,2,3,4,5});
872 bridge_domain_entry *be2 = new bridge_domain_entry(bd2, mac2, itf3);
873 ADD_EXPECT(bridge_domain_entry_cmds::create_cmd(hw_be2, mac2, bd2.id(), hw_ifh3.data(), true));
874 TRY_CHECK_RC(OM::write(jkr, *be2));
875
876 delete l2itf3;
877 delete be2;
878 STRICT_ORDER_OFF();
879 ADD_EXPECT(l2_binding_cmds::unbind_cmd(hw_l2_bind, hw_ifh3.data(), hw_bd2.data(), true));
880 ADD_EXPECT(bridge_domain_entry_cmds::delete_cmd(hw_be2, mac2, bd2.id(), true));
881 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down, hw_ifh3));
882 ADD_EXPECT(interface_cmds::loopback_delete_cmd(hw_ifh3));
883 ADD_EXPECT(bridge_domain_cmds::delete_cmd(hw_bd2));
884 TRY_CHECK(OM::remove(jkr));
Neale Ranns812ed392017-10-16 04:20:13 -0700885}
886
887BOOST_AUTO_TEST_CASE(test_vxlan) {
888 VppInit vi;
889 const std::string franz = "FranzKafka";
890 rc_t rc = rc_t::OK;
891
892 /*
893 * Franz creates an interface, Bridge-domain, then binds the two
894 */
895
896 // VXLAN create
897 vxlan_tunnel::endpoint_t ep(boost::asio::ip::address::from_string("10.10.10.10"),
898 boost::asio::ip::address::from_string("10.10.10.11"),
899 322);
900
901 vxlan_tunnel vxt(ep.src, ep.dst, ep.vni);
902
903 HW::item<handle_t> hw_vxt(3, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700904 ADD_EXPECT(vxlan_tunnel_cmds::create_cmd(hw_vxt, "don't-care", ep));
Neale Ranns812ed392017-10-16 04:20:13 -0700905
906 TRY_CHECK_RC(OM::write(franz, vxt));
907
908 // bridge-domain create
Neale Ranns10e7a9f2017-11-14 08:40:43 -0800909 bridge_domain bd1(33, bridge_domain::learning_mode_t::OFF);
Neale Ranns812ed392017-10-16 04:20:13 -0700910
911 HW::item<uint32_t> hw_bd(33, rc_t::OK);
Neale Ranns10e7a9f2017-11-14 08:40:43 -0800912 ADD_EXPECT(bridge_domain_cmds::create_cmd(hw_bd, bridge_domain::learning_mode_t::OFF));
Neale Ranns812ed392017-10-16 04:20:13 -0700913
914 TRY_CHECK_RC(OM::write(franz, bd1));
915
916 // L2-interface create and bind
917 // this needs to be delete'd before the flush below, since it too maintains
918 // references to the BD and Interface
919 l2_binding *l2itf = new l2_binding(vxt, bd1);
920 HW::item<bool> hw_l2_bind(true, rc_t::OK);
921
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700922 ADD_EXPECT(l2_binding_cmds::bind_cmd(hw_l2_bind, hw_vxt.data(), hw_bd.data(), false));
Neale Ranns812ed392017-10-16 04:20:13 -0700923 TRY_CHECK_RC(OM::write(franz, *l2itf));
924
925 // flush Franz's state
926 delete l2itf;
927 HW::item<handle_t> hw_vxtdel(3, rc_t::NOOP);
928 STRICT_ORDER_OFF();
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700929 ADD_EXPECT(l2_binding_cmds::unbind_cmd(hw_l2_bind, hw_vxt.data(), hw_bd.data(), false));
930 ADD_EXPECT(bridge_domain_cmds::delete_cmd(hw_bd));
931 ADD_EXPECT(vxlan_tunnel_cmds::delete_cmd(hw_vxtdel, ep));
Neale Ranns812ed392017-10-16 04:20:13 -0700932 TRY_CHECK(OM::remove(franz));
933}
934
935BOOST_AUTO_TEST_CASE(test_vlan) {
936 VppInit vi;
937 const std::string noam = "NoamChomsky";
938 rc_t rc = rc_t::OK;
939
940 std::string itf1_name = "host1";
941 interface itf1(itf1_name,
942 interface::type_t::AFPACKET,
943 interface::admin_state_t::UP);
944
945 HW::item<handle_t> hw_ifh(2, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700946 ADD_EXPECT(interface_cmds::af_packet_create_cmd(hw_ifh, itf1_name));
Neale Ranns812ed392017-10-16 04:20:13 -0700947
948 HW::item<interface::admin_state_t> hw_as_up(interface::admin_state_t::UP, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700949 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up, hw_ifh));
Neale Ranns812ed392017-10-16 04:20:13 -0700950
951 TRY_CHECK_RC(OM::write(noam, itf1));
952
953 sub_interface *vl33 = new sub_interface(itf1,
954 interface::admin_state_t::UP,
955 33);
956
957 HW::item<handle_t> hw_vl33(3, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700958 ADD_EXPECT(sub_interface_cmds::create_cmd(hw_vl33, itf1_name+".33", hw_ifh.data(), 33));
959 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up, hw_vl33));
Neale Ranns812ed392017-10-16 04:20:13 -0700960
961 TRY_CHECK_RC(OM::write(noam, *vl33));
962
963 delete vl33;
964 HW::item<interface::admin_state_t> hw_as_down(interface::admin_state_t::DOWN, rc_t::OK);
965 HW::item<handle_t> hw_vl33_down(3, rc_t::NOOP);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700966 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down, hw_vl33));
967 ADD_EXPECT(sub_interface_cmds::delete_cmd(hw_vl33_down));
968 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down, hw_ifh));
969 ADD_EXPECT(interface_cmds::af_packet_delete_cmd(hw_ifh, itf1_name));
Neale Ranns812ed392017-10-16 04:20:13 -0700970
971 TRY_CHECK(OM::remove(noam));
972}
973
974BOOST_AUTO_TEST_CASE(test_acl) {
975 VppInit vi;
976 const std::string fyodor = "FyodorDostoyevsky";
977 const std::string leo = "LeoTolstoy";
978 rc_t rc = rc_t::OK;
979
980 /*
981 * Fyodor adds an ACL in the input direction
982 */
983 std::string itf1_name = "host1";
984 interface itf1(itf1_name,
985 interface::type_t::AFPACKET,
986 interface::admin_state_t::UP);
987 HW::item<handle_t> hw_ifh(2, rc_t::OK);
988 HW::item<interface::admin_state_t> hw_as_up(interface::admin_state_t::UP, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700989 ADD_EXPECT(interface_cmds::af_packet_create_cmd(hw_ifh, itf1_name));
990 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up, hw_ifh));
Neale Ranns812ed392017-10-16 04:20:13 -0700991 TRY_CHECK_RC(OM::write(fyodor, itf1));
992
Mohsin Kazmi49c7f0c2018-02-07 20:20:36 +0100993 ACL::ethertype_rule_t e1(ethertype_t::ARP, direction_t::INPUT);
994 ACL::ethertype_rule_t e2(ethertype_t::ARP, direction_t::OUTPUT);
995 ACL::ethertype_rule_t e3(ethertype_t::IPV4, direction_t::INPUT);
996 ACL::acl_ethertype::ethertype_rules_t l_e = {e1, e2, e3};
997 ACL::acl_ethertype *a_e = new ACL::acl_ethertype(itf1, l_e);
998 HW::item<bool> ae_binding(true, rc_t::OK);
999 ADD_EXPECT(ACL::acl_ethertype_cmds::bind_cmd(ae_binding, hw_ifh.data(), l_e));
1000 TRY_CHECK_RC(OM::write(fyodor, *a_e));
1001
Neale Ranns812ed392017-10-16 04:20:13 -07001002 route::prefix_t src("10.10.10.10", 32);
1003 ACL::l3_rule r1(10, ACL::action_t::PERMIT, src, route::prefix_t::ZERO);
1004 ACL::l3_rule r2(20, ACL::action_t::DENY, route::prefix_t::ZERO, route::prefix_t::ZERO);
1005
1006 std::string acl_name = "acl1";
1007 ACL::l3_list acl1(acl_name);
1008 acl1.insert(r2);
1009 acl1.insert(r1);
1010 ACL::l3_list::rules_t rules = {r1, r2};
1011
1012 HW::item<handle_t> hw_acl(2, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001013 ADD_EXPECT(ACL::list_cmds::l3_update_cmd(hw_acl, acl_name, rules));
Neale Ranns812ed392017-10-16 04:20:13 -07001014 TRY_CHECK_RC(OM::write(fyodor, acl1));
1015
Mohsin Kazmid91d1402018-02-14 15:47:19 +01001016 ACL::l3_rule r3(30, ACL::action_t::PERMIT, route::prefix_t::ZERO, route::prefix_t::ZERO);
1017 ACL::l3_list acl2(acl_name);
1018 acl2.insert(r3);
1019 ACL::l3_list::rules_t rules2 = {r3};
1020 ADD_EXPECT(ACL::list_cmds::l3_update_cmd(hw_acl, acl_name, rules2));
1021 TRY_CHECK_RC(OM::write(fyodor, acl2));
1022
Neale Ranns812ed392017-10-16 04:20:13 -07001023 ACL::l3_binding *l3b = new ACL::l3_binding(direction_t::INPUT, itf1, acl1);
1024 HW::item<bool> hw_binding(true, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001025 ADD_EXPECT(ACL::binding_cmds::l3_bind_cmd(hw_binding, direction_t::INPUT,
1026 hw_ifh.data(), hw_acl.data()));
Neale Ranns812ed392017-10-16 04:20:13 -07001027 TRY_CHECK_RC(OM::write(fyodor, *l3b));
1028
1029 /**
1030 * Leo adds an L2 ACL in the output direction
1031 */
1032 TRY_CHECK_RC(OM::write(leo, itf1));
1033
1034 std::string l2_acl_name = "l2_acl1";
1035 mac_address_t mac({0x0, 0x0, 0x1, 0x2, 0x3, 0x4});
1036 mac_address_t mac_mask({0xff, 0xff, 0xff, 0x0, 0x0, 0x0});
1037 ACL::l2_rule l2_r1(10, ACL::action_t::PERMIT, src, mac, mac_mask);
1038 ACL::l2_rule l2_r2(20, ACL::action_t::DENY, src, {}, {});
1039
1040 ACL::l2_list l2_acl(l2_acl_name);
1041 l2_acl.insert(l2_r2);
1042 l2_acl.insert(l2_r1);
1043
1044 ACL::l2_list::rules_t l2_rules = {l2_r1, l2_r2};
1045
1046 HW::item<handle_t> l2_hw_acl(3, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001047 ADD_EXPECT(ACL::list_cmds::l2_update_cmd(l2_hw_acl, l2_acl_name, l2_rules));
Neale Ranns812ed392017-10-16 04:20:13 -07001048 TRY_CHECK_RC(OM::write(leo, l2_acl));
1049
1050 ACL::l2_binding *l2b = new ACL::l2_binding(direction_t::OUTPUT, itf1, l2_acl);
1051 HW::item<bool> l2_hw_binding(true, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001052 ADD_EXPECT(ACL::binding_cmds::l2_bind_cmd(l2_hw_binding, direction_t::OUTPUT,
Neale Ranns812ed392017-10-16 04:20:13 -07001053 hw_ifh.data(), l2_hw_acl.data()));
1054 TRY_CHECK_RC(OM::write(leo, *l2b));
1055
1056 delete l2b;
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001057 ADD_EXPECT(ACL::binding_cmds::l2_unbind_cmd(l2_hw_binding, direction_t::OUTPUT,
1058 hw_ifh.data(), l2_hw_acl.data()));
1059 ADD_EXPECT(ACL::list_cmds::l2_delete_cmd(l2_hw_acl));
Neale Ranns812ed392017-10-16 04:20:13 -07001060 TRY_CHECK(OM::remove(leo));
1061
1062 delete l3b;
Mohsin Kazmi49c7f0c2018-02-07 20:20:36 +01001063 delete a_e;
Neale Ranns812ed392017-10-16 04:20:13 -07001064 HW::item<interface::admin_state_t> hw_as_down(interface::admin_state_t::DOWN,
1065 rc_t::OK);
1066 STRICT_ORDER_OFF();
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001067 ADD_EXPECT(ACL::binding_cmds::l3_unbind_cmd(hw_binding, direction_t::INPUT,
Neale Ranns812ed392017-10-16 04:20:13 -07001068 hw_ifh.data(), hw_acl.data()));
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001069 ADD_EXPECT(ACL::list_cmds::l3_delete_cmd(hw_acl));
1070 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down, hw_ifh));
1071 ADD_EXPECT(interface_cmds::af_packet_delete_cmd(hw_ifh, itf1_name));
Neale Ranns812ed392017-10-16 04:20:13 -07001072
1073 TRY_CHECK(OM::remove(fyodor));
1074}
1075
1076BOOST_AUTO_TEST_CASE(test_arp_proxy) {
1077 VppInit vi;
1078 const std::string kurt = "KurtVonnegut";
1079 rc_t rc = rc_t::OK;
1080
1081 asio::ip::address_v4 low = asio::ip::address_v4::from_string("10.0.0.0");
1082 asio::ip::address_v4 high = asio::ip::address_v4::from_string("10.0.0.255");
1083
1084 arp_proxy_config ap(low, high);
1085 HW::item<bool> hw_ap_cfg(true, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001086 ADD_EXPECT(arp_proxy_config_cmds::config_cmd(hw_ap_cfg, low, high));
Neale Ranns812ed392017-10-16 04:20:13 -07001087 TRY_CHECK_RC(OM::write(kurt, ap));
1088
1089 std::string itf3_name = "host3";
1090 interface itf3(itf3_name,
1091 interface::type_t::AFPACKET,
1092 interface::admin_state_t::UP);
1093 HW::item<handle_t> hw_ifh(2, rc_t::OK);
1094 HW::item<interface::admin_state_t> hw_as_up(interface::admin_state_t::UP, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001095 ADD_EXPECT(interface_cmds::af_packet_create_cmd(hw_ifh, itf3_name));
1096 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up, hw_ifh));
Neale Ranns812ed392017-10-16 04:20:13 -07001097 TRY_CHECK_RC(OM::write(kurt, itf3));
1098
1099 arp_proxy_binding *apb = new arp_proxy_binding(itf3, ap);
1100 HW::item<bool> hw_binding(true, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001101 ADD_EXPECT(arp_proxy_binding_cmds::bind_cmd(hw_binding, hw_ifh.data()));
Neale Ranns812ed392017-10-16 04:20:13 -07001102 TRY_CHECK_RC(OM::write(kurt, *apb));
1103
1104 delete apb;
1105
1106 HW::item<interface::admin_state_t> hw_as_down(interface::admin_state_t::DOWN,
1107 rc_t::OK);
1108 STRICT_ORDER_OFF();
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001109 ADD_EXPECT(arp_proxy_binding_cmds::unbind_cmd(hw_binding, hw_ifh.data()));
1110 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down, hw_ifh));
1111 ADD_EXPECT(interface_cmds::af_packet_delete_cmd(hw_ifh, itf3_name));
1112 ADD_EXPECT(arp_proxy_config_cmds::unconfig_cmd(hw_ap_cfg, low, high));
Neale Ranns812ed392017-10-16 04:20:13 -07001113
1114 TRY_CHECK(OM::remove(kurt));
1115}
1116
1117BOOST_AUTO_TEST_CASE(test_ip_unnumbered) {
1118 VppInit vi;
1119 const std::string eric = "EricAmbler";
1120 rc_t rc = rc_t::OK;
1121
1122 /*
1123 * Interface 1 has the L3 address
1124 */
1125 std::string itf1_name = "host1";
1126 interface itf1(itf1_name,
1127 interface::type_t::AFPACKET,
1128 interface::admin_state_t::UP);
1129 HW::item<handle_t> hw_ifh(2, rc_t::OK);
1130 HW::item<interface::admin_state_t> hw_as_up(interface::admin_state_t::UP, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001131 ADD_EXPECT(interface_cmds::af_packet_create_cmd(hw_ifh, itf1_name));
1132 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up, hw_ifh));
Neale Ranns812ed392017-10-16 04:20:13 -07001133 TRY_CHECK_RC(OM::write(eric, itf1));
1134
1135 route::prefix_t pfx_10("10.10.10.10", 24);
1136 l3_binding *l3 = new l3_binding(itf1, pfx_10);
1137 HW::item<bool> hw_l3_bind(true, rc_t::OK);
1138 HW::item<bool> hw_l3_unbind(false, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001139 ADD_EXPECT(l3_binding_cmds::bind_cmd(hw_l3_bind, hw_ifh.data(), pfx_10));
Neale Ranns812ed392017-10-16 04:20:13 -07001140 TRY_CHECK_RC(OM::write(eric, *l3));
1141
1142 /*
1143 * Interface 2 is unnumbered
1144 */
1145 std::string itf2_name = "host2";
1146 interface itf2(itf2_name,
1147 interface::type_t::AFPACKET,
1148 interface::admin_state_t::UP);
1149
1150 HW::item<handle_t> hw_ifh2(4, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001151 ADD_EXPECT(interface_cmds::af_packet_create_cmd(hw_ifh2, itf2_name));
1152 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up, hw_ifh2));
Neale Ranns812ed392017-10-16 04:20:13 -07001153 TRY_CHECK_RC(OM::write(eric, itf2));
1154
1155 ip_unnumbered *ipun = new ip_unnumbered(itf2, itf1);
1156 HW::item<bool> hw_ip_cfg(true, rc_t::OK);
1157 HW::item<bool> hw_ip_uncfg(false, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001158 ADD_EXPECT(ip_unnumbered_cmds::config_cmd(hw_ip_cfg, hw_ifh2.data(), hw_ifh.data()));
Neale Ranns812ed392017-10-16 04:20:13 -07001159 TRY_CHECK_RC(OM::write(eric, *ipun));
1160
1161 delete l3;
1162 delete ipun;
1163
1164 HW::item<interface::admin_state_t> hw_as_down(interface::admin_state_t::DOWN, rc_t::OK);
1165 STRICT_ORDER_OFF();
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001166 ADD_EXPECT(ip_unnumbered_cmds::unconfig_cmd(hw_ip_uncfg, hw_ifh2.data(), hw_ifh.data()));
1167 ADD_EXPECT(l3_binding_cmds::unbind_cmd(hw_l3_unbind, hw_ifh.data(), pfx_10));
1168 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down, hw_ifh2));
1169 ADD_EXPECT(interface_cmds::af_packet_delete_cmd(hw_ifh2, itf2_name));
1170 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down, hw_ifh));
1171 ADD_EXPECT(interface_cmds::af_packet_delete_cmd(hw_ifh, itf1_name));
Neale Ranns812ed392017-10-16 04:20:13 -07001172
1173 TRY_CHECK(OM::remove(eric));
1174}
1175
1176BOOST_AUTO_TEST_CASE(test_ip6nd) {
1177 VppInit vi;
1178 const std::string paulo = "PauloCoelho";
1179 rc_t rc = rc_t::OK;
1180
1181 /*
1182 * ra config
1183 */
1184 std::string itf_name = "host_ip6nd";
1185 interface itf(itf_name,
1186 interface::type_t::AFPACKET,
1187 interface::admin_state_t::UP);
1188 HW::item<handle_t> hw_ifh(3, rc_t::OK);
1189 HW::item<interface::admin_state_t> hw_as_up(interface::admin_state_t::UP, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001190 ADD_EXPECT(interface_cmds::af_packet_create_cmd(hw_ifh, itf_name));
1191 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up, hw_ifh));
Neale Ranns812ed392017-10-16 04:20:13 -07001192 TRY_CHECK_RC(OM::write(paulo, itf));
1193
1194 route::prefix_t pfx_10("fd8f:69d8:c12c:ca62::3", 128);
1195 l3_binding *l3 = new l3_binding(itf, pfx_10);
1196 HW::item<bool> hw_l3_bind(true, rc_t::OK);
1197 HW::item<bool> hw_l3_unbind(false, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001198 ADD_EXPECT(l3_binding_cmds::bind_cmd(hw_l3_bind, hw_ifh.data(), pfx_10));
Neale Ranns812ed392017-10-16 04:20:13 -07001199 TRY_CHECK_RC(OM::write(paulo, *l3));
1200
1201 ra_config ra(0, 1, 0, 4);
1202 ip6nd_ra_config *ip6ra = new ip6nd_ra_config(itf, ra);
1203 HW::item<bool> hw_ip6nd_ra_config_config(true, rc_t::OK);
1204 HW::item<bool> hw_ip6nd_ra_config_unconfig(false, rc_t::OK);
1205 ADD_EXPECT(ip6nd_ra_config::config_cmd(hw_ip6nd_ra_config_config, hw_ifh.data(), ra));
1206 TRY_CHECK_RC(OM::write(paulo, *ip6ra));
1207
1208 /*
1209 * ra prefix
1210 */
1211 ra_prefix ra_pfx(pfx_10, 0, 0, 2592000, 604800);
1212 ip6nd_ra_prefix *ip6pfx = new ip6nd_ra_prefix(itf, ra_pfx);
1213 HW::item<bool> hw_ip6nd_ra_prefix_config(true, rc_t::OK);
1214 HW::item<bool> hw_ip6nd_ra_prefix_unconfig(false, rc_t::OK);
1215 ADD_EXPECT(ip6nd_ra_prefix::config_cmd(hw_ip6nd_ra_prefix_config, hw_ifh.data(), ra_pfx));
1216 TRY_CHECK_RC(OM::write(paulo, *ip6pfx));
1217
1218 delete ip6pfx;
1219
1220 ADD_EXPECT(ip6nd_ra_prefix::unconfig_cmd(hw_ip6nd_ra_prefix_unconfig, hw_ifh.data(), ra_pfx));
1221
1222 delete ip6ra;
1223 delete l3;
1224
1225 HW::item<interface::admin_state_t> hw_as_down(interface::admin_state_t::DOWN, rc_t::OK);
1226
1227 STRICT_ORDER_OFF();
1228 ADD_EXPECT(ip6nd_ra_config::unconfig_cmd(hw_ip6nd_ra_config_unconfig, hw_ifh.data(), ra));
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001229 ADD_EXPECT(l3_binding_cmds::unbind_cmd(hw_l3_unbind, hw_ifh.data(), pfx_10));
1230 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down, hw_ifh));
1231 ADD_EXPECT(interface_cmds::af_packet_delete_cmd(hw_ifh, itf_name));
Neale Ranns812ed392017-10-16 04:20:13 -07001232
1233 TRY_CHECK(OM::remove(paulo));
1234}
1235
1236BOOST_AUTO_TEST_CASE(test_interface_span) {
1237 VppInit vi;
1238 const std::string elif = "ElifShafak";
1239 rc_t rc = rc_t::OK;
1240
1241 /*
1242 * Interface 1 to be mirrored
1243 */
1244 std::string itf1_name = "port-from";
1245 interface itf1(itf1_name,
1246 interface::type_t::AFPACKET,
1247 interface::admin_state_t::UP);
1248 HW::item<handle_t> hw_ifh(2, rc_t::OK);
1249 HW::item<interface::admin_state_t> hw_as_up(interface::admin_state_t::UP, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001250 ADD_EXPECT(interface_cmds::af_packet_create_cmd(hw_ifh, itf1_name));
1251 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up, hw_ifh));
Neale Ranns812ed392017-10-16 04:20:13 -07001252 TRY_CHECK_RC(OM::write(elif, itf1));
1253
1254 /*
1255 * Interface 2 where traffic is mirrored
1256 */
1257 std::string itf2_name = "port-to";
1258 interface itf2(itf2_name,
1259 interface::type_t::AFPACKET,
1260 interface::admin_state_t::UP);
1261
1262 HW::item<handle_t> hw_ifh2(4, rc_t::OK);
1263 HW::item<interface::admin_state_t> hw_as_up2(interface::admin_state_t::UP, rc_t::OK);
1264
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001265 ADD_EXPECT(interface_cmds::af_packet_create_cmd(hw_ifh2, itf2_name));
1266 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up2, hw_ifh2));
Neale Ranns812ed392017-10-16 04:20:13 -07001267 TRY_CHECK_RC(OM::write(elif, itf2));
1268
1269 interface_span *itf_span = new interface_span(itf1, itf2, interface_span::state_t::TX_RX_ENABLED);
1270 HW::item<bool> hw_is_cfg(true, rc_t::OK);
1271 HW::item<bool> hw_is_uncfg(true, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001272 ADD_EXPECT(interface_span_cmds::config_cmd(hw_is_cfg, hw_ifh.data(), hw_ifh2.data(), interface_span::state_t::TX_RX_ENABLED));
Neale Ranns812ed392017-10-16 04:20:13 -07001273 TRY_CHECK_RC(OM::write(elif, *itf_span));
1274
1275 HW::item<interface::admin_state_t> hw_as_down(interface::admin_state_t::DOWN, rc_t::OK);
1276 HW::item<interface::admin_state_t> hw_as_down2(interface::admin_state_t::DOWN, rc_t::OK);
1277
1278 delete itf_span;
1279 STRICT_ORDER_OFF();
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001280 ADD_EXPECT(interface_span_cmds::unconfig_cmd(hw_is_uncfg, hw_ifh.data(), hw_ifh2.data()));
1281 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down, hw_ifh));
1282 ADD_EXPECT(interface_cmds::af_packet_delete_cmd(hw_ifh, itf1_name));
1283 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down2, hw_ifh2));
1284 ADD_EXPECT(interface_cmds::af_packet_delete_cmd(hw_ifh2, itf2_name));
Neale Ranns812ed392017-10-16 04:20:13 -07001285
1286 TRY_CHECK(OM::remove(elif));
1287}
1288
1289BOOST_AUTO_TEST_CASE(test_routing) {
1290 VppInit vi;
1291 const std::string ian = "IanFleming";
1292 rc_t rc = rc_t::OK;
1293
1294 /*
1295 * non-default route domain
1296 */
1297 route_domain rd4(1);
1298 HW::item<bool> hw_rd4_create(true, rc_t::OK);
1299 HW::item<bool> hw_rd4_delete(false, rc_t::OK);
1300 HW::item<bool> hw_rd6_create(true, rc_t::OK);
1301 HW::item<bool> hw_rd6_delete(false, rc_t::OK);
1302 HW::item<route::table_id_t> hw_rd4_bind(1, rc_t::OK);
1303 HW::item<route::table_id_t> hw_rd4_unbind(route::DEFAULT_TABLE, rc_t::OK);
1304 HW::item<route::table_id_t> hw_rd6_bind(1, rc_t::OK);
1305 HW::item<route::table_id_t> hw_rd7_unbind(route::DEFAULT_TABLE, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001306 ADD_EXPECT(route_domain_cmds::create_cmd(hw_rd4_create, l3_proto_t::IPV4, 1));
1307 ADD_EXPECT(route_domain_cmds::create_cmd(hw_rd6_create, l3_proto_t::IPV6, 1));
Neale Ranns812ed392017-10-16 04:20:13 -07001308 TRY_CHECK_RC(OM::write(ian, rd4));
1309
1310 /*
1311 * a couple of interfaces
1312 */
1313 std::string itf1_name = "af1";
1314 interface itf1(itf1_name,
1315 interface::type_t::AFPACKET,
1316 interface::admin_state_t::UP);
1317 HW::item<handle_t> hw_ifh(2, rc_t::OK);
1318 HW::item<interface::admin_state_t> hw_as_up(interface::admin_state_t::UP, rc_t::OK);
1319 HW::item<interface::admin_state_t> hw_as_down(interface::admin_state_t::DOWN, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001320 ADD_EXPECT(interface_cmds::af_packet_create_cmd(hw_ifh, itf1_name));
1321 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up, hw_ifh));
Neale Ranns812ed392017-10-16 04:20:13 -07001322 TRY_CHECK_RC(OM::write(ian, itf1));
1323
1324 std::string itf2_name = "af2";
1325 interface *itf2 = new interface(itf2_name,
1326 interface::type_t::AFPACKET,
1327 interface::admin_state_t::UP,
1328 rd4);
1329
1330 HW::item<handle_t> hw_ifh2(4, rc_t::OK);
1331 HW::item<interface::admin_state_t> hw_as_up2(interface::admin_state_t::UP, rc_t::OK);
1332 HW::item<interface::admin_state_t> hw_as_down2(interface::admin_state_t::DOWN, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001333 ADD_EXPECT(interface_cmds::af_packet_create_cmd(hw_ifh2, itf2_name));
1334 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up2, hw_ifh2));
1335 ADD_EXPECT(interface_cmds::set_table_cmd(hw_rd4_bind, l3_proto_t::IPV4, hw_ifh2));
1336 ADD_EXPECT(interface_cmds::set_table_cmd(hw_rd6_bind, l3_proto_t::IPV6, hw_ifh2));
Neale Ranns812ed392017-10-16 04:20:13 -07001337 TRY_CHECK_RC(OM::write(ian, *itf2));
1338
1339 /*
1340 * prefix on each interface
1341 */
1342 route::prefix_t pfx_10("10.10.10.10", 24);
1343 l3_binding *l3_10 = new l3_binding(itf1, pfx_10);
1344 HW::item<bool> hw_l3_10_bind(true, rc_t::OK);
1345 HW::item<bool> hw_l3_10_unbind(false, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001346 ADD_EXPECT(l3_binding_cmds::bind_cmd(hw_l3_10_bind, hw_ifh.data(), pfx_10));
Neale Ranns812ed392017-10-16 04:20:13 -07001347 TRY_CHECK_RC(OM::write(ian, *l3_10));
1348 route::prefix_t pfx_11("11.11.11.11", 24);
1349 l3_binding *l3_11 = new l3_binding(*itf2, pfx_11);
1350 HW::item<bool> hw_l3_11_bind(true, rc_t::OK);
1351 HW::item<bool> hw_l3_11_unbind(false, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001352 ADD_EXPECT(l3_binding_cmds::bind_cmd(hw_l3_11_bind, hw_ifh2.data(), pfx_11));
Neale Ranns812ed392017-10-16 04:20:13 -07001353 TRY_CHECK_RC(OM::write(ian, *l3_11));
1354
1355 /*
1356 * A route via interface 1 in the default table
1357 */
1358 route::prefix_t pfx_5("5.5.5.5", 32);
1359 boost::asio::ip::address nh_10 = boost::asio::ip::address::from_string("10.10.10.11");
1360 route::path *path_10 = new route::path(nh_10, itf1);
1361 route::ip_route *route_5 = new route::ip_route(pfx_5);
1362 route_5->add(*path_10);
1363 HW::item<bool> hw_route_5(true, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001364 ADD_EXPECT(route::ip_route_cmds::update_cmd(hw_route_5, 0, pfx_5, {*path_10}));
Neale Ranns812ed392017-10-16 04:20:13 -07001365 TRY_CHECK_RC(OM::write(ian, *route_5));
1366
1367 /*
1368 * A route via interface 2 in the non-default table
1369 */
1370 boost::asio::ip::address nh_11 = boost::asio::ip::address::from_string("11.11.11.10");
1371 route::path *path_11 = new route::path(nh_11, *itf2);
1372 route::ip_route *route_5_2 = new route::ip_route(rd4, pfx_5);
1373 route_5_2->add(*path_11);
1374 HW::item<bool> hw_route_5_2(true, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001375 ADD_EXPECT(route::ip_route_cmds::update_cmd(hw_route_5_2, 1, pfx_5, {*path_11}));
Neale Ranns812ed392017-10-16 04:20:13 -07001376 TRY_CHECK_RC(OM::write(ian, *route_5_2));
1377
1378 /*
1379 * An ARP entry for the neighbour on itf1
1380 */
1381 HW::item<bool> hw_neighbour(true, rc_t::OK);
1382 mac_address_t mac_n({0,1,2,4,5,6});
Neale Rannsfd920602017-11-23 12:15:00 -08001383 neighbour *ne = new neighbour(itf1, nh_10, mac_n);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001384 ADD_EXPECT(neighbour_cmds::create_cmd(hw_neighbour, hw_ifh.data(), mac_n, nh_10));
Neale Ranns812ed392017-10-16 04:20:13 -07001385 TRY_CHECK_RC(OM::write(ian, *ne));
1386
1387 /*
1388 * A DVR route
1389 */
1390 route::prefix_t pfx_6("6.6.6.6", 32);
1391 route::path *path_l2 = new route::path(*itf2, nh_proto_t::ETHERNET);
1392 route::ip_route *route_dvr = new route::ip_route(pfx_6);
1393 route_dvr->add(*path_l2);
1394 HW::item<bool> hw_route_dvr(true, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001395 ADD_EXPECT(route::ip_route_cmds::update_cmd(hw_route_dvr, 0, pfx_6, {*path_l2}));
Neale Ranns812ed392017-10-16 04:20:13 -07001396 TRY_CHECK_RC(OM::write(ian, *route_dvr));
1397
1398 STRICT_ORDER_OFF();
1399 // delete the stack objects that hold references to others
1400 // so the OM::remove is the call that removes the last reference
1401 delete l3_11;
1402 delete l3_10;
1403 delete itf2;
1404 delete route_5;
1405 delete path_10;
1406 delete route_5_2;
1407 delete path_11;
1408 delete route_dvr;
1409 delete path_l2;
1410 delete ne;
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001411 ADD_EXPECT(neighbour_cmds::delete_cmd(hw_neighbour, hw_ifh.data(), mac_n, nh_10));
1412 ADD_EXPECT(route::ip_route_cmds::delete_cmd(hw_route_dvr, 0, pfx_6));
1413 ADD_EXPECT(route::ip_route_cmds::delete_cmd(hw_route_5_2, 1, pfx_5));
1414 ADD_EXPECT(route::ip_route_cmds::delete_cmd(hw_route_5, 0, pfx_5));
1415 ADD_EXPECT(l3_binding_cmds::unbind_cmd(hw_l3_10_unbind, hw_ifh.data(), pfx_10));
1416 ADD_EXPECT(l3_binding_cmds::unbind_cmd(hw_l3_11_unbind, hw_ifh2.data(), pfx_11));
1417 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down, hw_ifh));
1418 ADD_EXPECT(interface_cmds::af_packet_delete_cmd(hw_ifh, itf1_name));
1419 ADD_EXPECT(interface_cmds::set_table_cmd(hw_rd4_unbind, l3_proto_t::IPV4, hw_ifh2));
1420 ADD_EXPECT(interface_cmds::set_table_cmd(hw_rd4_unbind, l3_proto_t::IPV6, hw_ifh2));
1421 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down2, hw_ifh2));
1422 ADD_EXPECT(interface_cmds::af_packet_delete_cmd(hw_ifh2, itf2_name));
1423 ADD_EXPECT(route_domain_cmds::delete_cmd(hw_rd4_delete, l3_proto_t::IPV4, 1));
1424 ADD_EXPECT(route_domain_cmds::delete_cmd(hw_rd6_delete, l3_proto_t::IPV6, 1));
Neale Ranns812ed392017-10-16 04:20:13 -07001425
1426 TRY_CHECK(OM::remove(ian));
1427}
1428
1429BOOST_AUTO_TEST_CASE(test_nat) {
1430 VppInit vi;
1431 const std::string gs = "GeorgeSimenon";
1432 rc_t rc = rc_t::OK;
1433
1434 /*
1435 * Inside Interface
1436 */
1437 std::string itf_in_name = "inside";
1438 interface itf_in(itf_in_name,
1439 interface::type_t::AFPACKET,
1440 interface::admin_state_t::UP);
1441 HW::item<handle_t> hw_ifh(2, rc_t::OK);
1442 HW::item<interface::admin_state_t> hw_as_up(interface::admin_state_t::UP, rc_t::OK);
1443 HW::item<interface::admin_state_t> hw_as_down(interface::admin_state_t::DOWN, rc_t::OK);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001444 ADD_EXPECT(interface_cmds::af_packet_create_cmd(hw_ifh, itf_in_name));
1445 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up, hw_ifh));
Neale Ranns812ed392017-10-16 04:20:13 -07001446 TRY_CHECK_RC(OM::write(gs, itf_in));
1447
1448 /*
1449 * outside
1450 */
1451 std::string itf_out_name = "port-to";
1452 interface itf_out(itf_out_name,
1453 interface::type_t::AFPACKET,
1454 interface::admin_state_t::UP);
1455
1456 HW::item<handle_t> hw_ifh2(4, rc_t::OK);
1457 HW::item<interface::admin_state_t> hw_as_up2(interface::admin_state_t::UP, rc_t::OK);
1458 HW::item<interface::admin_state_t> hw_as_down2(interface::admin_state_t::DOWN, rc_t::OK);
1459
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001460 ADD_EXPECT(interface_cmds::af_packet_create_cmd(hw_ifh2, itf_out_name));
1461 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up2, hw_ifh2));
Neale Ranns812ed392017-10-16 04:20:13 -07001462 TRY_CHECK_RC(OM::write(gs, itf_out));
1463
1464 /*
1465 * A NAT static mapping
1466 */
1467 boost::asio::ip::address in_addr = boost::asio::ip::address::from_string("10.0.0.1");
1468 boost::asio::ip::address_v4 out_addr = boost::asio::ip::address_v4::from_string("1.1.1.1");
1469
1470 nat_static ns(in_addr, out_addr);
1471 HW::item<bool> hw_ns(true, rc_t::OK);
1472
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001473 ADD_EXPECT(nat_static_cmds::create_44_cmd(hw_ns, 0, in_addr.to_v4(), out_addr));
Neale Ranns812ed392017-10-16 04:20:13 -07001474 TRY_CHECK_RC(OM::write(gs, ns));
1475
1476 /*
1477 * bind nat inside and out
1478 */
1479 nat_binding *nb_in = new nat_binding(itf_in,
1480 direction_t::INPUT,
1481 l3_proto_t::IPV4,
1482 nat_binding::zone_t::INSIDE);
1483 HW::item<bool> hw_nb_in(true, rc_t::OK);
1484
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001485 ADD_EXPECT(nat_binding_cmds::bind_44_input_cmd(hw_nb_in,
1486 hw_ifh.data().value(),
1487 nat_binding::zone_t::INSIDE));
Neale Ranns812ed392017-10-16 04:20:13 -07001488 TRY_CHECK_RC(OM::write(gs, *nb_in));
1489
1490 nat_binding *nb_out = new nat_binding(itf_out,
1491 direction_t::INPUT,
1492 l3_proto_t::IPV4,
1493 nat_binding::zone_t::OUTSIDE);
1494 HW::item<bool> hw_nb_out(true, rc_t::OK);
1495
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001496 ADD_EXPECT(nat_binding_cmds::bind_44_input_cmd(hw_nb_out,
1497 hw_ifh2.data().value(),
1498 nat_binding::zone_t::OUTSIDE));
Neale Ranns812ed392017-10-16 04:20:13 -07001499 TRY_CHECK_RC(OM::write(gs, *nb_out));
1500
1501
1502 STRICT_ORDER_OFF();
1503 delete nb_in;
1504 delete nb_out;
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001505 ADD_EXPECT(nat_binding_cmds::unbind_44_input_cmd(hw_nb_in,
1506 hw_ifh.data().value(),
1507 nat_binding::zone_t::INSIDE));
1508 ADD_EXPECT(nat_binding_cmds::unbind_44_input_cmd(hw_nb_out,
1509 hw_ifh2.data().value(),
1510 nat_binding::zone_t::OUTSIDE));
1511 ADD_EXPECT(nat_static_cmds::delete_44_cmd(hw_ns, 0, in_addr.to_v4(), out_addr));
1512 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down, hw_ifh));
1513 ADD_EXPECT(interface_cmds::af_packet_delete_cmd(hw_ifh, itf_in_name));
1514 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down2, hw_ifh2));
1515 ADD_EXPECT(interface_cmds::af_packet_delete_cmd(hw_ifh2, itf_out_name));
Neale Ranns812ed392017-10-16 04:20:13 -07001516
1517 TRY_CHECK(OM::remove(gs));
1518}
1519
1520BOOST_AUTO_TEST_CASE(test_interface_events) {
1521 VppInit vi;
1522 MockListener ml;
1523
1524 HW::item<bool> hw_want(true, rc_t::OK);
1525
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001526 ADD_EXPECT(interface_cmds::events_cmd(ml));
1527 cmd* itf = new interface_cmds::events_cmd(ml);
Neale Ranns812ed392017-10-16 04:20:13 -07001528
1529 HW::enqueue(itf);
1530 HW::write();
Neale Ranns812ed392017-10-16 04:20:13 -07001531}
1532
Neale Ranns352ea0c2017-11-14 11:04:28 -08001533BOOST_AUTO_TEST_CASE(test_interface_route_domain_change) {
1534 VppInit vi;
1535 const std::string rene = "ReneGoscinny";
1536 rc_t rc = rc_t::OK;
1537
1538 /*
1539 * Create an interface with two IP addresses
1540 */
1541 std::string itf1_name = "host1";
1542 interface itf1(itf1_name,
1543 interface::type_t::AFPACKET,
1544 interface::admin_state_t::UP);
1545 HW::item<handle_t> hw_ifh1(2, rc_t::OK);
1546 HW::item<interface::admin_state_t> hw_as_up(interface::admin_state_t::UP, rc_t::OK);
1547 HW::item<interface::admin_state_t> hw_as_down(interface::admin_state_t::DOWN, rc_t::OK);
1548 ADD_EXPECT(interface_cmds::af_packet_create_cmd(hw_ifh1, itf1_name));
1549 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_up, hw_ifh1));
1550 TRY_CHECK_RC(OM::write(rene, itf1));
1551
1552 route::prefix_t pfx_10("10.10.10.10", 24);
1553 l3_binding *l3_1 = new l3_binding(itf1, pfx_10);
1554 HW::item<bool> hw_l3_bind1(true, rc_t::OK);
1555 HW::item<bool> hw_l3_unbind1(false, rc_t::OK);
1556 ADD_EXPECT(l3_binding_cmds::bind_cmd(hw_l3_bind1, hw_ifh1.data(), pfx_10));
1557 TRY_CHECK_RC(OM::write(rene, *l3_1));
1558
1559 route::prefix_t pfx_11("10.10.11.11", 24);
1560 l3_binding *l3_2 = new l3_binding(itf1, pfx_11);
1561 HW::item<bool> hw_l3_bind2(true, rc_t::OK);
1562 HW::item<bool> hw_l3_unbind2(false, rc_t::OK);
1563 ADD_EXPECT(l3_binding_cmds::bind_cmd(hw_l3_bind2, hw_ifh1.data(), pfx_11));
1564 TRY_CHECK_RC(OM::write(rene, *l3_2));
1565
1566 route_domain rd(1);
1567 HW::item<bool> hw_rd_create(true, rc_t::OK);
1568 HW::item<bool> hw_rd_delete(false, rc_t::OK);
1569 HW::item<route::table_id_t> hw_rd_bind(1, rc_t::OK);
1570 HW::item<route::table_id_t> hw_rd_unbind(route::DEFAULT_TABLE, rc_t::OK);
1571 ADD_EXPECT(route_domain_cmds::create_cmd(hw_rd_create, l3_proto_t::IPV4, 1));
1572 ADD_EXPECT(route_domain_cmds::create_cmd(hw_rd_create, l3_proto_t::IPV6, 1));
1573 TRY_CHECK_RC(OM::write(rene, rd));
1574
1575 /*
1576 * update the interface to change to a new route-domain
1577 * expect that the l3-bindings are removed and readded.
1578 */
1579 interface *itf2 = new interface(itf1_name,
1580 interface::type_t::AFPACKET,
1581 interface::admin_state_t::UP,
1582 rd);
1583 ADD_EXPECT(l3_binding_cmds::unbind_cmd(hw_l3_unbind1, hw_ifh1.data(), pfx_10));
1584 ADD_EXPECT(l3_binding_cmds::unbind_cmd(hw_l3_unbind2, hw_ifh1.data(), pfx_11));
1585 ADD_EXPECT(interface_cmds::set_table_cmd(hw_rd_bind, l3_proto_t::IPV4, hw_ifh1));
1586 ADD_EXPECT(interface_cmds::set_table_cmd(hw_rd_bind, l3_proto_t::IPV6, hw_ifh1));
1587 ADD_EXPECT(l3_binding_cmds::bind_cmd(hw_l3_bind1, hw_ifh1.data(), pfx_10));
1588 ADD_EXPECT(l3_binding_cmds::bind_cmd(hw_l3_bind2, hw_ifh1.data(), pfx_11));
1589 TRY_CHECK_RC(OM::write(rene, *itf2));
1590
1591 /*
1592 * mve the interface back to the default route-domain
1593 */
1594 interface itf3(itf1_name,
1595 interface::type_t::AFPACKET,
1596 interface::admin_state_t::UP);
1597 ADD_EXPECT(l3_binding_cmds::unbind_cmd(hw_l3_unbind1, hw_ifh1.data(), pfx_10));
1598 ADD_EXPECT(l3_binding_cmds::unbind_cmd(hw_l3_unbind2, hw_ifh1.data(), pfx_11));
1599 ADD_EXPECT(interface_cmds::set_table_cmd(hw_rd_unbind, l3_proto_t::IPV4, hw_ifh1));
1600 ADD_EXPECT(interface_cmds::set_table_cmd(hw_rd_unbind, l3_proto_t::IPV6, hw_ifh1));
1601 ADD_EXPECT(l3_binding_cmds::bind_cmd(hw_l3_bind1, hw_ifh1.data(), pfx_10));
1602 ADD_EXPECT(l3_binding_cmds::bind_cmd(hw_l3_bind2, hw_ifh1.data(), pfx_11));
1603 TRY_CHECK_RC(OM::write(rene, itf3));
1604
1605 delete l3_1;
1606 delete l3_2;
1607 delete itf2;
1608
1609 STRICT_ORDER_OFF();
1610 ADD_EXPECT(l3_binding_cmds::unbind_cmd(hw_l3_unbind1, hw_ifh1.data(), pfx_10));
1611 ADD_EXPECT(l3_binding_cmds::unbind_cmd(hw_l3_unbind2, hw_ifh1.data(), pfx_11));
1612 ADD_EXPECT(interface_cmds::state_change_cmd(hw_as_down, hw_ifh1));
1613 ADD_EXPECT(interface_cmds::af_packet_delete_cmd(hw_ifh1, itf1_name));
1614 ADD_EXPECT(route_domain_cmds::delete_cmd(hw_rd_delete, l3_proto_t::IPV4, 1));
1615 ADD_EXPECT(route_domain_cmds::delete_cmd(hw_rd_delete, l3_proto_t::IPV6, 1));
1616
1617 TRY_CHECK(OM::remove(rene));
1618}
1619
Neale Rannsd3464b52017-12-07 08:48:02 -08001620BOOST_AUTO_TEST_CASE(test_prefixes) {
1621 route::prefix_t p6_s_16(boost::asio::ip::address::from_string("2001::"), 16);
1622
1623 BOOST_CHECK(p6_s_16.mask() == boost::asio::ip::address::from_string("ffff::"));
1624
1625 route::prefix_t p6_s_17(boost::asio::ip::address::from_string("2001:ff00::"), 17);
1626
1627 BOOST_CHECK(p6_s_17.mask() == boost::asio::ip::address::from_string("ffff:8000::"));
1628 BOOST_CHECK(p6_s_17.low().address() == boost::asio::ip::address::from_string("2001:8000::"));
1629
1630 route::prefix_t p6_s_15(boost::asio::ip::address::from_string("2001:ff00::"), 15);
1631 BOOST_CHECK(p6_s_15.mask() == boost::asio::ip::address::from_string("fffe::"));
1632 BOOST_CHECK(p6_s_15.low().address() == boost::asio::ip::address::from_string("2000::"));
1633
1634 route::prefix_t p4_s_16(boost::asio::ip::address::from_string("192.168.0.0"), 16);
1635
1636 BOOST_CHECK(p4_s_16.mask() == boost::asio::ip::address::from_string("255.255.0.0"));
1637
1638 route::prefix_t p4_s_17(boost::asio::ip::address::from_string("192.168.127.0"), 17);
1639
1640 BOOST_CHECK(p4_s_17.mask() == boost::asio::ip::address::from_string("255.255.128.0"));
1641 BOOST_CHECK(p4_s_17.low().address() == boost::asio::ip::address::from_string("192.168.0.0"));
1642 BOOST_CHECK(p4_s_17.high().address() == boost::asio::ip::address::from_string("192.168.127.255"));
1643
1644 route::prefix_t p4_s_15(boost::asio::ip::address::from_string("192.168.255.255"), 15);
1645
1646 BOOST_CHECK(p4_s_15.mask() == boost::asio::ip::address::from_string("255.254.0.0"));
1647 BOOST_CHECK(p4_s_15.low().address() == boost::asio::ip::address::from_string("192.168.0.0"));
1648 BOOST_CHECK(p4_s_15.high().address() == boost::asio::ip::address::from_string("192.169.255.255"));
1649
1650 route::prefix_t p4_s_32(boost::asio::ip::address::from_string("192.168.1.1"), 32);
1651
1652 BOOST_CHECK(p4_s_32.mask() == boost::asio::ip::address::from_string("255.255.255.255"));
1653 BOOST_CHECK(p4_s_32.low().address() == boost::asio::ip::address::from_string("192.168.1.1"));
1654 BOOST_CHECK(p4_s_32.high().address() == boost::asio::ip::address::from_string("192.168.1.1"));
1655
1656}
1657
Neale Ranns812ed392017-10-16 04:20:13 -07001658BOOST_AUTO_TEST_SUITE_END()