diff options
author | HuabingZhao <zhao.huabing@zte.com.cn> | 2017-09-06 20:01:57 +0800 |
---|---|---|
committer | HuabingZhao <zhao.huabing@zte.com.cn> | 2017-09-06 20:02:23 +0800 |
commit | bde9a07a512e78de6d9928d6ccfcb28a4a6244d4 (patch) | |
tree | 1cf7b2ad8f08bbb4ce8add88ceab912c0f5d4ade /test/csit/tests/msb/tcp-service-access/test1.robot | |
parent | cc141af9a93eef61437909ba301e0331b3b3c749 (diff) |
Add msb integration test script
Add test script for tcp service discovery and access
Modify license header
Issue-Id: MSB-61
Change-Id: I385aa76d247e081845d7e2bab729dd1d3c60243d
Signed-off-by: HuabingZhao <zhao.huabing@zte.com.cn>
Diffstat (limited to 'test/csit/tests/msb/tcp-service-access/test1.robot')
-rw-r--r-- | test/csit/tests/msb/tcp-service-access/test1.robot | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/csit/tests/msb/tcp-service-access/test1.robot b/test/csit/tests/msb/tcp-service-access/test1.robot new file mode 100644 index 000000000..e84c7e1a3 --- /dev/null +++ b/test/csit/tests/msb/tcp-service-access/test1.robot @@ -0,0 +1,16 @@ +*** Settings *** +Library Collections +Library requests + +*** Test Cases *** +Messag Broker Test1 + [Documentation] Check if ActiveMQ index page can be accessed + ${result} = get http://${MSB_DISCOVERY_IP}:10081/api/microservices/v1/services/ActiveMQ/version/null + Should Be Equal ${result.status_code} ${200} + ${json} = Set Variable ${result.json()} + ${activeMQ_ip} = Set Variable ${json["nodes"][0]["ip"]} + ${activeMQ_port} = Set Variable ${json["nodes"][0]["port"]} + + ${result} = get http://${activeMQ_ip}:8161 + Should Be Equal ${result.status_code} ${200} + |