pull in new policy updates
[profile/ivi/smartdevicelink.git] / src / components / policy / test / policy / include / mock_pt_representation.h
1 /* Copyright (c) 2013, Ford Motor Company
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  * Redistributions of source code must retain the above copyright notice, this
8  * list of conditions and the following disclaimer.
9  *
10  * Redistributions in binary form must reproduce the above copyright notice,
11  * this list of conditions and the following
12  * disclaimer in the documentation and/or other materials provided with the
13  * distribution.
14  *
15  * Neither the name of the Ford Motor Company nor the names of its contributors
16  * may be used to endorse or promote products derived from this software
17  * without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
23  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  * POSSIBILITY OF SUCH DAMAGE.
30  */
31
32 #ifndef TEST_COMPONENTS_POLICY_INCLUDE_MOCK_PT_REPRESENTATION_H_
33 #define TEST_COMPONENTS_POLICY_INCLUDE_MOCK_PT_REPRESENTATION_H_
34
35 #include "gmock/gmock.h"
36 #include "policy/pt_representation.h"
37 #include "rpc_base/rpc_base.h"
38 #include "./types.h"
39
40 namespace policy_table = ::rpc::policy_table_interface_base;
41
42 namespace policy {
43
44 class MockPTRepresentation : virtual public PTRepresentation {
45   public:
46     MOCK_METHOD3(CheckPermissions,
47                  CheckPermissionResult(const PTString& app_id, const PTString& hmi_level,
48                                        const PTString& rpc));
49     MOCK_METHOD0(IsPTPreloaded,
50                  bool());
51     MOCK_METHOD0(IgnitionCyclesBeforeExchange,
52                  int());
53     MOCK_METHOD1(KilometersBeforeExchange,
54                  int(int current));
55     MOCK_METHOD2(SetCountersPassedForSuccessfulUpdate,
56                  bool(int kilometers, int days_after_epoch));
57     MOCK_METHOD1(DaysBeforeExchange,
58                  int(int current));
59     MOCK_METHOD0(IncrementIgnitionCycles,
60                  void());
61     MOCK_METHOD0(ResetIgnitionCycles,
62                  void());
63     MOCK_METHOD0(TimeoutResponse,
64                  int());
65     MOCK_METHOD1(SecondsBetweenRetries,
66                  bool(std::vector<int>* seconds));
67     MOCK_METHOD0(GetVehicleData,
68                  VehicleData());
69     MOCK_METHOD2(GetUserFriendlyMsg,
70                  std::vector<UserFriendlyMessage>(const std::vector<std::string>& msg_code,
71                      const std::string& language));
72     MOCK_METHOD1(GetUpdateUrls,
73                  EndpointUrls(int service_type));
74     MOCK_METHOD1(GetNotificationsNumber,
75                  int(policy_table::Priority priority));
76     MOCK_METHOD0(Init,
77                  InitResult());
78     MOCK_METHOD0(Close,
79                  bool());
80     MOCK_METHOD0(Clear,
81                  bool());
82     MOCK_METHOD0(Drop,
83                  bool());
84     MOCK_CONST_METHOD0(GenerateSnapshot,
85                        utils::SharedPtr<policy_table::Table>());
86     MOCK_METHOD1(Save,
87                  bool(const policy_table::Table& table));
88     MOCK_CONST_METHOD0(UpdateRequired,
89                        bool());
90     MOCK_METHOD1(SaveUpdateRequired,
91                  void(bool value));
92     MOCK_METHOD3(GetInitialAppData,
93                  bool(const std::string& app_id, StringArray* nicknames, StringArray* app_types));
94     MOCK_CONST_METHOD1(IsApplicationRevoked, bool(const std::string& app_id));
95     MOCK_METHOD1(GetFunctionalGroupings,
96                  bool(policy_table::FunctionalGroupings& groups));
97     MOCK_CONST_METHOD1(IsApplicationRepresented, bool(const std::string& app_id));
98     MOCK_CONST_METHOD1(IsDefaultPolicy, bool(const std::string& app_id));
99     MOCK_METHOD1(SetDefaultPolicy, bool(const std::string& app_id));
100     MOCK_CONST_METHOD1(IsPredataPolicy, bool(const std::string& app_id));
101 };
102
103 }
104 // namespace policy
105
106 #endif  // TEST_COMPONENTS_POLICY_INCLUDE_MOCK_PT_REPRESENTATION_H_