blob: 2e7f4b569e96b53798a6b366b8cbec111c17328e [file] [log] [blame]
Kailash22179672019-03-18 20:24:55 -07001# Copyright 2017-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15class bbsim_utils(object):
16
17 def generate_subscribers(self, num_subs, rcord_service_id, stag=999, ctag_start=900, pon_id=1):
18 """
19 :param num_subs: Number of subscribers to create
20 :param rcord_service_id: ID of the rcord service
21 :param stag: S_tag of subscriber
22 :param ctag: C_tag of first subscriber (to be incremented by num_subs)
23 :return: List of subscribers to POST
24 """
25 subscribers = []
Kailash39443402019-03-19 13:21:04 -070026 for index in xrange(1, int(num_subs) + 1):
27 sub = {
28 "name" : "Sub_BBSM" + str("00000") + str(pon_id) + '{0:02x}'.format(int(index)-1),
29 "status" : "pre-provisioned",
30 "c_tag" : ctag_start + int(index)-1,
31 "s_tag" : stag,
32 "onu_device" : "BBSM" + str("00000") + str(pon_id) + '{0:02x}'.format(int(index)-1),
33 "circuit_id" : "circuit" + '{0:02x}'.format(int(index)-1),
34 "remote_id" : "remote" + '{0:02x}'.format(int(index)-1),
35 "nas_port_id" : "PON 2/1/01/1:1.1." + '{0:0x}'.format(int(index)-1)
36 }
37 subscribers.append(sub)
38 if index == 10:
39 break
40 for index in range(11, int(num_subs) + 1):
Kailash22179672019-03-18 20:24:55 -070041 sub = {
42 "name" : "Sub_BBSM" + str("00000") + str(pon_id) + '{0:02x}'.format(int(index)-1),
43 "status" : "pre-provisioned",
44 "c_tag" : ctag_start + int(index)-1,
45 "s_tag" : stag,
46 "onu_device" : "BBSM" + str("00000") + str(pon_id) + '{0:02x}'.format(int(index)-1),
47 "circuit_id" : "circuit" + '{0:02x}'.format(int(index)-1),
48 "remote_id" : "remote" + '{0:02x}'.format(int(index)-1),
49 "nas_port_id" : "PON 2/1/01/1:1.1." + str(pon_id) + '{0:02x}'.format(int(index)-1)
50 }
51 subscribers.append(sub)
52 return subscribers
53
54 def generate_whitelists(self, num_onus, att_service_id, pon_id=1):
55 """
56 :param num_onus: Number of ONUs to be added to the whitelist
57 :param att_service_id: ID of the att workflow service
58 :param olt_id: ID of the pon_port
59 :return: List of whitelists to POST
60 """
61 whitelists = []
62 for index in range(1, int(num_onus) + 1):
63 onu = {
64 "serial_number": "BBSM" + str("00000") + str(pon_id) + '{0:02x}'.format(int(index)-1),
Kailashdc5e78b2019-03-19 09:24:23 -070065 "device_id" : "of:0000626273696d76",
Kailash22179672019-03-18 20:24:55 -070066 "pon_port_id" : 536870913,
67 "owner_id" : att_service_id
68 }
69 whitelists.append(onu)
70 return whitelists