tizen beta release
[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/shared_ptr.h>
28 #include <dpl/atomic.h>
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
76 private:
77     DPL::WaitableEvent *m_event;
78     DPL::Once *m_once;
79     DPL::Atomic *m_atom;
80 };
81
82 RUNNER_TEST(Once_MultiThreadCall)
83 {
84     const size_t NUM_THREADS = 20;
85     typedef DPL::SharedPtr<MyThread> ThreadPtr;
86
87     ThreadPtr threads[NUM_THREADS];
88     DPL::WaitableEvent event;
89     DPL::Once once;
90     DPL::Atomic atom;
91
92     for (size_t i = 0; i< NUM_THREADS; ++i)
93     {
94         (threads[i] = ThreadPtr(new MyThread(&event, &once, &atom)))->Run();
95     }
96
97     event.Signal();
98
99     for (size_t i = 0; i< NUM_THREADS; ++i)
100         threads[i]->Quit();
101
102     RUNNER_ASSERT_MSG(atom == 1, "Atom value is: " << atom);
103 }