summaryrefslogtreecommitdiff
path: root/tests/test_queue.cpp
diff options
context:
space:
mode:
authorJanusz Kozerski <j.kozerski@samsung.com>2015-06-15 12:59:09 +0200
committerJanusz Kozerski <j.kozerski@samsung.com>2015-07-06 14:44:15 +0200
commit263d2681b92f5d05726c1a2b7b5f4379a8f94646 (patch)
tree24b62e0f1235145fb1217905d98912e25f79e160 /tests/test_queue.cpp
parent5d8a0be19e830c951c32a605e208b7120270bc70 (diff)
downloadcert-checker-263d2681b92f5d05726c1a2b7b5f4379a8f94646.tar.gz
cert-checker-263d2681b92f5d05726c1a2b7b5f4379a8f94646.tar.bz2
cert-checker-263d2681b92f5d05726c1a2b7b5f4379a8f94646.zip
Add thread-safe Queue class
* Add m_queue member to Logic class Change-Id: I31574fccd48cddc8bbb467568cf72c4d80d94803
Diffstat (limited to 'tests/test_queue.cpp')
-rw-r--r--tests/test_queue.cpp135
1 files changed, 135 insertions, 0 deletions
diff --git a/tests/test_queue.cpp b/tests/test_queue.cpp
new file mode 100644
index 0000000..2fe7f3e
--- /dev/null
+++ b/tests/test_queue.cpp
@@ -0,0 +1,135 @@
+/*
+ * 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 test_queue.cpp
+ * @author Janusz Kozerski (j.kozerski@samsung.com)
+ * @version 1.0
+ * @brief Tests of thread-safe queue
+ */
+
+#include <boost/test/unit_test.hpp>
+#include <string>
+#include <thread>
+
+#include <cchecker/app.h>
+#include <cchecker/log.h>
+#include <cchecker/queue.h>
+
+#include <queue_test_thread.h>
+
+using namespace CCHECKER;
+
+BOOST_FIXTURE_TEST_SUITE(QUEUE_TEST, Queue)
+
+BOOST_AUTO_TEST_CASE(Queue) {
+
+ app_t app1("app_id1", "pkg_id1", 1, {});
+ app_t app2("app_id2", "pkg_id2", 2, {});
+ app_t app3("app_id@", "###", 3, {});
+
+ event_t ev1(app1, event_t::event_type_t::APP_INSTALL);
+ event_t ev2(app1, event_t::event_type_t::APP_UNINSTALL);
+
+ event_t ev3(app2, event_t::event_type_t::APP_INSTALL);
+ event_t ev4(app2, event_t::event_type_t::APP_UNINSTALL);
+
+ event_t ev;
+
+ BOOST_REQUIRE(empty() == true);
+ BOOST_REQUIRE(pop_event(ev) == false);
+ BOOST_REQUIRE(empty() == true);
+ push_event(ev1);
+ BOOST_REQUIRE(empty() == false);
+
+ BOOST_REQUIRE(pop_event(ev) == true);
+ BOOST_REQUIRE(ev1.app.app_id == ev.app.app_id);
+ BOOST_REQUIRE(ev1.app.pkg_id == ev.app.pkg_id);
+ BOOST_REQUIRE(ev1.app.uid == ev.app.uid);
+ // Certs and verified flag aren't used in queue, but can be tested
+ BOOST_REQUIRE(ev1.app.certificates == ev.app.certificates);
+ BOOST_REQUIRE(ev1.app.verified == ev.app.verified);
+ BOOST_REQUIRE(empty() == true);
+
+ push_event(ev2);
+ push_event(ev3);
+ BOOST_REQUIRE(empty() == false);
+
+ BOOST_REQUIRE(pop_event(ev) == true);
+ BOOST_REQUIRE(ev2.app.app_id == ev.app.app_id);
+ BOOST_REQUIRE(ev2.app.pkg_id == ev.app.pkg_id);
+ BOOST_REQUIRE(ev2.app.uid == ev.app.uid);
+ // Certs and verified flag aren't used in queue, but can be tested
+ BOOST_REQUIRE(ev2.app.certificates == ev.app.certificates);
+ BOOST_REQUIRE(ev2.app.verified == ev.app.verified);
+
+
+ BOOST_REQUIRE(pop_event(ev) == true);
+ BOOST_REQUIRE(ev3.app.app_id == ev.app.app_id);
+ BOOST_REQUIRE(ev3.app.pkg_id == ev.app.pkg_id);
+ BOOST_REQUIRE(ev3.app.uid == ev.app.uid);
+ // Certs and verified flag aren't used in queue, but can be tested
+ BOOST_REQUIRE(ev3.app.certificates == ev.app.certificates);
+ BOOST_REQUIRE(ev3.app.verified == ev.app.verified);
+
+ BOOST_REQUIRE(empty() == true);
+ BOOST_REQUIRE(pop_event(ev) == false);
+ push_event(ev4);
+ BOOST_REQUIRE(empty() == false);
+ BOOST_REQUIRE(pop_event(ev) == true);
+ BOOST_REQUIRE(pop_event(ev) == false);
+ BOOST_REQUIRE(pop_event(ev) == false);
+ BOOST_REQUIRE(empty() == true);
+
+ push_event(ev4);
+
+ BOOST_REQUIRE(pop_event(ev) == true);
+ BOOST_REQUIRE(ev4.app.app_id == ev.app.app_id);
+ BOOST_REQUIRE(ev4.app.pkg_id == ev.app.pkg_id);
+ BOOST_REQUIRE(ev4.app.uid == ev.app.uid);
+ // Certs and verified flag aren't used in queue, but can be tested
+ BOOST_REQUIRE(ev4.app.certificates == ev.app.certificates);
+ BOOST_REQUIRE(ev4.app.verified == ev.app.verified);
+
+ BOOST_REQUIRE(pop_event(ev) == false);
+ BOOST_REQUIRE(empty() == true);
+}
+
+BOOST_AUTO_TEST_SUITE_END()
+
+BOOST_FIXTURE_TEST_SUITE(QUEUE_MULTI_THREAD_TEST, TestQueue)
+
+BOOST_AUTO_TEST_CASE(TestQueue) {
+
+ add_events_th (1);
+ BOOST_REQUIRE(pop_events() == true);
+
+ add_events_th (2);
+ BOOST_REQUIRE(pop_events() == true);
+
+ add_events_th (3);
+ BOOST_REQUIRE(pop_events() == true);
+
+ add_events_th (5);
+ BOOST_REQUIRE(pop_events() == true);
+
+ add_events_th (10);
+ BOOST_REQUIRE(pop_events() == true);
+
+ add_events_th (20);
+ BOOST_REQUIRE(pop_events() == true);
+}
+
+BOOST_AUTO_TEST_SUITE_END()