279b5ef26693f2b84bf6d4f4d09e8fde6c38c65e
[platform/core/test/security-tests.git] / src / framework / include / dpl / test / test_runner_multiprocess.h
1 /*
2  * Copyright (c) 2013 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_runner_multiprocess.h
18  * @author      Marcin Niesluchowski (m.niesluchow@samsung.com)
19  * @version     1.0
20  * @brief       This file is the header file of multiprocess test runner
21  */
22 #ifndef DPL_TEST_RUNNER_MULTIPROCESS_H
23 #define DPL_TEST_RUNNER_MULTIPROCESS_H
24
25 #include <dpl/test/test_runner_child.h>
26
27 namespace DPL {
28 namespace Test {
29
30 class SimplePipeWrapper :
31         public PipeWrapper
32 {
33   public:
34     SimplePipeWrapper();
35
36     virtual ~SimplePipeWrapper();
37
38     Status send(std::string &message);
39     Status receive(std::string &data, bool &empty, time_t deadline);
40 };
41
42 void RunMultiProc(TestRunner::TestCase procMulti);
43 } // namespace Test
44 } // namespace DPL
45
46 #define RUNNER_MULTIPROCESS_TEST(Proc)                                               \
47     void Proc();                                                                     \
48     void Proc##Multi();                                                              \
49     static int Static##Proc##Init()                                                  \
50     {                                                                                \
51         DPL::Test::TestRunnerSingleton::Instance().RegisterTest(#Proc, &Proc);       \
52         return 0;                                                                    \
53     }                                                                                \
54     const int DPL_UNUSED Static##Proc##InitVar = Static##Proc##Init();               \
55     void Proc(){                                                                     \
56         DPL::Test::RunMultiProc(&Proc##Multi);                                       \
57     }                                                                                \
58     void Proc##Multi()
59
60 #endif // DPL_TEST_RUNNER_MULTIPROCESS_H