summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGligor <gligorisaev@gmail.com>2022-08-04 08:25:27 +0200
committerGligor <gligorisaev@gmail.com>2022-08-04 10:52:04 +0200
commit384629784e18c8c4c0545fed490b97d2f36999d2 (patch)
tree89f1a3ba1549442b1652e8a93fdb0443508e3e77 /tests
parente496f0ee14dbd4b14cb2a52e0d0a047baba4d38d (diff)
Added tedge_connect tests
Signed-off-by: Gligor <gligorisaev@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/RobotFramework/tedge_connect/tedge_connect_test.robot49
1 files changed, 49 insertions, 0 deletions
diff --git a/tests/RobotFramework/tedge_connect/tedge_connect_test.robot b/tests/RobotFramework/tedge_connect/tedge_connect_test.robot
new file mode 100644
index 00000000..9f16452e
--- /dev/null
+++ b/tests/RobotFramework/tedge_connect/tedge_connect_test.robot
@@ -0,0 +1,49 @@
+*** Settings ***
+Documentation Run connection test while being connected and check the positive response in stdout
+... disconnect the device from cloud and check the negative message in stderr
+... Run sudo tedge connect c8y and check
+
+Library SSHLibrary
+Library CryptoLibrary variable_decryption=True
+Library Dialogs
+
+Suite Setup Open Connection And Log In
+Suite Teardown SSHLibrary.Close All Connections
+
+
+*** Variables ***
+${HOST} 192.168.99.110 #Insert the IP address if the default should not be used
+${USERNAME} pi #Insert the username if the default should not be used
+${PASSWORD} thinedge #Insert the password if the default should not be used
+
+*** Tasks ***
+tedge_connect_test_positive
+ Execute Command sudo tedge connect c8y #Connecting to Cumulocity IoT
+ ${stdout}= Execute Command sudo tedge connect c8y --test #Testing the status of the connection
+ Should Contain ${stdout} Connection check to c8y cloud is successful. #Expected message
+ Log ${stdout}
+
+tedge_connect_test_negative
+ Execute Command sudo tedge disconnect c8y #Disonnecting from Cumulocity IoT
+ ${stdout} ${stderr}= Execute Command sudo tedge connect c8y --test return_stderr=True #Testing the status of the connection
+ Should Contain ${stderr} Error: failed to test connection to Cumulocity cloud. #Expected message
+ Log ${stderr}
+
+tedge_connect_test_sm_services
+ ${stdout} Execute Command sudo tedge connect c8y #Connecting to Cumulocity IoT
+ Should Contain ${stdout} Successfully created bridge connection! #Expected message
+ Should Contain ${stdout} tedge-agent service successfully started and enabled! #Expected message
+ Should Contain ${stdout} tedge-mapper-c8y service successfully started and enabled! #Expected message
+ Log ${stdout}
+tedge_disconnect_test_sm_services
+ ${stdout} Execute Command sudo tedge disconnect c8y #Disonnecting from Cumulocity IoT
+ Should Contain ${stdout} Cumulocity Bridge successfully disconnected! #Expected message
+ Should Contain ${stdout} tedge-agent service successfully stopped and disabled! #Expected message
+ Should Contain ${stdout} tedge-mapper-c8y service successfully stopped and disabled! #Expected message
+ Log ${stdout}
+
+*** Keywords ***
+Open Connection And Log In
+
+ SSHLibrary.Open Connection ${HOST}
+ SSHLibrary.Login ${USERNAME} ${PASSWORD} \ No newline at end of file