aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-11-13 23:44:41 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-11-14 13:05:22 +0300
commit31ccc33713e3ebd0fc0479d906f114ea33c5d616 (patch)
tree7e98082c70e412c0171413b64c391cf20087c132 /tests
parent161a8e6a768679bde7054fef96dcbb936c866151 (diff)
Add to_stream(ostream, path, bool)
Diffstat (limited to 'tests')
-rw-r--r--tests/path/driver.cxx28
1 files changed, 22 insertions, 6 deletions
diff --git a/tests/path/driver.cxx b/tests/path/driver.cxx
index 72fdf9f..ba25e5b 100644
--- a/tests/path/driver.cxx
+++ b/tests/path/driver.cxx
@@ -5,6 +5,7 @@
#include <cassert>
#ifndef __cpp_lib_modules_ts
+#include <sstream>
#include <iostream>
#include <type_traits>
#endif
@@ -17,10 +18,10 @@ import std.core;
import std.io;
#endif
import butl.path;
-import butl.path_io;
+//import butl.path_io;
#else
#include <libbutl/path.mxx>
-#include <libbutl/path-io.mxx>
+//#include <libbutl/path-io.mxx>
#endif
using namespace std;
@@ -44,16 +45,31 @@ main ()
static_assert (is_nothrow_move_constructible<dir_path>::value, "");
#endif
- auto test = [] (const char* p, const char* s, const char* r)
+ auto ts = [] (const path& p, bool representation)
+ {
+ ostringstream os;
+ to_stream (os, p, representation);
+ return os.str ();
+ };
+
+ auto test = [&ts] (const char* p, const char* s, const char* r)
{
path x (p);
- return x.string () == s && x.representation () == r;
+
+ return x.string () == s &&
+ x.representation () == r &&
+ ts (x, false /* representation */) == s &&
+ ts (x, true /* representation */) == r;
};
- auto dir_test = [] (const char* p, const char* s, const char* r)
+ auto dir_test = [&ts] (const char* p, const char* s, const char* r)
{
dir_path x (p);
- return x.string () == s && x.representation () == r;
+
+ return x.string () == s &&
+ x.representation () == r &&
+ ts (x, false /* representation */) == s &&
+ ts (x, true /* representation */) == r;
};
#ifndef _WIN32