09bc6cace45d3b1a443c8bae97be66056bef1ca9
[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 Suite Setup   Prepare Enviorment
21 Resource   ../Resource/Keywords.robot
22 Resource   ../Resource/resource.robot
23 Resource    ../Resource/scripts_variables.robot
24 Library     REST      ${url}
25 Library    RequestsLibrary
26 Library    Collections
27 Library    OperatingSystem
28 Library    json
29 Library     ../Scripts/e2mdbscripts.py
30
31
32 *** Test Cases ***
33
34 Get E2T instances
35     ${result}    e2mdbscripts.populate_e2t_instances_in_e2m_db_for_get_e2t_instances_tc
36     Create Session  getE2tInstances  ${url}
37     ${headers}=  Create Dictionary    Accept=application/json
38     ${resp}=    Get Request   getE2tInstances     /v1/e2t/list    headers=${headers}
39     Should Be Equal As Strings   ${resp.status_code}    200
40     Should Be Equal As Strings    ${resp.content}        [{"e2tAddress":"e2t.att.com:38000","ranNames":["test1","test2","test3"]},{"e2tAddress":"e2t.att.com:38001","ranNames":[]}]
41     ${flush}  cleanup_db.flush
42
43
44
45
46
47
48
49
50
51
52
53