dbafcfc45b0f1b243b04a917e3e31a1ab1f7ea84
[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 Library     REST      ${url}
24 Library    RequestsLibrary
25 Library    Collections
26 Library    OperatingSystem
27 Library    json
28
29
30 *** Test Cases ***
31
32 Get E2T instances 1st call
33     Create Session  getE2tInstances  ${url}
34     ${headers}=  Create Dictionary    Accept=application/json
35     ${resp}=    Get Request   getE2tInstances     /v1/e2t/list    headers=${headers}
36     Should Be Equal As Strings   ${resp.status_code}    200
37     Should Be Equal As Strings    ${resp.content}        [{"e2tAddress":"e2t.att.com:38000","ranNames":[]}]
38
39 Get E2T instances after one setup
40
41     Post Request setup node b x-2
42     Integer     response status       204
43     Create Session  getE2tInstances  ${url}
44     ${headers}=  Create Dictionary    Accept=application/json
45     ${resp}=    Get Request   getE2tInstances     /v1/e2t/list    headers=${headers}
46     Should Be Equal As Strings   ${resp.status_code}    200
47     Should Be Equal As Strings    ${resp.content}        [{\"e2tAddress\":\"e2t.att.com:38000\",\"ranNames\":[\"test1\"]}]
48
49
50
51
52
53
54
55
56
57
58
59