summaryrefslogtreecommitdiff
path: root/src/components/application_manager/rpc_plugins/rc_rpc_plugin/test/commands/rc_get_interior_vehicle_data_consent_test.cc
blob: 07ab202620752a481a464fa88411e69c5b39e736 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
/*
 * Copyright (c) 2018, 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.
 */

#include "application_manager/application.h"
#include "application_manager/commands/command_request_test.h"
#include "application_manager/include/application_manager/command_holder_impl.h"
#include "application_manager/message.h"
#include "application_manager/mock_application.h"
#include "application_manager/mock_command_factory.h"
#include "application_manager/mock_event_dispatcher.h"
#include "application_manager/mock_hmi_capabilities.h"
#include "application_manager/mock_request_controller_settings.h"
#include "application_manager/mock_request_timeout_handler.h"
#include "application_manager/mock_rpc_plugin.h"
#include "application_manager/mock_rpc_plugin_manager.h"
#include "application_manager/mock_rpc_protection_manager.h"
#include "application_manager/request_controller_impl.h"
#include "application_manager/rpc_service_impl.h"
#include "hmi_message_handler/mock_hmi_message_handler.h"
#include "include/test/protocol_handler/mock_protocol_handler.h"
#include "interfaces/MOBILE_API.h"
#include "rc_rpc_plugin/commands/hmi/rc_get_interior_vehicle_data_consent_request.h"
#include "rc_rpc_plugin/commands/hmi/rc_get_interior_vehicle_data_consent_response.h"
#include "rc_rpc_plugin/commands/mobile/button_press_request.h"
#include "rc_rpc_plugin/mock/mock_interior_data_cache.h"
#include "rc_rpc_plugin/mock/mock_interior_data_manager.h"
#include "rc_rpc_plugin/mock/mock_rc_capabilities_manager.h"
#include "rc_rpc_plugin/mock/mock_rc_consent_manager.h"
#include "rc_rpc_plugin/mock/mock_resource_allocation_manager.h"
#include "rc_rpc_plugin/rc_module_constants.h"
#include "rc_rpc_plugin/rc_rpc_plugin.h"
#include "test/application_manager/mock_application_manager_settings.h"

using ::testing::_;
using ::testing::Mock;
using ::testing::NiceMock;
using ::testing::Return;
using ::testing::ReturnRef;
using ::testing::SaveArg;
namespace am = ::application_manager;
using am::ApplicationSet;
using am::commands::CommandImpl;
using am::commands::MessageSharedPtr;
using am::plugin_manager::MockRPCPlugin;
using am::plugin_manager::MockRPCPluginManager;
using am::plugin_manager::RPCPlugin;
using rc_rpc_plugin::RCRPCPlugin;
using rc_rpc_plugin::commands::ButtonPressRequest;
using rc_rpc_plugin::commands::RCGetInteriorVehicleDataConsentRequest;
using rc_rpc_plugin::commands::RCGetInteriorVehicleDataConsentResponse;
using ::smart_objects::SmartObject;
using test::components::application_manager_test::MockApplication;
using test::components::application_manager_test::MockCommandFactory;
using test::components::application_manager_test::MockHMICapabilities;
using test::components::application_manager_test::MockRequestControlerSettings;
using test::components::application_manager_test::MockRequestTimeoutHandler;
using test::components::commands_test::CommandRequestTest;
using test::components::commands_test::CommandsTestMocks;
using test::components::hmi_message_handler_test::MockHMIMessageHandler;
using test::components::policy_test::MockPolicyHandlerInterface;
using test::components::protocol_handler_test::MockProtocolHandler;

namespace rc_rpc_plugin_test {
using namespace rc_rpc_plugin;

namespace {
const uint32_t kConnectionKey = 2u;
const uint32_t kAppId = 5u;
const std::string kResource = "CLIMATE";
const std::string kResourceId = "34045662-a9dc-4823-8435-91056d4c26cb";
const std::string kPolicyAppId = "policy_app_id";
const std::string kMacAddress = "device1";
}  // namespace

class RCGetInteriorVehicleDataConsentTest
    : public CommandRequestTest<CommandsTestMocks::kIsNice> {
 public:
  RCGetInteriorVehicleDataConsentTest()
      : mock_app_(std::make_shared<NiceMock<MockApplication> >())
      , command_holder(app_mngr_)
      , rc_capabilities_(std::make_shared<smart_objects::SmartObject>(
            smart_objects::SmartType::SmartType_Array))
      , rpc_protection_manager_(
            std::make_shared<application_manager::MockRPCProtectionManager>())
      , request_controller(mock_request_controler,
                           mock_request_timeout_handler_,
                           event_dispatcher_)
      , rpc_service_(app_mngr_,
                     request_controller,
                     &mock_protocol_handler,
                     &mock_hmi_handler,
                     command_holder,
                     rpc_protection_manager_,
                     hmi_so_factory_,
                     mobile_so_factoy_)
      , rc_app_extension_(
            std::make_shared<RCAppExtension>(rc_plugin_, *mock_app_))
      , mock_rpc_plugin_manager(
            std::make_shared<NiceMock<MockRPCPluginManager> >())
      , rpc_plugin(mock_rpc_plugin)
      , optional_mock_rpc_plugin(mock_rpc_plugin) {
    smart_objects::SmartObject control_caps((smart_objects::SmartType_Array));
    (*rc_capabilities_)[strings::kradioControlCapabilities] = control_caps;
    ON_CALL(*mock_app_, app_id()).WillByDefault(Return(kAppId));
    ON_CALL(*mock_app_, app_types())
        .WillByDefault(Return(std::shared_ptr<smart_objects::SmartObject>()));
    ON_CALL(app_mngr_, hmi_interfaces())
        .WillByDefault(ReturnRef(mock_hmi_interfaces_));
    ON_CALL(
        mock_hmi_interfaces_,
        GetInterfaceState(application_manager::HmiInterfaces::HMI_INTERFACE_RC))
        .WillByDefault(Return(application_manager::HmiInterfaces::
                                  InterfaceState::STATE_AVAILABLE));
    ON_CALL(app_mngr_, application(kAppId)).WillByDefault(Return(mock_app_));
    ON_CALL(*mock_app_, QueryInterface(RCAppExtension::RCAppExtensionID))
        .WillByDefault(Return(rc_app_extension_));
    testing::NiceMock<rc_rpc_plugin_test::MockInteriorDataCache>
        mock_interior_data_cache_;
    ON_CALL(app_mngr_, GetPolicyHandler())
        .WillByDefault(ReturnRef(mock_policy_handler_));
    ON_CALL(app_mngr_, hmi_capabilities())
        .WillByDefault(ReturnRef(mock_hmi_capabilities_));
    ON_CALL(mock_hmi_capabilities_, rc_capability())
        .WillByDefault(Return(rc_capabilities_));
    ON_CALL(mock_policy_handler_,
            CheckHMIType(
                _, mobile_apis::AppHMIType::eType::REMOTE_CONTROL, nullptr))
        .WillByDefault(Return(true));
    ON_CALL(mock_policy_handler_, CheckModule(_, _))
        .WillByDefault(Return(true));
    ON_CALL(app_mngr_, GetPluginManager())
        .WillByDefault(ReturnRef(*mock_rpc_plugin_manager));
    ON_CALL(*mock_rpc_plugin_manager, FindPluginToProcess(_, _))
        .WillByDefault(Return(rpc_plugin));
    ON_CALL(mock_allocation_manager_, IsResourceFree(kResource, kResourceId))
        .WillByDefault(Return(true));
    ON_CALL(mock_allocation_manager_, is_rc_enabled())
        .WillByDefault(Return(true));
    ON_CALL(mock_protocol_handler, IsRPCServiceSecure(_))
        .WillByDefault(Return(false));
    ON_CALL(*rpc_protection_manager_, CheckPolicyEncryptionFlag(_, _, _))
        .WillByDefault(Return(false));
    ON_CALL(mock_rc_capabilities_manager_, CheckIfModuleExistsInCapabilities(_))
        .WillByDefault(Return(true));
  }

  template <class Command>
  std::shared_ptr<Command> CreateRCCommand(MessageSharedPtr& msg) {
    InitCommand(kDefaultTimeout_);
    RCCommandParams params{app_mngr_,
                           rpc_service_,
                           mock_hmi_capabilities_,
                           mock_policy_handler_,
                           mock_allocation_manager_,
                           mock_interior_data_cache_,
                           mock_interior_data_manager_,
                           mock_rc_capabilities_manager_,
                           mock_rc_consent_manger_};
    return std::make_shared<Command>(msg ? msg : msg = CreateMessage(), params);
  }

  MessageSharedPtr CreateBasicMessage() {
    MessageSharedPtr message = CreateMessage();
    (*message)[application_manager::strings::params]
              [application_manager::strings::function_id] =
                  mobile_apis::FunctionID::ButtonPressID;
    (*message)[application_manager::strings::params]
              [application_manager::strings::connection_key] = kConnectionKey;
    (*message)[application_manager::strings::params]
              [application_manager::strings::connection_key] = kAppId;
    ns_smart_device_link::ns_smart_objects::SmartObject& msg_params =
        (*message)[application_manager::strings::msg_params];
    msg_params[message_params::kModuleType] = kResource;
    msg_params[message_params::kModuleId] = kResourceId;
    return message;
  }

 protected:
  std::shared_ptr<MockApplication> mock_app_;
  MockRequestControlerSettings mock_request_controler;
  MockProtocolHandler mock_protocol_handler;
  MockHMIMessageHandler mock_hmi_handler;
  am::CommandHolderImpl command_holder;
  testing::NiceMock<rc_rpc_plugin_test::MockResourceAllocationManager>
      mock_allocation_manager_;
  testing::NiceMock<rc_rpc_plugin_test::MockInteriorDataCache>
      mock_interior_data_cache_;
  testing::NiceMock<rc_rpc_plugin_test::MockInteriorDataManager>
      mock_interior_data_manager_;
  smart_objects::SmartObjectSPtr rc_capabilities_;
  MockRPCPlugin mock_rpc_plugin;
  MockCommandFactory mock_command_factory;
  std::shared_ptr<application_manager::MockRPCProtectionManager>
      rpc_protection_manager_;
  MockRequestTimeoutHandler mock_request_timeout_handler_;
  am::request_controller::RequestControllerImpl request_controller;
  am::rpc_service::RPCServiceImpl rpc_service_;
  RCRPCPlugin rc_plugin_;
  std::shared_ptr<RCAppExtension> rc_app_extension_;
  std::shared_ptr<am::plugin_manager::MockRPCPluginManager>
      mock_rpc_plugin_manager;
  utils::Optional<RPCPlugin> rpc_plugin;
  utils::Optional<MockRPCPlugin> optional_mock_rpc_plugin;
  hmi_apis::HMI_API hmi_so_factory_;
  mobile_apis::MOBILE_API mobile_so_factoy_;
  testing::NiceMock<rc_rpc_plugin_test::MockRCCapabilitiesManager>
      mock_rc_capabilities_manager_;
  testing::NiceMock<MockRCConsentManager> mock_rc_consent_manger_;
};

TEST_F(RCGetInteriorVehicleDataConsentTest,
       Run_MobileSendButtonPressMessage_HMISendASKDRIVERModeToMobile) {
  // Arrange
  auto mobile_message = CreateBasicMessage();
  ON_CALL(mock_allocation_manager_, GetAccessMode())
      .WillByDefault(Return(hmi_apis::Common_RCAccessMode::ASK_DRIVER));

  // Expectations
  EXPECT_CALL(mock_allocation_manager_, AcquireResource(_, _, _))
      .WillOnce(Return(rc_rpc_plugin::AcquireResult::ASK_DRIVER));
  ON_CALL(*mock_app_, app_id()).WillByDefault(Return(kAppId));
  ON_CALL(*mock_app_, policy_app_id()).WillByDefault(Return(kPolicyAppId));
  ON_CALL(*mock_app_, mac_address()).WillByDefault(ReturnRef(kMacAddress));

  rc_rpc_types::ModuleUid moduleUid{kResource, kResourceId};
  EXPECT_CALL(mock_rc_consent_manger_,
              GetModuleConsent(kPolicyAppId, _, moduleUid))
      .WillOnce(Return(rc_rpc_types::ModuleConsent::NOT_EXISTS));

  EXPECT_CALL(*optional_mock_rpc_plugin, GetCommandFactory())
      .WillOnce(ReturnRef(mock_command_factory));
  auto rc_consent_request =
      CreateRCCommand<commands::RCGetInteriorVehicleDataConsentRequest>(
          mobile_message);
  EXPECT_CALL(mock_command_factory, CreateCommand(_, _))
      .WillOnce(Return(rc_consent_request));
  EXPECT_CALL(mock_hmi_interfaces_,
              GetInterfaceFromFunction(
                  hmi_apis::FunctionID::RC_GetInteriorVehicleDataConsent))
      .WillOnce(Return(am::HmiInterfaces::HMI_INTERFACE_RC));

  // Act
  auto command = CreateRCCommand<commands::ButtonPressRequest>(mobile_message);
  ASSERT_TRUE(command->Init());
  command->Run();
}

TEST_F(RCGetInteriorVehicleDataConsentTest,
       Run_MobileSendButtonPressMessage_HMISendINUSEModeToMobile) {
  // Expectations
  EXPECT_CALL(mock_allocation_manager_, AcquireResource(_, _, _))
      .WillOnce(Return(rc_rpc_plugin::AcquireResult::IN_USE));

  auto msg_ver = utils::SemanticVersion();
  ON_CALL(*mock_app_, msg_version()).WillByDefault(ReturnRef(msg_ver));

  EXPECT_CALL(*optional_mock_rpc_plugin, GetCommandFactory())
      .WillOnce(ReturnRef(mock_command_factory));

  auto mobile_message = CreateBasicMessage();
  ON_CALL(mock_allocation_manager_, GetAccessMode())
      .WillByDefault(Return(hmi_apis::Common_RCAccessMode::AUTO_DENY));

  auto rc_consent_response =
      CreateRCCommand<commands::RCGetInteriorVehicleDataConsentResponse>(
          mobile_message);
  EXPECT_CALL(mock_command_factory, CreateCommand(_, _))
      .WillOnce(Return(rc_consent_response));
  auto command = CreateRCCommand<commands::ButtonPressRequest>(mobile_message);

  // Act
  ASSERT_TRUE(command->Init());
  command->Run();
}

}  // namespace rc_rpc_plugin_test