blob: 40b32e850997d036488c65693402c55eefab179b [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
Kailash45ab7e92019-06-10 13:12:05 -070017 def generate_subscribers(self, num_subs, rcord_service_id, stag=999, ctag_start=900, pon_id=0):
Kailash22179672019-03-18 20:24:55 -070018 """
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 = {
Kailash45ab7e92019-06-10 13:12:05 -070028 "name" : "Sub_BBSM" + str("00000") + str(pon_id) + '{0:02x}'.format(int(index)),
Kailash39443402019-03-19 13:21:04 -070029 "status" : "pre-provisioned",
30 "c_tag" : ctag_start + int(index)-1,
31 "s_tag" : stag,
Kailash45ab7e92019-06-10 13:12:05 -070032 "onu_device" : "BBSM" + str("00000") + str(pon_id) + '{0:02x}'.format(int(index)),
33 "circuit_id" : "circuit" + '{0:02x}'.format(int(index)),
34 "remote_id" : "remote" + '{0:02x}'.format(int(index)),
35 "nas_port_id" : "PON 2/1/01/1:1.1." + '{0:0x}'.format(int(index)),
36 "upstream_bps_id" : 1,
Kailashc97c1f52019-03-26 11:31:56 -070037 "downstream_bps_id" : 1
Kailash39443402019-03-19 13:21:04 -070038 }
39 subscribers.append(sub)
40 if index == 10:
41 break
42 for index in range(11, int(num_subs) + 1):
Kailash22179672019-03-18 20:24:55 -070043 sub = {
Kailash45ab7e92019-06-10 13:12:05 -070044 "name" : "Sub_BBSM" + str("00000") + str(pon_id) + '{0:02x}'.format(int(index)),
Kailash22179672019-03-18 20:24:55 -070045 "status" : "pre-provisioned",
Kailash45ab7e92019-06-10 13:12:05 -070046 "c_tag" : ctag_start + int(index),
Kailash22179672019-03-18 20:24:55 -070047 "s_tag" : stag,
Kailash45ab7e92019-06-10 13:12:05 -070048 "onu_device" : "BBSM" + str("00000") + str(pon_id) + '{0:02x}'.format(int(index)),
49 "circuit_id" : "circuit" + '{0:02x}'.format(int(index)),
50 "remote_id" : "remote" + '{0:02x}'.format(int(index)),
51 "nas_port_id" : "PON 2/1/01/1:1.1." + str(pon_id) + '{0:02x}'.format(int(index)),
Kailashc97c1f52019-03-26 11:31:56 -070052 "upstream_bps_id" : 1,
53 "downstream_bps_id" : 1
Kailash22179672019-03-18 20:24:55 -070054 }
55 subscribers.append(sub)
56 return subscribers
57
Kailash45ab7e92019-06-10 13:12:05 -070058 def generate_whitelists(self, num_onus, att_service_id, pon_id=0):
Kailash22179672019-03-18 20:24:55 -070059 """
60 :param num_onus: Number of ONUs to be added to the whitelist
61 :param att_service_id: ID of the att workflow service
62 :param olt_id: ID of the pon_port
63 :return: List of whitelists to POST
64 """
65 whitelists = []
66 for index in range(1, int(num_onus) + 1):
67 onu = {
Kailash45ab7e92019-06-10 13:12:05 -070068 "serial_number": "BBSM" + str("00000") + str(pon_id) + '{0:02x}'.format(int(index)),
Kailashdc5e78b2019-03-19 09:24:23 -070069 "device_id" : "of:0000626273696d76",
Kailash45ab7e92019-06-10 13:12:05 -070070 "pon_port_id" : 536870912,
Kailash22179672019-03-18 20:24:55 -070071 "owner_id" : att_service_id
72 }
73 whitelists.append(onu)
Kailash45ab7e92019-06-10 13:12:05 -070074 return whitelists