Tizen 2.0 Release
[framework/web/wrt-commons.git] / tests / dpl / core / test_thread.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_thread.cpp
18  * @author      Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @version     1.0
20  * @brief       This file is the implementation file of thread tests
21  */
22 #include <dpl/test/test_runner.h>
23 #include <dpl/thread.h>
24 #include <dpl/log/log.h>
25
26 RUNNER_TEST_GROUP_INIT(DPL)
27
28 bool g_wasFooDeleted;
29
30 class Foo
31 {
32 public:
33     int id;
34     Foo(int i=0): id(i)
35     {
36         LogInfo("Foo: ctor: " << id);
37     }
38
39     ~Foo()
40     {
41         LogInfo("Foo: dtor: " << id);
42         g_wasFooDeleted = true;
43     }
44
45     void Bar()
46     {
47         LogInfo("Foo: bar");
48     }
49 };
50
51 typedef DPL::ThreadLocalVariable<Foo> TlsFoo;
52 TlsFoo g_foo;
53
54 class FooThread
55     : public DPL::Thread
56 {
57 protected:
58     virtual int ThreadEntry()
59     {
60         LogInfo("In thread");
61
62         RUNNER_ASSERT(!g_foo);
63         RUNNER_ASSERT(g_foo.IsNull());
64
65         g_foo = Foo();
66         g_foo->Bar();
67
68         return 0;
69     }
70 };
71
72 RUNNER_TEST(Thread_ThreadLocalVariable_FooDeletion)
73 {
74     static TlsFoo staticFooForMain;
75     staticFooForMain = Foo(1);
76
77     TlsFoo fooForMain;
78     fooForMain = Foo(2);
79
80     RUNNER_ASSERT(!g_foo);
81     RUNNER_ASSERT(g_foo.IsNull());
82
83     g_wasFooDeleted = false;
84
85     FooThread thread1;
86     thread1.Run();
87     thread1.Quit();
88
89     RUNNER_ASSERT(!g_foo);
90     RUNNER_ASSERT(g_foo.IsNull());
91
92     RUNNER_ASSERT(g_wasFooDeleted == true);
93
94     FooThread thread2;
95     thread2.Run();
96     thread2.Quit();
97
98     RUNNER_ASSERT(!g_foo);
99     RUNNER_ASSERT(g_foo.IsNull());
100 }