summaryrefslogtreecommitdiff
path: root/src/components/include/test/application_manager/mock_request_controller.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/include/test/application_manager/mock_request_controller.h')
-rw-r--r--src/components/include/test/application_manager/mock_request_controller.h96
1 files changed, 96 insertions, 0 deletions
diff --git a/src/components/include/test/application_manager/mock_request_controller.h b/src/components/include/test/application_manager/mock_request_controller.h
new file mode 100644
index 0000000000..a4a7cbc1e2
--- /dev/null
+++ b/src/components/include/test/application_manager/mock_request_controller.h
@@ -0,0 +1,96 @@
+/*
+ * Copyright (c) 2020, Ford Motor Company
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ *
+ * Redistributions of source code must retain the above copyright notice, this
+ * list of conditions and the following disclaimer.
+ *
+ * Redistributions in binary form must reproduce the above copyright notice,
+ * this list of conditions and the following
+ * disclaimer in the documentation and/or other materials provided with the
+ * distribution.
+ *
+ * Neither the name of the Ford Motor Company nor the names of its contributors
+ * may be used to endorse or promote products derived from this software
+ * without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#ifndef SRC_COMPONENTS_INCLUDE_TEST_APPLICATION_MANAGER_MOCK_REQUEST_CONTROLLER_H_
+#define SRC_COMPONENTS_INCLUDE_TEST_APPLICATION_MANAGER_MOCK_REQUEST_CONTROLLER_H_
+
+#include "application_manager/request_controller.h"
+
+namespace test {
+namespace components {
+namespace application_manager_test {
+
+class MockRequestController
+ : public application_manager::request_controller::RequestController {
+ public:
+ MOCK_METHOD0(Stop, void());
+ MOCK_METHOD0(InitializeThreadpool, void());
+ MOCK_METHOD0(DestroyThreadpool, void());
+ MOCK_METHOD2(
+ AddMobileRequest,
+ TResult(const application_manager::request_controller::RequestPtr request,
+ const mobile_apis::HMILevel::eType& hmi_level));
+ MOCK_METHOD1(AddHMIRequest,
+ TResult(const application_manager::request_controller::RequestPtr
+ request));
+ MOCK_METHOD1(
+ AddNotification,
+ void(const application_manager::request_controller::RequestPtr request));
+ MOCK_METHOD2(RetainRequestInstance,
+ bool(const uint32_t connection_key,
+ const uint32_t correlation_id));
+ MOCK_METHOD2(RemoveRetainedRequest,
+ bool(const uint32_t connection_key,
+ const uint32_t correlation_id));
+ MOCK_CONST_METHOD2(IsStillWaitingForResponse,
+ bool(const uint32_t connection_key,
+ const uint32_t correlation_id));
+ MOCK_METHOD4(TerminateRequest,
+ void(const uint32_t correlation_id,
+ const uint32_t connection_key,
+ const int32_t function_id,
+ bool force_terminate));
+ MOCK_METHOD3(OnMobileResponse,
+ void(const uint32_t mobile_correlation_id,
+ const uint32_t connection_key,
+ const int32_t function_id));
+ MOCK_METHOD2(OnHMIResponse,
+ void(const uint32_t correlation_id, const int32_t function_id));
+ MOCK_METHOD1(
+ RemoveNotification,
+ void(const application_manager::commands::Command* notification));
+ MOCK_METHOD1(TerminateAppRequests, void(const uint32_t app_id));
+ MOCK_METHOD0(TerminateAllHMIRequests, void());
+ MOCK_METHOD0(TerminateAllMobileRequests, void());
+ MOCK_METHOD3(UpdateRequestTimeout,
+ void(const uint32_t app_id,
+ const uint32_t mobile_correlation_id,
+ const uint32_t new_timeout));
+ MOCK_METHOD0(OnLowVoltage, void());
+ MOCK_METHOD0(OnWakeUp, void());
+ MOCK_METHOD0(IsLowVoltage, bool());
+};
+} // namespace application_manager_test
+} // namespace components
+} // namespace test
+
+#endif // SRC_COMPONENTS_INCLUDE_TEST_APPLICATION_MANAGER_MOCK_REQUEST_CONTROLLER_H_