ss412g | 07ef76d | 2019-08-12 17:26:40 +0300 | [diff] [blame] | 1 | *** Settings *** |
2 | Suite Setup Start dockers | ||||
3 | Resource ../Resource/resource.robot | ||||
4 | Library OperatingSystem | ||||
5 | Library REST ${url} | ||||
6 | |||||
7 | *** Test Cases *** | ||||
8 | Get Request node b gnb - DB down - 500 | ||||
9 | Run docker stop redis | ||||
10 | GET /v1/nodeb/test5 | ||||
11 | Integer response status 500 | ||||
12 | |||||
13 | |||||
14 | *** Keywords *** | ||||
15 | Start dockers | ||||
16 | Run And Return Rc And Output ${run_script} | ||||
17 | ${result}= Run And Return Rc And Output ${docker_command} | ||||
18 | Should Be Equal As Integers ${result[1]} 4 |