tizen 2.4 release
[framework/web/wrt-commons.git] / tests / 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/wrt_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         WrtLogD("Foo: ctor: %i", id);
37     }
38
39     ~Foo()
40     {
41         WrtLogD("Foo: dtor: %i", id);
42         g_wasFooDeleted = true;
43     }
44
45     void Bar()
46     {
47         WrtLogD("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         WrtLogD("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 /*
73 Name: Thread_ThreadLocalVariable_FooDeletion
74 Description: tests local thread variable pattern
75 Expected: local thread variables should not be affected by other threads
76 */
77 RUNNER_TEST(Thread_ThreadLocalVariable_FooDeletion)
78 {
79     static TlsFoo staticFooForMain;
80     staticFooForMain = Foo(1);
81
82     TlsFoo fooForMain;
83     fooForMain = Foo(2);
84
85     RUNNER_ASSERT(!g_foo);
86     RUNNER_ASSERT(g_foo.IsNull());
87
88     g_wasFooDeleted = false;
89
90     FooThread thread1;
91     thread1.Run();
92     thread1.Quit();
93
94     RUNNER_ASSERT(!g_foo);
95     RUNNER_ASSERT(g_foo.IsNull());
96
97     RUNNER_ASSERT(g_wasFooDeleted == true);
98
99     FooThread thread2;
100     thread2.Run();
101     thread2.Quit();
102
103     RUNNER_ASSERT(!g_foo);
104     RUNNER_ASSERT(g_foo.IsNull());
105 }