Add CyadCommandlineParser
[platform/core/security/cynara.git] / test / cyad / CyadCommandlineTest.h
1 /*
2  * Copyright (c) 2014 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/cyad/CyadCommandlineTest.h
18  * @author      Aleksander Zdyb <a.zdyb@samsung.com>
19  * @version     1.0
20  * @brief       Fixture for CyadCommandlineParser tests
21  */
22
23 #ifndef TEST_CYAD_CYADCOMMANDLINETEST_H_
24 #define TEST_CYAD_CYADCOMMANDLINETEST_H_
25
26 #include <cstdlib>
27 #include <cstring>
28 #include <memory>
29 #include <new>
30 #include <string>
31 #include <vector>
32
33 #include <gmock/gmock.h>
34 #include <gtest/gtest.h>
35
36 #include <cyad/CommandlineParser/CyadCommand.h>
37 #include <cyad/CommandlineParser/CyadCommandlineParser.h>
38
39 class CyadCommandlineTest : public ::testing::Test {
40 public:
41     typedef std::vector<std::string> Args;
42
43     void prepare_argv(const Args &args) {
44         destroy_argv();
45
46         m_argc = args.size();
47         m_argv = new char *[m_argc];
48
49         for (auto i = 0; i < m_argc; ++i) {
50             m_argv[i] = strdup(args.at(i).c_str());
51             if (m_argv[i] == nullptr)
52                 throw std::bad_alloc();
53         }
54     }
55
56     int argc(void) const {
57         return m_argc;
58     }
59
60     char * const *argv(void) const {
61         return m_argv;
62     }
63
64 protected:
65     virtual void TearDown(void) {
66         destroy_argv();
67     }
68
69     void destroy_argv(void) {
70         for (auto i = 0; i < m_argc; ++i) {
71             free(m_argv[i]);
72         }
73         delete[] m_argv;
74
75         m_argc = 0;
76         m_argv = nullptr;
77     }
78
79 private:
80     int m_argc = 0;
81     char **m_argv = nullptr;
82 };
83
84 #endif /* TEST_CYAD_CYADCOMMANDLINETEST_H_ */