Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiall Douglas <ned@trueos.nedland>2017-08-23 05:23:29 +0300
committerNiall Douglas <ned@trueos.nedland>2017-08-23 05:23:29 +0300
commit446120e8e6732120ff8eeaa53498e6de4cd53f41 (patch)
treee0034f1e3628cb143afe7e2e4fdf91e3f881c271 /test/tests/current_path.cpp
parent400731ef8cb995758d75f8e8cda47b725f901e10 (diff)
Once again fully compiling on FreeBSD. And using libc++ including its experimental Filesystem TS implementation too it would seem.
Diffstat (limited to 'test/tests/current_path.cpp')
-rw-r--r--test/tests/current_path.cpp107
1 files changed, 107 insertions, 0 deletions
diff --git a/test/tests/current_path.cpp b/test/tests/current_path.cpp
new file mode 100644
index 00000000..29c98c16
--- /dev/null
+++ b/test/tests/current_path.cpp
@@ -0,0 +1,107 @@
+/* Integration test kernel for whether current path works
+(C) 2017 Niall Douglas <http://www.nedproductions.biz/> (2 commits)
+File Created: Aug 2017
+
+
+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 in the accompanying file
+Licence.txt or 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
+limitations under the License.
+
+
+Distributed under the Boost Software License, Version 1.0.
+ (See accompanying file Licence.txt or copy at
+ http://www.boost.org/LICENSE_1_0.txt)
+*/
+
+#include "../../include/afio/afio.hpp"
+#include "kerneltest/include/kerneltest.hpp"
+
+static inline void TestHandleCurrentPath()
+{
+ namespace afio = AFIO_V2_NAMESPACE;
+ afio::file_handle h1 = afio::file_handle::file({}, "tempfile", afio::file_handle::mode::write, afio::file_handle::creation::if_needed, afio::file_handle::caching::temporary, afio::file_handle::flag::unlink_on_close).value();
+ afio::directory_handle h2 = afio::directory_handle::directory({}, "tempdir", afio::file_handle::mode::write, afio::file_handle::creation::if_needed, afio::file_handle::caching::temporary, afio::file_handle::flag::unlink_on_close).value();
+
+ {
+ auto h1path=h1.current_path();
+ BOOST_CHECK(h1path);
+ if(!h1path)
+ {
+ std::cerr << "Getting the current path of a file FAILED due to " << h1path.error().message() << std::endl;
+ }
+ else if(h1path.value().empty())
+ {
+ BOOST_CHECK(!h1path.value().empty());
+ std::cerr << "Getting the current path of a file FAILED due to the returned path being empty" << std::endl;
+ }
+ else
+ {
+ std::cout << "The path of the file is " << h1path.value() << std::endl;
+ }
+
+ auto h2path=h2.current_path();
+ BOOST_CHECK(h2path);
+ if(!h2path)
+ {
+ std::cerr << "Getting the current path of a directory FAILED due to " << h2path.error().message() << std::endl;
+ }
+ else if(h2path.value().empty())
+ {
+ BOOST_CHECK(!h2path.value().empty());
+ std::cerr << "Getting the current path of a directory FAILED due to the returned path being empty" << std::endl;
+ }
+ else
+ {
+ std::cout << "The path of the directory is " << h2path.value() << std::endl;
+ }
+ }
+
+ h1.relink({}, "tempfile2").value();
+ h2.relink({}, "tempdir2").value();
+
+ {
+ auto h1path=h1.current_path();
+ BOOST_CHECK(h1path);
+ if(!h1path)
+ {
+ std::cerr << "Getting the current path of a file FAILED due to " << h1path.error().message() << std::endl;
+ }
+ else if(h1path.value().empty())
+ {
+ BOOST_CHECK(!h1path.value().empty());
+ std::cerr << "Getting the current path of a file FAILED due to the returned path being empty" << std::endl;
+ }
+ else
+ {
+ std::cout << "The path of the file is " << h1path.value() << std::endl;
+ }
+
+ auto h2path=h2.current_path();
+ BOOST_CHECK(h2path);
+ if(!h2path)
+ {
+ std::cerr << "Getting the current path of a directory FAILED due to " << h2path.error().message() << std::endl;
+ }
+ else if(h2path.value().empty())
+ {
+ BOOST_CHECK(!h2path.value().empty());
+ std::cerr << "Getting the current path of a directory FAILED due to the returned path being empty" << std::endl;
+ }
+ else
+ {
+ std::cout << "The path of the directory is " << h2path.value() << std::endl;
+ }
+ }
+
+}
+
+KERNELTEST_TEST_KERNEL(integration, afio, current_path, handle, "Tests that afio::handle::current_path() works as expected", TestHandleCurrentPath())