Skip to content

Commit

Permalink
add smoke tests for basic PathBuf interactions
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfJung committed Apr 26, 2024
1 parent 2b676f2 commit 79198ae
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 37 deletions.
60 changes: 60 additions & 0 deletions tests/pass/path.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
//@compile-flags: -Zmiri-disable-isolation
use std::path::{absolute, Path, PathBuf};

#[path = "../utils/mod.rs"]
mod utils;

#[track_caller]
fn assert_absolute_eq(in_: &str, out: &str) {
assert_eq!(absolute(in_).unwrap().as_os_str(), Path::new(out).as_os_str());
}

fn test_absolute() {
if cfg!(unix) {
assert_absolute_eq("/a/b/c", "/a/b/c");
assert_absolute_eq("/a/b/c", "/a/b/c");
assert_absolute_eq("/a//b/c", "/a/b/c");
assert_absolute_eq("//a/b/c", "//a/b/c");
assert_absolute_eq("///a/b/c", "/a/b/c");
assert_absolute_eq("/a/b/c/", "/a/b/c/");
assert_absolute_eq("/a/./b/../c/.././..", "/a/b/../c/../..");
} else if cfg!(windows) {
// Test that all these are unchanged
assert_absolute_eq(r"C:\path\to\file", r"C:\path\to\file");
assert_absolute_eq(r"C:\path\to\file\", r"C:\path\to\file\");
assert_absolute_eq(r"\\server\share\to\file", r"\\server\share\to\file");
assert_absolute_eq(r"\\server.\share.\to\file", r"\\server.\share.\to\file");
assert_absolute_eq(r"\\.\PIPE\name", r"\\.\PIPE\name");
assert_absolute_eq(r"\\.\C:\path\to\COM1", r"\\.\C:\path\to\COM1");
assert_absolute_eq(r"\\?\C:\path\to\file", r"\\?\C:\path\to\file");
assert_absolute_eq(r"\\?\UNC\server\share\to\file", r"\\?\UNC\server\share\to\file");
assert_absolute_eq(r"\\?\PIPE\name", r"\\?\PIPE\name");
// Verbatim paths are always unchanged, no matter what.
assert_absolute_eq(r"\\?\path.\to/file..", r"\\?\path.\to/file..");

assert_absolute_eq(r"C:\path..\to.\file.", r"C:\path..\to\file");
assert_absolute_eq(r"COM1", r"\\.\COM1");
} else {
panic!("unsupported OS");
}
}

fn buf_smoke(mut p: PathBuf) {
for _c in p.components() {}

p.push("hello");
for _c in p.components() {}

if cfg!(windows) {
p.push(r"C:\mydir");
} else {
p.push(r"/mydir");
}
for _c in p.components() {}
}

fn main() {
buf_smoke(PathBuf::new());
buf_smoke(utils::tmp());
test_absolute();
}
37 changes: 0 additions & 37 deletions tests/pass/shims/path.rs

This file was deleted.

0 comments on commit 79198ae

Please sign in to comment.