summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJanusz Kozerski <j.kozerski@samsung.com>2015-06-22 15:07:51 +0200
committerJanusz Kozerski <j.kozerski@samsung.com>2015-08-03 16:14:30 +0200
commita091055a43789a3fb3586dd364ba857765b685cc (patch)
tree639c9245f193556cd300529ef04eba1d484d0755 /tests
parent6be76744f1e8a8291b410437867cd2c1ca9b576a (diff)
downloadcert-checker-a091055a43789a3fb3586dd364ba857765b685cc.tar.gz
cert-checker-a091055a43789a3fb3586dd364ba857765b685cc.tar.bz2
cert-checker-a091055a43789a3fb3586dd364ba857765b685cc.zip
Add popup UI (+tests)
Notification framework currently doesn't work properly on tizen.org/common. To test UI run: cert-checker-popup-test, and check if UI is displayed correctly. Change-Id: I0eb9b134c77c82eb77b4834b81a1cd1fa19dd620
Diffstat (limited to 'tests')
-rw-r--r--tests/CMakeLists.txt18
-rw-r--r--tests/popup_test.cpp45
2 files changed, 63 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index f3cd9e4..c8183ae 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -7,6 +7,7 @@ PKG_CHECK_MODULES(CERT_CHECKER_TESTS_DEP
glib-2.0
gio-2.0
icu-i18n
+ notification
key-manager
libsystemd-journal
libtzplatform-config
@@ -53,6 +54,16 @@ SET(CERT_CHECKER_TESTS_SOURCES
${CERT_CHECKER_SRC_PATH}/db/sql_query.cpp
)
+SET(CERT_CHECKER_POPUP_TEST_SOURCES
+ # tests
+ ${CERT_CHECKER_TESTS_SRC_PATH}/popup_test.cpp
+ # cert-checker
+ ${CERT_CHECKER_SRC_PATH}/app.cpp
+ ${CERT_CHECKER_SRC_PATH}/ui/UIBackend.cpp
+ # logs
+ ${CERT_CHECKER_SRC_PATH}/log/log.cpp
+ )
+
INCLUDE_DIRECTORIES(SYSTEM
${CERT_CHECKER_DEP_INCLUDE_DIRS}
${CERT_CHECKER_SRC_PATH}/include/
@@ -62,6 +73,7 @@ INCLUDE_DIRECTORIES(SYSTEM
)
ADD_EXECUTABLE(${TARGET_CERT_CHECKER_TESTS} ${CERT_CHECKER_TESTS_SOURCES})
+ADD_EXECUTABLE(${TARGET_CERT_CHECKER_POPUP_TEST} ${CERT_CHECKER_POPUP_TEST_SOURCES})
TARGET_LINK_LIBRARIES(${TARGET_CERT_CHECKER_TESTS}
${CERT_CHECKER_TESTS_DEP_LIBRARIES}
@@ -70,6 +82,11 @@ TARGET_LINK_LIBRARIES(${TARGET_CERT_CHECKER_TESTS}
-ldl
)
+TARGET_LINK_LIBRARIES(${TARGET_CERT_CHECKER_POPUP_TEST}
+ ${CERT_CHECKER_TESTS_DEP_LIBRARIES}
+ -ldl
+ )
+
#### Test files/signatures
INSTALL(FILES
files/app1/author-signature.xml
@@ -80,3 +97,4 @@ INSTALL(FILES
DESTINATION ${TEST_APP_SIGNATURES_DIR}/app_2/)
INSTALL(TARGETS ${TARGET_CERT_CHECKER_TESTS} DESTINATION ${BINDIR})
+INSTALL(TARGETS ${TARGET_CERT_CHECKER_POPUP_TEST} DESTINATION ${BINDIR})
diff --git a/tests/popup_test.cpp b/tests/popup_test.cpp
new file mode 100644
index 0000000..e2e1e3d
--- /dev/null
+++ b/tests/popup_test.cpp
@@ -0,0 +1,45 @@
+/*
+ * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * 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
+ */
+/*
+ * @file popup_test.cpp
+ * @author Janusz Kozerski (j.kozerski@samsung.com)
+ * @version 1.0
+ * @brief Cert-checker popup test
+ */
+
+#include <cchecker/UIBackend.h>
+#include <cchecker/log.h>
+
+using namespace CCHECKER;
+
+int main(void)
+{
+ LogDebug("Cert-checker start!");
+
+ setlocale(LC_ALL, "");
+
+ UI::UIBackend ui(20); // timeout 20 seconds
+
+ app_t app(std::string("test_APP_ID"),
+ std::string("test PKG ID"),
+ 5005,
+ {});
+
+ ui.call_popup(app);
+
+ LogDebug("Cert-checker exit!");
+ return 0;
+}