diff options
Diffstat (limited to 'resources/test_data/honeycomb')
-rw-r--r-- | resources/test_data/honeycomb/netconf/triggers.py | 8 | ||||
-rw-r--r-- | resources/test_data/honeycomb/persistence.py | 4 | ||||
-rw-r--r-- | resources/test_data/honeycomb/plugin_acl.py | 1 |
3 files changed, 6 insertions, 7 deletions
diff --git a/resources/test_data/honeycomb/netconf/triggers.py b/resources/test_data/honeycomb/netconf/triggers.py index 51a6ab6967..5d47853352 100644 --- a/resources/test_data/honeycomb/netconf/triggers.py +++ b/resources/test_data/honeycomb/netconf/triggers.py @@ -285,10 +285,9 @@ a:operation="replace"> </target> <default-operation>none</default-operation> <config> -<vpp xmlns="urn:opendaylight:params:xml:ns:yang:v3po"> -<bridge-domains> -<bridge-domain xmlns:a="urn:ietf:params:xml:ns:netconf:base:1.0" -a:operation="replace"> +<bridge-domains xmlns="urn:opendaylight:params:xml:ns:yang:v3po" +xmlns:a="urn:ietf:params:xml:ns:netconf:base:1.0" a:operation="replace"> +<bridge-domain> <name>e86740a2-042c-4e64-a43b-cc224e0d5240</name> <unknown-unicast-flood>true</unknown-unicast-flood> <forward>true</forward> @@ -297,7 +296,6 @@ a:operation="replace"> <arp-termination>false</arp-termination> </bridge-domain> </bridge-domains> -</vpp> </config> </edit-config> </rpc> diff --git a/resources/test_data/honeycomb/persistence.py b/resources/test_data/honeycomb/persistence.py index 216d4facef..131a3ef54f 100644 --- a/resources/test_data/honeycomb/persistence.py +++ b/resources/test_data/honeycomb/persistence.py @@ -102,7 +102,7 @@ def get_variables(interface): }, "match": { "vlan-tagged": { - "match-exact-tags": False + "match-exact-tags": True } } }, @@ -123,7 +123,7 @@ def get_variables(interface): 'tag_rewrite_pop_1_VAT': { 'sub_default': 0, 'sub_dot1ad': 0, - 'sub_exact_match': 0, + 'sub_exact_match': 1, 'sub_inner_vlan_id': 0, 'sub_inner_vlan_id_any': 1, 'sub_number_of_tags': 2, diff --git a/resources/test_data/honeycomb/plugin_acl.py b/resources/test_data/honeycomb/plugin_acl.py index d9d2ecd90f..6bd673d8b0 100644 --- a/resources/test_data/honeycomb/plugin_acl.py +++ b/resources/test_data/honeycomb/plugin_acl.py @@ -34,6 +34,7 @@ def get_variables(test_case, name): # Variables for control packet "src_ip": "16.0.0.1", "dst_ip": "16.0.1.1", + "src_net": "16.0.0.0", "dst_net": "16.0.1.0", "src_port": "1234", "dst_port": "1234", |