}
};
-TEST_F(RpkAppQueryInterfaceTest, DummyTest) {
+TEST_F(RpkAppQueryInterfaceTest, GetPkgIdFromPathTest) {
std::unique_ptr<common_installer::AppQueryInterface> ptr =
std::make_unique<rpk::RpkAppQueryInterface>();
EXPECT_EQ(ptr->GetPkgId(""), "");
--- /dev/null
+/*
+ * Copyright (c) 2021 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <gtest/gtest.h>
+
+#include "lib/rpk_archive_info.h"
+
+class RpkArchiveInfoTest : public ::testing::Test {
+ public:
+ virtual void SetUp() {
+ }
+
+ virtual void TearDown() {
+ }
+};
+
+TEST_F(RpkArchiveInfoTest, LoadArchiveInfo) {
+ std::unique_ptr<RpkArchiveInfo> ptr = std::make_unique<RpkArchiveInfo>("");
+ EXPECT_EQ(ptr->LoadArchiveInfo(), true);
+}
}
};
-TEST_F(RpkRegistrationTest, DummyTest) {
+TEST_F(RpkRegistrationTest, RegisterRpkInfo) {
+ EXPECT_EQ(rpk::RegisterRpkInfo(nullptr, 0), true);
+}
+
+TEST_F(RpkRegistrationTest, UpdateRpkInfo) {
+ EXPECT_EQ(rpk::UpdateRpkInfo(nullptr, 0), true);
+}
+
+TEST_F(RpkRegistrationTest, UnregisterRpkInfo) {
EXPECT_EQ(rpk::RegisterRpkInfo(nullptr, 0), true);
}