Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
N
ngraph
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ngraph
Commits
6ba3b8dc
Commit
6ba3b8dc
authored
Nov 14, 2017
by
Robert Kimball
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add file_util unit tests
parent
284562a3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
96 additions
and
0 deletions
+96
-0
CMakeLists.txt
test/CMakeLists.txt
+1
-0
file_util.cpp
test/file_util.cpp
+95
-0
No files found.
test/CMakeLists.txt
View file @
6ba3b8dc
...
...
@@ -26,6 +26,7 @@ set (SRC
copy.cpp
build_graph.cpp
eigen.cpp
file_util.cpp
input_output_assign.cpp
main.cpp
op.cpp
...
...
test/file_util.cpp
0 → 100644
View file @
6ba3b8dc
// ----------------------------------------------------------------------------
// Copyright 2017 Nervana Systems Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// ----------------------------------------------------------------------------
#include <random>
#include <sstream>
#include <string>
#include <vector>
#include "gtest/gtest.h"
#include "ngraph/file_util.hpp"
using
namespace
std
;
using
namespace
ngraph
;
TEST
(
file_util
,
path_join
)
{
{
string
s1
=
""
;
string
s2
=
""
;
EXPECT_STREQ
(
""
,
file_util
::
path_join
(
s1
,
s2
).
c_str
());
}
{
string
s1
=
""
;
string
s2
=
"/test1/test2"
;
EXPECT_STREQ
(
"/test1/test2"
,
file_util
::
path_join
(
s1
,
s2
).
c_str
());
}
{
string
s1
=
""
;
string
s2
=
"/test1/test2/"
;
EXPECT_STREQ
(
"/test1/test2/"
,
file_util
::
path_join
(
s1
,
s2
).
c_str
());
}
{
string
s1
=
""
;
string
s2
=
"test1/test2"
;
EXPECT_STREQ
(
"test1/test2"
,
file_util
::
path_join
(
s1
,
s2
).
c_str
());
}
{
string
s1
=
"/x1/x2"
;
string
s2
=
""
;
EXPECT_STREQ
(
"/x1/x2"
,
file_util
::
path_join
(
s1
,
s2
).
c_str
());
}
{
string
s1
=
"/x1/x2/"
;
string
s2
=
"/"
;
EXPECT_STREQ
(
"/"
,
file_util
::
path_join
(
s1
,
s2
).
c_str
());
}
{
string
s1
=
"/x1/x2"
;
string
s2
=
"/test1/test2"
;
EXPECT_STREQ
(
"/test1/test2"
,
file_util
::
path_join
(
s1
,
s2
).
c_str
());
}
{
string
s1
=
"/x1/x2/"
;
string
s2
=
"test1/test2"
;
EXPECT_STREQ
(
"/x1/x2/test1/test2"
,
file_util
::
path_join
(
s1
,
s2
).
c_str
());
}
{
string
s1
=
"/x1/x2"
;
string
s2
=
"test1/test2"
;
EXPECT_STREQ
(
"/x1/x2/test1/test2"
,
file_util
::
path_join
(
s1
,
s2
).
c_str
());
}
{
string
s1
=
"/"
;
string
s2
=
"test1/test2"
;
EXPECT_STREQ
(
"/test1/test2"
,
file_util
::
path_join
(
s1
,
s2
).
c_str
());
}
}
TEST
(
file_util
,
get_temp_directory
)
{
string
tmp
=
file_util
::
get_temp_directory
();
EXPECT_NE
(
0
,
tmp
.
size
());
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment