aboutsummaryrefslogtreecommitdiffstats
path: root/resources/test_data/honeycomb/acl.py
blob: 46b88dad8349f90ebc78ff20a98f0d9db56899f7 (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
101
# 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 access control list test suite."""

# settings for acl tables
hc_acl_table = {
    "name": "acl_table_test",
    "nbuckets": 1,
    "memory_size": 1048576,
    "skip_n_vectors": 0,
    "miss_next": "permit",
    "mask": "00:00:00:00:00:00:ff:ff:ff:ff:ff:ff:00:00:00:00"
}

hc_acl_table2 = {
    "name": "acl_table_test2",
    "nbuckets": 2,
    "memory_size": 1048576,
    "skip_n_vectors": 1,
    "next_table": "acl_table_test",
    "miss_next": "deny",
    "mask": "ff:ff:ff:00:00:00:ff:ff:ff:ff:ff:ff:00:00:00:00"
}

#TODO: remove once memory_size is visible in oper data(HC2VPP-10)
hc_acl_table_oper = {
    "name": "acl_table_test",
    "nbuckets": 1,
    "skip_n_vectors": 0,
    "miss_next": "permit",
    "mask": "00:00:00:00:00:00:ff:ff:ff:ff:ff:ff:00:00:00:00"
}

hc_acl_table2_oper = {
    "name": "acl_table_test2",
    "nbuckets": 2,
    "skip_n_vectors": 1,
    "next_table": "acl_table_test",
    "miss_next": "deny",
    "mask": "ff:ff:ff:00:00:00:ff:ff:ff:ff:ff:ff:00:00:00:00"
}

# representation of table settings in VAT
table_index = 0
vat_acl_table = {
    "nbuckets": hc_acl_table['nbuckets'],
    "skip": 0,
    "match": 1,
    "nextnode": -1,
    "nexttbl": -1,
    "mask": hc_acl_table['mask'].replace(":", ""),
}
table_index2 = 1
vat_acl_table2 = {
    "nbuckets": hc_acl_table2['nbuckets'],
    "skip": 1,
    "match": 1,
    "nextnode": 0,
    "nexttbl": table_index,
    "mask": hc_acl_table2['mask'].replace(":", ""),
}
# setting for acl sessions
hc_acl_session = {
    "match": "00:00:00:00:00:00:01:02:03:04:05:06:00:00:00:00",
    "hit_next": "permit",
    "opaque_index": "1",
    "advance": 1
}

hc_acl_session2 = {
    "match": "00:00:00:00:00:00:06:05:04:03:02:01:00:00:00:00",
    "hit_next": "deny",
    "opaque_index": "2",
    "advance": 1
}
# representation of session settings in VAT
session_index = 0
vat_acl_session = {
    "match": hc_acl_session['match'].replace(":", ""),
    "advance": hc_acl_session['advance'],
    "opaque": 1,
    "next_index": -1
}
session_index2 = 1
vat_acl_session2 = {
    "match": hc_acl_session2['match'].replace(":", ""),
    "advance": hc_acl_session2['advance'],
    "opaque": 2,
    "next_index": session_index
}