From f612527e5082589067e442747b846a30b99ececa Mon Sep 17 00:00:00 2001 From: Carmen Fan Date: Thu, 8 Feb 2024 14:04:29 +0000 Subject: [PATCH] ISSUE #671 add synchro 6.5.3.7 test case --- test/src/system/st_3drepobouncerClient.cpp | 4 ++++ test/src/unit/repo_test_database_info.h | 1 + 2 files changed, 5 insertions(+) diff --git a/test/src/system/st_3drepobouncerClient.cpp b/test/src/system/st_3drepobouncerClient.cpp index 4e75cfd6a..2ad694740 100644 --- a/test/src/system/st_3drepobouncerClient.cpp +++ b/test/src/system/st_3drepobouncerClient.cpp @@ -482,6 +482,10 @@ TEST(RepoClientTest, UploadTestSPM) std::string spmUpload5 = produceUploadArgs(db, "synchroTest5", getDataPath(synchroVersion6_5)); EXPECT_EQ((int)REPOERR_OK, runProcess(spmUpload5)); EXPECT_TRUE(projectExists(db, "synchroTest5")); + + std::string spmUpload6 = produceUploadArgs(db, "synchroTest6", getDataPath(synchroVersion6_5_3_7)); + EXPECT_EQ((int)REPOERR_OK, runProcess(spmUpload6)); + EXPECT_TRUE(projectExists(db, "synchroTest6")); } TEST(RepoClientTest, UploadTestRVTRegressionTests) diff --git a/test/src/unit/repo_test_database_info.h b/test/src/unit/repo_test_database_info.h index 08d9b90c8..8e26d6984 100644 --- a/test/src/unit/repo_test_database_info.h +++ b/test/src/unit/repo_test_database_info.h @@ -72,6 +72,7 @@ const static std::string synchroOldVersion = "synchro6_1.spm"; const static std::string synchroVersion6_3 = "synchro6_3.spm"; const static std::string synchroVersion6_4 = "synchro6_4.spm"; const static std::string synchroVersion6_5 = "synchro6_5.spm"; +const static std::string synchroVersion6_5_3_7 = "synchro6_5_3_7.spm"; const static std::string emptyFile = "empty.json"; const static std::string emptyJSONFile = "empty2.json";