Multiple DBAAS Redis Sentinel groups
[ric-plt/sdl.git] / include / private / tst / databaseconfigurationmock.hpp
index a195c67..e4fe0af 100644 (file)
    limitations under the License.
 */
 
+/*
+ * This source code is part of the near-RT RIC (RAN Intelligent Controller)
+ * platform project (RICP).
+*/
+
 #ifndef SHAREDDATALAYER_DATABASECONFIGURATIONMOCK_HPP_
 #define SHAREDDATALAYER_DATABASECONFIGURATIONMOCK_HPP_
 
@@ -28,10 +33,15 @@ namespace shareddatalayer
         public:
             MOCK_METHOD1(checkAndApplyDbType, void(const std::string& type));
             MOCK_METHOD1(checkAndApplyServerAddress, void(const std::string& address));
+            MOCK_METHOD1(checkAndApplySentinelAddress, void(const std::string& address));
+            MOCK_METHOD1(checkAndApplySentinelMasterName, void(const std::string& name));
             MOCK_CONST_METHOD0(getDbType, DatabaseConfiguration::DbType());
             MOCK_CONST_METHOD0(getServerAddresses, DatabaseConfiguration::Addresses());
             MOCK_CONST_METHOD0(getDefaultServerAddresses, DatabaseConfiguration::Addresses());
             MOCK_CONST_METHOD0(isEmpty, bool());
+            MOCK_CONST_METHOD0(getSentinelAddress, boost::optional<HostAndPort>());
+            MOCK_CONST_METHOD1(getSentinelAddress, boost::optional<HostAndPort>(const boost::optional<std::size_t>& addressIndex));
+            MOCK_CONST_METHOD0(getSentinelMasterName, std::string());
         };
     }
 }