Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
BornAgain
Commits
2a52f71d
Commit
2a52f71d
authored
4 years ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
clang-format
parent
1e8eb0d7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Base/Utils/FileSystemUtils.cpp
+5
-5
5 additions, 5 deletions
Base/Utils/FileSystemUtils.cpp
Core/Export/INodeUtils.h
+2
-0
2 additions, 0 deletions
Core/Export/INodeUtils.h
Tests/UnitTests/Core/Other/FileSystemUtilsTest.cpp
+37
-37
37 additions, 37 deletions
Tests/UnitTests/Core/Other/FileSystemUtilsTest.cpp
with
44 additions
and
42 deletions
Base/Utils/FileSystemUtils.cpp
+
5
−
5
View file @
2a52f71d
...
@@ -15,12 +15,12 @@
...
@@ -15,12 +15,12 @@
#include
"Base/Utils/FileSystemUtils.h"
#include
"Base/Utils/FileSystemUtils.h"
#include
"Base/Utils/Assert.h"
#include
"Base/Utils/Assert.h"
#include
<codecvt>
#include
<codecvt>
#include
<filesystem>
#include
<locale>
#include
<locale>
#include
<regex>
#include
<regex>
#include
<stdexcept>
#include
<stdexcept>
#include
<filesystem>
namespace
fs
=
std
::
filesystem
;
// make the code more readable
namespace
fs
=
std
::
filesystem
;
// make the code more readable
std
::
string
FileSystemUtils
::
extension
(
const
std
::
string
&
path
)
{
std
::
string
FileSystemUtils
::
extension
(
const
std
::
string
&
path
)
{
return
fs
::
path
(
path
).
extension
().
string
();
return
fs
::
path
(
path
).
extension
().
string
();
...
@@ -31,7 +31,7 @@ std::string FileSystemUtils::extensions(const std::string& path) {
...
@@ -31,7 +31,7 @@ std::string FileSystemUtils::extensions(const std::string& path) {
if
(
name
==
".."
)
if
(
name
==
".."
)
return
{};
return
{};
const
auto
pos
=
name
.
find_first_of
(
'.'
,
1
);
// 1: ignore any file-is-hidden dot
const
auto
pos
=
name
.
find_first_of
(
'.'
,
1
);
// 1: ignore any file-is-hidden dot
return
pos
!=
std
::
string
::
npos
?
name
.
substr
(
pos
,
name
.
size
()
-
pos
)
:
std
::
string
();
return
pos
!=
std
::
string
::
npos
?
name
.
substr
(
pos
,
name
.
size
()
-
pos
)
:
std
::
string
();
}
}
...
@@ -67,7 +67,7 @@ std::vector<std::string> FileSystemUtils::filesInDirectory(const std::string& di
...
@@ -67,7 +67,7 @@ std::vector<std::string> FileSystemUtils::filesInDirectory(const std::string& di
std
::
string
FileSystemUtils
::
jointPath
(
const
std
::
string
&
path1
,
const
std
::
string
&
path2
)
{
std
::
string
FileSystemUtils
::
jointPath
(
const
std
::
string
&
path1
,
const
std
::
string
&
path2
)
{
ASSERT
(
path1
!=
""
);
ASSERT
(
path1
!=
""
);
ASSERT
(
path2
!=
""
);
ASSERT
(
path2
!=
""
);
return
(
fs
::
path
(
path1
)
/
fs
::
path
(
path2
)).
string
();
return
(
fs
::
path
(
path1
)
/
fs
::
path
(
path2
)).
string
();
}
}
...
@@ -92,7 +92,7 @@ std::string FileSystemUtils::stem_ext(const std::string& path) {
...
@@ -92,7 +92,7 @@ std::string FileSystemUtils::stem_ext(const std::string& path) {
if
(
name
==
".."
)
if
(
name
==
".."
)
return
name
;
return
name
;
const
auto
pos
=
name
.
find_first_of
(
'.'
,
1
);
// 1: ignore any file-is-hidden dot
const
auto
pos
=
name
.
find_first_of
(
'.'
,
1
);
// 1: ignore any file-is-hidden dot
return
pos
!=
std
::
string
::
npos
?
name
.
substr
(
0
,
pos
)
:
name
;
return
pos
!=
std
::
string
::
npos
?
name
.
substr
(
0
,
pos
)
:
name
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Core/Export/INodeUtils.h
+
2
−
0
View file @
2a52f71d
...
@@ -18,6 +18,7 @@
...
@@ -18,6 +18,7 @@
#include
"Param/Node/INode.h"
#include
"Param/Node/INode.h"
namespace
INodeUtils
{
namespace
INodeUtils
{
template
<
typename
T
>
std
::
vector
<
const
T
*>
ChildNodesOfType
(
const
INode
&
node
)
{
template
<
typename
T
>
std
::
vector
<
const
T
*>
ChildNodesOfType
(
const
INode
&
node
)
{
std
::
vector
<
const
T
*>
result
;
std
::
vector
<
const
T
*>
result
;
for
(
const
auto
&
p_child
:
node
.
getChildren
())
{
for
(
const
auto
&
p_child
:
node
.
getChildren
())
{
...
@@ -44,6 +45,7 @@ template <typename T> std::vector<const T*> AllDescendantsOfType(const INode& no
...
@@ -44,6 +45,7 @@ template <typename T> std::vector<const T*> AllDescendantsOfType(const INode& no
}
}
return
result
;
return
result
;
}
}
}
// namespace INodeUtils
}
// namespace INodeUtils
#endif // BORNAGAIN_CORE_EXPORT_INODEUTILS_H
#endif // BORNAGAIN_CORE_EXPORT_INODEUTILS_H
This diff is collapsed.
Click to expand it.
Tests/UnitTests/Core/Other/FileSystemUtilsTest.cpp
+
37
−
37
View file @
2a52f71d
#include
"Base/Utils/FileSystemUtils.h"
#include
"Base/Utils/FileSystemUtils.h"
#include
"BATesting.h"
#include
"Tests/GTestWrapper/google_test.h"
#include
"Tests/GTestWrapper/google_test.h"
#include
<filesystem>
#include
<filesystem>
#include
<fstream>
#include
<fstream>
#include
"BATesting.h"
class
FileSystemUtilsTest
:
public
::
testing
::
Test
{
class
FileSystemUtilsTest
:
public
::
testing
::
Test
{
protected:
protected:
void
SetUp
()
override
{
void
SetUp
()
override
{
FileSystemUtils
::
createDirectories
(
BATesting
::
TestOutDir_Core
());
FileSystemUtils
::
createDirectories
(
BATesting
::
TestOutDir_Core
());
ASSERT_TRUE
(
std
::
filesystem
::
exists
(
BATesting
::
TestOutDir_Core
()));
ASSERT_TRUE
(
std
::
filesystem
::
exists
(
BATesting
::
TestOutDir_Core
()));
ASSERT_TRUE
(
assureNonExistingTestCasePath
());
ASSERT_TRUE
(
assureNonExistingTestCasePath
());
}
}
void
TearDown
()
override
{
void
TearDown
()
override
{
EXPECT_TRUE
(
assureNonExistingTestCasePath
());
EXPECT_TRUE
(
assureNonExistingTestCasePath
());
// by design no removing of BATesting::TestOutDir_Core() which may have been
// by design no removing of BATesting::TestOutDir_Core() which may have been
// created in SetUp
// created in SetUp
}
}
std
::
string
testCaseFolderName
()
const
{
std
::
string
testCaseFolderName
()
const
{
const
auto
test_info
=
::
testing
::
UnitTest
::
GetInstance
()
->
current_test_info
();
const
auto
test_info
=
::
testing
::
UnitTest
::
GetInstance
()
->
current_test_info
();
return
test_info
->
test_case_name
()
+
std
::
string
(
"_"
)
+
test_info
->
name
();
return
test_info
->
test_case_name
()
+
std
::
string
(
"_"
)
+
test_info
->
name
();
}
}
std
::
string
testCasePath
()
const
{
std
::
string
testCasePath
()
const
{
return
FileSystemUtils
::
jointPath
(
BATesting
::
TestOutDir_Core
(),
testCaseFolderName
());
return
FileSystemUtils
::
jointPath
(
BATesting
::
TestOutDir_Core
(),
testCaseFolderName
());
}
}
//! Assures the test case specific path is not existent. Removes it if necessary.
//! Assures the test case specific path is not existent. Removes it if necessary.
bool
assureNonExistingTestCasePath
()
const
{
bool
assureNonExistingTestCasePath
()
const
{
// current dir must not be the dir to be removed
// current dir must not be the dir to be removed
std
::
filesystem
::
current_path
(
BATesting
::
TestOutDir_Core
());
std
::
filesystem
::
current_path
(
BATesting
::
TestOutDir_Core
());
std
::
filesystem
::
remove_all
(
testCasePath
());
std
::
filesystem
::
remove_all
(
testCasePath
());
return
!
std
::
filesystem
::
exists
(
testCasePath
());
return
!
std
::
filesystem
::
exists
(
testCasePath
());
}
}
};
};
TEST_F
(
FileSystemUtilsTest
,
extension
)
{
TEST_F
(
FileSystemUtilsTest
,
extension
)
{
...
@@ -64,10 +64,10 @@ TEST_F(FileSystemUtilsTest, extensions) {
...
@@ -64,10 +64,10 @@ TEST_F(FileSystemUtilsTest, extensions) {
TEST_F
(
FileSystemUtilsTest
,
filename
)
{
TEST_F
(
FileSystemUtilsTest
,
filename
)
{
EXPECT_EQ
(
FileSystemUtils
::
filename
(
""
),
""
);
EXPECT_EQ
(
FileSystemUtils
::
filename
(
""
),
""
);
EXPECT_EQ
(
FileSystemUtils
::
filename
(
"/home/james/"
),
""
);
EXPECT_EQ
(
FileSystemUtils
::
filename
(
"/home/james/"
),
""
);
EXPECT_EQ
(
FileSystemUtils
::
filename
(
"/home/james/."
),
"."
);
// sic! according to C++17
EXPECT_EQ
(
FileSystemUtils
::
filename
(
"/home/james/."
),
"."
);
// sic! according to C++17
EXPECT_EQ
(
FileSystemUtils
::
filename
(
"/home/james/.."
),
".."
);
// sic! according to C++17
EXPECT_EQ
(
FileSystemUtils
::
filename
(
"/home/james/.."
),
".."
);
// sic! according to C++17
EXPECT_EQ
(
FileSystemUtils
::
filename
(
"/home/james/.hidden"
),
".hidden"
);
EXPECT_EQ
(
FileSystemUtils
::
filename
(
"/home/james/.hidden"
),
".hidden"
);
EXPECT_EQ
(
FileSystemUtils
::
filename
(
"/home/james/file.txt"
),
"file.txt"
);
EXPECT_EQ
(
FileSystemUtils
::
filename
(
"/home/james/file.txt"
),
"file.txt"
);
EXPECT_EQ
(
FileSystemUtils
::
filename
(
"/home/james/file"
),
"file"
);
EXPECT_EQ
(
FileSystemUtils
::
filename
(
"/home/james/file"
),
"file"
);
}
}
...
@@ -128,7 +128,7 @@ TEST_F(FileSystemUtilsTest, createDirectories) {
...
@@ -128,7 +128,7 @@ TEST_F(FileSystemUtilsTest, createDirectories) {
EXPECT_FALSE
(
FileSystemUtils
::
createDirectories
(
sub4
));
EXPECT_FALSE
(
FileSystemUtils
::
createDirectories
(
sub4
));
EXPECT_TRUE
(
std
::
filesystem
::
exists
(
"sub3"
));
EXPECT_TRUE
(
std
::
filesystem
::
exists
(
"sub3"
));
EXPECT_TRUE
(
std
::
filesystem
::
exists
(
"sub3/sub4"
));
EXPECT_TRUE
(
std
::
filesystem
::
exists
(
"sub3/sub4"
));
EXPECT_TRUE
(
std
::
filesystem
::
exists
(
FileSystemUtils
::
jointPath
(
sub2
,
sub4
)));
EXPECT_TRUE
(
std
::
filesystem
::
exists
(
FileSystemUtils
::
jointPath
(
sub2
,
sub4
)));
}
}
TEST_F
(
FileSystemUtilsTest
,
jointPath
)
{
TEST_F
(
FileSystemUtilsTest
,
jointPath
)
{
...
@@ -156,8 +156,8 @@ TEST_F(FileSystemUtilsTest, filesInDirectory_IsFileExists) {
...
@@ -156,8 +156,8 @@ TEST_F(FileSystemUtilsTest, filesInDirectory_IsFileExists) {
std
::
ofstream
(
"file2.txt"
);
std
::
ofstream
(
"file2.txt"
);
std
::
ofstream
(
"file3.txt"
);
std
::
ofstream
(
"file3.txt"
);
EXPECT_EQ
(
FileSystemUtils
::
filesInDirectory
(
testCasePath
()).
size
(),
3
);
// abs
EXPECT_EQ
(
FileSystemUtils
::
filesInDirectory
(
testCasePath
()).
size
(),
3
);
// abs
EXPECT_EQ
(
FileSystemUtils
::
filesInDirectory
(
"."
).
size
(),
3
);
// rel
EXPECT_EQ
(
FileSystemUtils
::
filesInDirectory
(
"."
).
size
(),
3
);
// rel
const
auto
files
=
FileSystemUtils
::
filesInDirectory
(
"."
);
const
auto
files
=
FileSystemUtils
::
filesInDirectory
(
"."
);
EXPECT_TRUE
(
std
::
find
(
files
.
begin
(),
files
.
end
(),
"file1.txt"
)
!=
files
.
end
());
EXPECT_TRUE
(
std
::
find
(
files
.
begin
(),
files
.
end
(),
"file1.txt"
)
!=
files
.
end
());
EXPECT_TRUE
(
std
::
find
(
files
.
begin
(),
files
.
end
(),
"file2.txt"
)
!=
files
.
end
());
EXPECT_TRUE
(
std
::
find
(
files
.
begin
(),
files
.
end
(),
"file2.txt"
)
!=
files
.
end
());
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment