summaryrefslogtreecommitdiff
path: root/tests/test_queue.cpp
blob: 384d6e42fd599220a326ac30d943308b81986623 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*
 * 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/log.h>
#include <queue_test_thread.h>
#include <app_event_operators.h>

using namespace CCHECKER;

BOOST_FIXTURE_TEST_SUITE(QUEUE_TEST, Queue)

BOOST_AUTO_TEST_CASE(Queue_operators) {
    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);

    BOOST_REQUIRE(ev1 == ev1);
    BOOST_REQUIRE(ev1 != ev2);
    BOOST_REQUIRE(ev2 != ev1);
    BOOST_REQUIRE(ev2 == ev2);
}

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 == ev);

    BOOST_REQUIRE(empty() == true);

    push_event(ev2);
    push_event(ev3);
    BOOST_REQUIRE(empty() == false);

    BOOST_REQUIRE(pop_event(ev) == true);
    BOOST_REQUIRE(ev2 == ev);

    BOOST_REQUIRE(pop_event(ev) == true);
    BOOST_REQUIRE(ev3 == ev);


    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 == ev);


    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()