diff --git a/tests/mock_tests/database_config.json b/tests/mock_tests/database_config.json index baf705ea230..40a7bd46423 100644 --- a/tests/mock_tests/database_config.json +++ b/tests/mock_tests/database_config.json @@ -76,6 +76,16 @@ "id" : 14, "separator": ":", "instance" : "redis" + }, + "DPU_APPL_DB" : { + "id" : 15, + "separator": ":", + "instance" : "redis" + }, + "DPU_APPL_STATE_DB" : { + "id" : 16, + "separator": "|", + "instance" : "redis" } }, "VERSION" : "1.0" diff --git a/tests/mock_tests/mock_orch_test.cpp b/tests/mock_tests/mock_orch_test.cpp index c6898188b4e..f93e3f61a71 100644 --- a/tests/mock_tests/mock_orch_test.cpp +++ b/tests/mock_tests/mock_orch_test.cpp @@ -65,6 +65,8 @@ void MockOrchTest::SetUp() m_app_db = make_shared("APPL_DB", 0); m_config_db = make_shared("CONFIG_DB", 0); m_state_db = make_shared("STATE_DB", 0); + m_dpu_app_db = make_shared("DPU_APPL_DB", 0); + m_dpu_app_state_db = make_shared("DPU_APPL_STATE_DB", 0); m_chassis_app_db = make_shared("CHASSIS_APP_DB", 0); PrepareSai(); @@ -276,4 +278,4 @@ void MockOrchTest::TearDown() ut_helper::uninitSaiApi(); } -} \ No newline at end of file +}