From bde9a07a512e78de6d9928d6ccfcb28a4a6244d4 Mon Sep 17 00:00:00 2001 From: HuabingZhao Date: Wed, 6 Sep 2017 20:01:57 +0800 Subject: 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 --- test/csit/tests/msb/tcp-service-access/test1.robot | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 test/csit/tests/msb/tcp-service-access/test1.robot (limited to 'test/csit/tests/msb/tcp-service-access/test1.robot') 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} + -- cgit 1.2.3-korg