[RICPLT-2523] Add Setup automation tests...
[ric-plt/e2mgr.git] / Automation / Tests / RedButton / RedButton_CONNECTED_SHUTDOWN_CONNECTED.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/resource.robot
22 Resource   ../Resource/Keywords.robot
23 Library     OperatingSystem
24 Library     Collections
25 Library     REST      ${url}
26
27
28
29 *** Test Cases ***
30
31 Prepare Ran in Connected connectionStatus
32     Post Request setup node b x-2
33     Integer     response status       204
34     Sleep  1s
35     GET      /v1/nodeb/test1
36     Integer  response status  200
37     String   response body ranName    test1
38     String   response body connectionStatus    CONNECTED
39
40
41 Disconnect Ran
42    PUT    /v1/nodeb/shutdown
43    Integer   response status   204
44
45
46
47 Verfiy Shutdown ConnectionStatus
48     Sleep    1s
49     GET      /v1/nodeb/test1
50     Integer  response status  200
51     String   response body ranName    test1
52     String   response body connectionStatus    SHUT_DOWN
53
54 Restart simualtor
55     Restart simulator
56
57 repare Ran in Connected connectionStatus
58     Post Request setup node b x-2
59     Integer     response status       204
60     Sleep  1s
61     GET      /v1/nodeb/test1
62     Integer  response status  200
63     String   response body ranName    test1
64     String   response body connectionStatus    CONNECTED
65
66
67
68
69