merge with master
[platform/framework/web/wrt-commons.git] / tests / core / test_once.cpp
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /*
17  * @file        test_once.cpp
18  * @author      Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @version     1.0
20  * @brief       This file is the implementation file of once tests
21  */
22 #include <dpl/test/test_runner.h>
23 #include <dpl/once.h>
24 #include <dpl/waitable_event.h>
25 #include <dpl/waitable_handle.h>
26 #include <dpl/thread.h>
27 #include <dpl/atomic.h>
28 #include <memory>
29
30 RUNNER_TEST_GROUP_INIT(DPL)
31
32 namespace // anonymous
33 {
34 gint g_counter;
35
36 void Delegate()
37 {
38     ++g_counter;
39 }
40 } // namespace anonymous
41
42 RUNNER_TEST(Once_DoubleCall)
43 {
44     g_counter = 0;
45
46     DPL::Once once;
47
48     once.Call(&Delegate);
49     once.Call(&Delegate);
50
51     RUNNER_ASSERT_MSG(g_counter == 1, "Counter value is: " << g_counter);
52 }
53
54 class MyThread :
55     public DPL::Thread
56 {
57   protected:
58     virtual int ThreadEntry()
59     {
60         DPL::WaitForSingleHandle(m_event->GetHandle());
61         m_once->Call(DPL::Once::Delegate(this, &MyThread::Call));
62         return 0;
63     }
64
65     void Call()
66     {
67         ++*m_atom;
68     }
69
70   public:
71     MyThread(DPL::WaitableEvent *event, DPL::Once *once, DPL::Atomic *atom) :
72         m_event(event), m_once(once), m_atom(atom)
73     {}
74
75   private:
76     DPL::WaitableEvent *m_event;
77     DPL::Once *m_once;
78     DPL::Atomic *m_atom;
79 };
80
81 /*
82 Name: Once_MultiThreadCall
83 Description: tests once call wrapper for use by multiple threads
84 Expected: function should be called just once from one of running threads
85 */
86 RUNNER_TEST(Once_MultiThreadCall)
87 {
88     const size_t NUM_THREADS = 20;
89     typedef std::shared_ptr<MyThread> ThreadPtr;
90
91     ThreadPtr threads[NUM_THREADS];
92     DPL::WaitableEvent event;
93     DPL::Once once;
94     DPL::Atomic atom;
95
96     for (size_t i = 0; i < NUM_THREADS; ++i) {
97         (threads[i] = ThreadPtr(new MyThread(&event, &once, &atom)))->Run();
98     }
99
100     event.Signal();
101
102     for (size_t i = 0; i < NUM_THREADS; ++i) {
103         threads[i]->Quit();
104     }
105
106     RUNNER_ASSERT_MSG(atom == 1, "Atom value is: " << atom);
107 }