-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathprj_test_ficture.cpp
More file actions
204 lines (153 loc) · 4.99 KB
/
prj_test_ficture.cpp
File metadata and controls
204 lines (153 loc) · 4.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
#include "project/test/fixture/prj_test_ficture.hpp"
#include "project/api/prj_project.hpp"
#include "project/ih/prj_project_accesso_impl.hpp"
#include "exception/ih/exc_internal_error.hpp"
#include <algorithm>
#include <functional>
#include <std_fs>
#include <string>
#include <string_view>
#include <vector>
//------------------------------------------------------------------------------
namespace project::test
{
//------------------------------------------------------------------------------
ProjectFixture::ProjectFixture() = default;
ProjectFixture::~ProjectFixture() = default;
//------------------------------------------------------------------------------
Project & ProjectFixture::getProject()
{
if( !m_project )
{
auto newProject{ getProjectAccessor().createProject() };
m_project.swap( newProject );
}
return *m_project;
}
//------------------------------------------------------------------------------
const Project & ProjectFixture::getProject() const
{
INTERNAL_CHECK_ERROR( m_project );
return *m_project;
}
//------------------------------------------------------------------------------
void ProjectFixture::setProjectDir( const Path & _path )
{
getProject().setProjectDir( _path );
}
//------------------------------------------------------------------------------
const ProjectFixture::Path & ProjectFixture::getProjectDir() const
{
return getProject().getProjectDir();
}
//------------------------------------------------------------------------------
void ProjectFixture::addIncludeDirs( const Strings & _dirs )
{
Paths paths{ toPaths( _dirs ) };
getProject().addIncludeDirs( paths );
}
//------------------------------------------------------------------------------
ProjectFixture::Paths ProjectFixture::getIncludeDirs() const
{
Paths result;
const Project & project = getProject();
const Project::IncludeDirIndex count = project.getIncludeDirsCount();
for( Project::IncludeDirIndex i = 0; i < count; ++i )
{
const Path & path = project.getIncludeDir( i );
result.push_back( path );
}
return result;
}
//------------------------------------------------------------------------------
void ProjectFixture::addIgnoreDirs( const Strings & _dirs )
{
Paths paths{ toPaths( _dirs ) };
getProject().addIgnoredDirs( paths );
}
//------------------------------------------------------------------------------
bool ProjectFixture::isIgnoreDir( std::string_view _path )
{
return getProject().isIgnoredDir( std::string{ _path } );
}
//------------------------------------------------------------------------------
ProjectFixture::Paths ProjectFixture::getIgnoreDirs() const
{
Paths result;
getProject().forEachIgnoreDir( [&]( const Path & _path ) {
result.push_back( _path );
return true;
} );
return result;
}
//------------------------------------------------------------------------------
void ProjectFixture::addFileFilter( std::string_view _filter )
{
getProject().addFileFilter( _filter );
}
//------------------------------------------------------------------------------
bool ProjectFixture::isIgnoredFile( std::string_view _path ) const
{
return getProject().isIgnoredFile( std::string( _path ) );
}
//------------------------------------------------------------------------------
void ProjectFixture::addCppExtensions( const Strings & _ext )
{
getProject().addCppFileExtensions( _ext );
}
//------------------------------------------------------------------------------
bool ProjectFixture::isExistsCppExtension( std::string_view _ext ) const
{
return getProject().isExistsCppExtension( _ext );
}
//------------------------------------------------------------------------------
void ProjectFixture::changeAllPathsToAbsolute()
{
getProject().changeAllPathsToAbsolute( getCurrentPath() );
}
//------------------------------------------------------------------------------
ProjectFixture::Path ProjectFixture::toAbsolutePath( const Path & _path )
{
return getCurrentPath() / _path;
}
//------------------------------------------------------------------------------
ProjectFixture::Path ProjectFixture::getCurrentPath()
{
return Path{ "/tmp/test_project/" };
}
//------------------------------------------------------------------------------
std::string ProjectFixture::toString( const Strings & _strings )
{
const std::string separator = ",";
std::string result;
for( const std::string & str: _strings )
{
if( !result.empty() )
{
result += separator;
}
result += str;
}
return result;
}
//------------------------------------------------------------------------------
ProjectFixture::Paths ProjectFixture::toPaths( const Strings & _strings )
{
Paths result;
for( const std::string & str: _strings )
{
result.push_back( str );
}
return result;
}
//------------------------------------------------------------------------------
ProjectAccessor & ProjectFixture::getProjectAccessor()
{
if( !m_accessor )
{
m_accessor = std::make_unique< ProjectAccessorImpl >();
}
return *m_accessor;
}
//------------------------------------------------------------------------------
}