[RIC-434] Update gNB Cells
[ric-plt/e2mgr.git] / Automation / Tests / Get_E2T_Instances / get_e2t_instances.robot
1 ##############################################################################
2 #
3 #   Copyright (c) 2019 AT&T Intellectual Property.
4 #
5 #   Licensed under the Apache License, Version 2.0 (the "License");
6 #   you may not use this file except in compliance with the License.
7 #   You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 #   Unless required by applicable law or agreed to in writing, software
12 #   distributed under the License is distributed on an "AS IS" BASIS,
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 #   See the License for the specific language governing permissions and
15 #   limitations under the License.
16 #
17 ##############################################################################
18
19 *** Settings ***
20 Variables  ../Scripts/variables.py
21 Suite Setup   Prepare Enviorment
22 Resource   ../Resource/Keywords.robot
23 Resource   ../Resource/resource.robot
24 Library     REST      ${url}
25 Library    RequestsLibrary
26 Library    Collections
27 Library    OperatingSystem
28 Library    json
29 Library     ../Scripts/e2mdbscripts.py
30
31 *** Variables ***
32 ${url}  ${e2mgr_address}
33
34 *** Test Cases ***
35
36 Get E2T instances
37     Flush And Populate DB
38     ${result}    e2mdbscripts.populate_e2t_instances_in_e2m_db_for_get_e2t_instances_tc
39     Create Session  getE2tInstances  ${url}
40     ${headers}=  Create Dictionary    Accept=application/json
41     ${resp}=    Get Request   getE2tInstances     /v1/e2t/list    headers=${headers}
42     Should Be Equal As Strings   ${resp.status_code}    200
43     Should Be Equal As Strings    ${resp.content}        [{"e2tAddress":"e2t.att.com:38000","ranNames":["test1","test2","test3"]}]
44     Flush And Populate DB
45
46 Prepare Logs For Tests
47     Remove log files
48     Save logs
49
50
51
52
53
54
55
56
57
58
59
60