tizen 2.3.1 release
[framework/web/wearable/wrt-commons.git] / tests / core / test_semaphore.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_semaphore.cpp
18  * @author      Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @version     1.0
20  * @brief       This file is the implementation file of semaphore tests
21  */
22 #include <dpl/test/test_runner.h>
23 #include <dpl/lexical_cast.h>
24 #include <dpl/semaphore.h>
25 #include <dpl/thread.h>
26 #include <dpl/log/log.h>
27 #include <string>
28 #include <ctime>
29
30 RUNNER_TEST_GROUP_INIT(DPL)
31
32 class SemaphoreThread :
33     public DPL::Thread
34 {
35     int m_delta;
36     int m_times;
37     int *m_value;
38     std::string m_semaphoreName;
39
40   public:
41     SemaphoreThread(int delta,
42                     int times,
43                     int *value,
44                     const std::string &semaphoreName) :
45         m_delta(delta),
46         m_times(times),
47         m_value(value),
48         m_semaphoreName(semaphoreName)
49     {}
50
51   protected:
52     virtual int ThreadEntry()
53     {
54         DPL::Semaphore semaphore(m_semaphoreName);
55
56         for (int i = 0; i < m_times; ++i) {
57             // Take scoped semaphore lock
58             DPL::Semaphore::ScopedLock lock(&semaphore);
59             *m_value += m_delta;
60         }
61
62         return 0;
63     }
64 };
65
66 /*
67 Name: Semaphore_NamedIncrementDecrement
68 Description: Checks if semaphore are working
69 Expected: value should not change after all
70 */
71 RUNNER_TEST(Semaphore_NamedIncrementDecrement)
72 {
73     std::string semaphoreName =
74         "dpl_test_semaphore_" +
75         DPL::lexical_cast<std::string>(std::time(NULL));
76
77     int value = 0;
78     SemaphoreThread threadA(-1, 10000, &value, semaphoreName);
79     SemaphoreThread threadB(+1, 10000, &value, semaphoreName);
80
81     threadA.Run();
82     threadB.Run();
83
84     threadA.Quit();
85     threadB.Quit();
86
87     RUNNER_ASSERT_MSG(value == 0, "Final value is: " << value);
88 }