diff options
Diffstat (limited to 'test/csit/tests/msb/tcp-service-access')
-rw-r--r-- | test/csit/tests/msb/tcp-service-access/__init__.robot | 2 | ||||
-rw-r--r-- | test/csit/tests/msb/tcp-service-access/test1.robot | 16 | ||||
-rw-r--r-- | test/csit/tests/msb/tcp-service-access/test2.robot | 15 |
3 files changed, 0 insertions, 33 deletions
diff --git a/test/csit/tests/msb/tcp-service-access/__init__.robot b/test/csit/tests/msb/tcp-service-access/__init__.robot deleted file mode 100644 index efd2221f2..000000000 --- a/test/csit/tests/msb/tcp-service-access/__init__.robot +++ /dev/null @@ -1,2 +0,0 @@ -*** Settings *** -Documentation Microservices Service Bus - Messag Broker diff --git a/test/csit/tests/msb/tcp-service-access/test1.robot b/test/csit/tests/msb/tcp-service-access/test1.robot deleted file mode 100644 index e84c7e1a3..000000000 --- a/test/csit/tests/msb/tcp-service-access/test1.robot +++ /dev/null @@ -1,16 +0,0 @@ -*** 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} - diff --git a/test/csit/tests/msb/tcp-service-access/test2.robot b/test/csit/tests/msb/tcp-service-access/test2.robot deleted file mode 100644 index 58e5471b7..000000000 --- a/test/csit/tests/msb/tcp-service-access/test2.robot +++ /dev/null @@ -1,15 +0,0 @@ -*** Settings *** -Library Collections -Library requests -Library Telnet - -*** Test Cases *** -Messag Broker Test2 - [Documentation] Check if ActiveMQ listening port 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"]} - - Open Connection ${activeMQ_ip} port=${activeMQ_port} |