aboutsummaryrefslogtreecommitdiffstats
path: root/tests/suites/honeycomb/resources/sub_interfaces.py
blob: 9c18984930fd4df33918136ad2a13f761af56f92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# Copyright (c) 2016 Cisco and/or its affiliates.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""Test variables for Honeycomb sub-interface test suite."""

# Bridge domain name.
bd_name = 'test-sub-bd'

# Bridge domain settings used while creating a test bridge domain.
bd_settings = {
    'flood': True,
    'forward': True,
    'learn': True,
    'unknown-unicast-flood': True,
    'arp-termination': True
}

# Bridge domain configuration used while adding the bridge domain to a
# sub-interface.
sub_bd_settings = {
    'bridge-domain': bd_name,
    'split-horizon-group': '0',
    'bridged-virtual-interface': 'False'
}

# Rewrite tag parameters used while setting the rewrite tag.
rw_params = {
    'rewrite-operation': 'pop-1',
    'first-pushed': '802dot1ad',
    'tag1': '1',
    'tag2': '2'
}

# Rewrite tag parameters used while editing the rewrite tag.
rw_params_edited = {
    'rewrite-operation': 'push-1',
    'first-pushed': '802dot1q',
    'tag1': '12',
    'tag2': '22'
}

# Rewrite tag parameters when it is disabled.
rw_params_disabled = {
    'rewrite-operation': 'disabled',
    'first-pushed': '802dot1ad'
}

# Rewrite tag parameters - wrong value of 'rewrite-operation' parameter.
# Used in negative test.
rw_params_wrong_op = {
    'rewrite-operation': 'WRONG_OP',
    'first-pushed': '802dot1q',
    'tag1': '1',
    'tag2': '2'
}

# Rewrite tag parameters - wrong value of 'first-pushed' parameter.
# Used in negative test.
rw_params_wrong_pushed = {
    'rewrite-operation': 'pop-1',
    'first-pushed': 'WRONG_PUSHED',
    'tag1': '1',
    'tag2': '2'
}

# Second bridge domain name.
bd2_name = 'test-sub-bd2'
sub2_bd_settings = {
    'bridge-domain': bd2_name,
    'split-horizon-group': '0',
    'bridged-virtual-interface': 'False'
}

# Second bridge domain configuration used while adding the bridge domain to a
# sub-interface.
bd2_settings = {
    'flood': True,
    'forward': True,
    'learn': True,
    'unknown-unicast-flood': True,
    'arp-termination': True
}

# Parameters of a bridge domain with rewrite tag.
bd_rw_settings = {
    'bridge-domain': bd2_name,
    'split-horizon-group': '0',
    'bridged-virtual-interface': 'False',
    'vlan-tag-rewrite': rw_params
}