Tizen 2.0 Release
[framework/web/wrt-commons.git] / tests / dpl / core / test_shared_ptr.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_shared_ptr.cpp
18  * @author      Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @version     1.0
20  * @brief       This file is the implementation file of test shared ptr
21  */
22 #include <dpl/test/test_runner.h>
23 #include <dpl/shared_ptr.h>
24
25 RUNNER_TEST_GROUP_INIT(DPL)
26
27 RUNNER_TEST(SharedPtr_Zero)
28 {
29     DPL::SharedPtr<char> ptr;
30
31     RUNNER_ASSERT(!ptr);
32     RUNNER_ASSERT(!!!ptr);
33     RUNNER_ASSERT(ptr == DPL::SharedPtr<char>());
34 }
35
36 RUNNER_TEST(SharedPtr_NonZero)
37 {
38     DPL::SharedPtr<char> ptr(new char(7));
39
40     RUNNER_ASSERT(ptr);
41     RUNNER_ASSERT(!!ptr);
42     RUNNER_ASSERT(ptr != DPL::SharedPtr<char>());
43 }
44
45 RUNNER_TEST(SharedPtr_Copy)
46 {
47     DPL::SharedPtr<char> ptr1(new char(7));
48     DPL::SharedPtr<char> ptr2(new char(7));
49
50     RUNNER_ASSERT(ptr1 != ptr2);
51
52     ptr2 = ptr1;
53
54     RUNNER_ASSERT(ptr1 == ptr2);
55 }
56
57 RUNNER_TEST(SharedPtr_Reset)
58 {
59     DPL::SharedPtr<char> ptr(new char(7));
60     ptr.Reset();
61
62     RUNNER_ASSERT(!ptr);
63
64     ptr.Reset(new char);
65     RUNNER_ASSERT(ptr);
66 }
67
68 RUNNER_TEST(SharedPtr_RefCounting)
69 {
70     DPL::SharedPtr<char> ptr1(new char(7));
71     DPL::SharedPtr<char> ptr2;
72
73     ptr2 = ptr1;
74
75     RUNNER_ASSERT(ptr1 == ptr2);
76     RUNNER_ASSERT(ptr1.GetUseCount() == ptr2.GetUseCount());
77     RUNNER_ASSERT(ptr1.GetUseCount() == 2);
78 }
79
80 RUNNER_TEST(SharedPtr_Operators)
81 {
82     DPL::SharedPtr<char> ptr(new char(7));
83
84     RUNNER_ASSERT(*ptr == *ptr.Get());
85 }