Example #1
0
    def test_connect_and_command_without_result(self, receive_text, send_text, connect_ipv4):
        connect_ipv4.return_value = TestUtil.SOCKET_TEST
        receive_text.return_value = ' { "status" : "ok" } '

        util.connect_and_get_result_from_command("my_test_command")

        assert connect_ipv4.call_count == 1
        json_object = {}
        json_object["command"] = "my_test_command"
        send_text.assert_called_once_with(TestUtil.SOCKET_TEST, json.dumps(json_object))
        receive_text.assert_called_once_with(TestUtil.SOCKET_TEST)
Example #2
0
    def test_connect_and_get_result_from_command_when_error_returned(self, receive_text, send_text, connect_ipv4):
        connect_ipv4.return_value = TestUtil.SOCKET_TEST
        receive_text.return_value = ' { "status" : "error", "message" : "My error." } '

        with pytest.raises(CommandException) as ex_info:
            result = util.connect_and_get_result_from_command("my_test_command")

        assert connect_ipv4.call_count == 1
        json_object = {}
        json_object["command"] = "my_test_command"
        send_text.assert_called_once_with(TestUtil.SOCKET_TEST, json.dumps(json_object))
        receive_text.assert_called_once_with(TestUtil.SOCKET_TEST)
        assert ex_info.value.message == "My error."
Example #3
0
    def test_connect_and_get_result_from_command_with_two_args(self, receive_text, send_text, connect_ipv4):
        connect_ipv4.return_value = TestUtil.SOCKET_TEST
        receive_text.return_value = ' { "status" : "ok", "result" : "my_test_answer" } '

        result = util.connect_and_get_result_from_command("my_test_command", ["arg1_example", "arg2_example"])

        assert connect_ipv4.call_count == 1
        json_object = {}
        json_object["command"] = "my_test_command"
        json_object["args"] = ["arg1_example", "arg2_example"]
        send_text.assert_called_once_with(TestUtil.SOCKET_TEST, json.dumps(json_object))
        receive_text.assert_called_once_with(TestUtil.SOCKET_TEST)
        assert result == "my_test_answer"