aboutsummaryrefslogtreecommitdiff
path: root/tests/link
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-02-14 15:20:36 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-02-15 13:28:46 +0300
commit3c3b18efe6b9fc6f51d16c9569ca1e150adeaf76 (patch)
treeda5a01f5084ce8511f722fb08c3c57bf5ec9b5e3 /tests/link
parentaf98c733afe67e10ca87801b9bd05a2dfa1d3950 (diff)
Fix directory symlinks support on Windows
Diffstat (limited to 'tests/link')
-rw-r--r--tests/link/driver.cxx34
1 files changed, 32 insertions, 2 deletions
diff --git a/tests/link/driver.cxx b/tests/link/driver.cxx
index 7aebeae..76cdbfc 100644
--- a/tests/link/driver.cxx
+++ b/tests/link/driver.cxx
@@ -177,9 +177,39 @@ main ()
// Create the directory symlink using an absolute path.
//
dir_path ld (td / dir_path ("dslink"));
- assert (link_dir (dp, ld, false, true));
+ assert (link_dir (dp, ld, false /* hard */, true /* check_content */));
- try_rmsymlink (ld);
+ {
+ pair<bool, entry_stat> pe (path_entry (ld / "f"));
+ assert (pe.first && pe.second.type == entry_type::regular);
+ }
+
+ {
+ pair<bool, entry_stat> pe (path_entry (ld));
+ assert (pe.first && pe.second.type == entry_type::symlink);
+ }
+
+ {
+ pair<bool, entry_stat> pe (path_entry (ld, true /* follow_symlinks */));
+ assert (pe.first && pe.second.type == entry_type::directory);
+ }
+
+ for (const dir_entry& de: dir_iterator (td, false /* ignore_dangling */))
+ {
+ assert (de.path () != path ("dslink") ||
+ (de.type () == entry_type::directory &&
+ de.ltype () == entry_type::symlink));
+ }
+
+ // Remove the directory symlink and make sure the target's content still
+ // exists.
+ //
+ assert (try_rmsymlink (ld) == rmfile_status::success);
+
+ {
+ pair<bool, entry_stat> pe (path_entry (dp / "f"));
+ assert (pe.first && pe.second.type == entry_type::regular);
+ }
#ifndef _WIN32
// Create the directory symlink using an unexistent directory path.