Add absolute_path function (#1121)

This commit is contained in:
Laura Demkowicz-Duffy 2022-03-03 00:41:48 +00:00 committed by GitHub
parent fe33db9568
commit a3f61a19ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 62 additions and 0 deletions

View File

@ -988,6 +988,8 @@ The executable is at: /bin/just
##### Fallible ##### Fallible
- `absolute_path(path)` - Absolute path to relative `path` in the invocation directory. `absolute_path("./bar.txt")` in directory `/foo` is `/foo/bar.txt`.
- `extension(path)` - Extension of `path`. `extension("/foo/bar.txt")` is `txt`. - `extension(path)` - Extension of `path`. `extension("/foo/bar.txt")` is `txt`.
- `file_name(path)` - File name of `path` with any leading directory components removed. `file_name("/foo/bar.txt")` is `bar.txt`. - `file_name(path)` - File name of `path` with any leading directory components removed. `file_name("/foo/bar.txt")` is `bar.txt`.

View File

@ -14,6 +14,7 @@ pub(crate) enum Function {
lazy_static! { lazy_static! {
pub(crate) static ref TABLE: BTreeMap<&'static str, Function> = vec![ pub(crate) static ref TABLE: BTreeMap<&'static str, Function> = vec![
("absolute_path", Unary(absolute_path)),
("arch", Nullary(arch)), ("arch", Nullary(arch)),
("clean", Unary(clean)), ("clean", Unary(clean)),
("env_var", Unary(env_var)), ("env_var", Unary(env_var)),
@ -59,6 +60,17 @@ impl Function {
} }
} }
fn absolute_path(context: &FunctionContext, path: &str) -> Result<String, String> {
let abs_path_unchecked = context.search.working_directory.join(path).lexiclean();
match abs_path_unchecked.to_str() {
Some(absolute_path) => Ok(absolute_path.to_owned()),
None => Err(format!(
"Working directory is not valid unicode: {}",
context.search.working_directory.display()
)),
}
}
fn arch(_context: &FunctionContext) -> Result<String, String> { fn arch(_context: &FunctionContext) -> Result<String, String> {
Ok(target::arch().to_owned()) Ok(target::arch().to_owned())
} }

View File

@ -404,6 +404,54 @@ fn test_path_exists_filepath_doesnt_exist() {
.run(); .run();
} }
#[test]
fn test_absolute_path_resolves() {
let test_object = Test::new()
.justfile("path := absolute_path('./test_file')")
.args(&["--evaluate", "path"]);
let mut tempdir = test_object.tempdir.path().to_owned();
// Just retrieves the current directory via env::current_dir(), which
// does the moral equivalent of canonicalize, which will remove symlinks.
// So, we have to canonicalize here, so that we can match it.
if cfg!(unix) {
tempdir = tempdir.canonicalize().unwrap();
}
test_object
.stdout(tempdir.join("test_file").to_str().unwrap().to_owned())
.run();
}
#[test]
fn test_absolute_path_resolves_parent() {
let test_object = Test::new()
.justfile("path := absolute_path('../test_file')")
.args(&["--evaluate", "path"]);
let mut tempdir = test_object.tempdir.path().to_owned();
// Just retrieves the current directory via env::current_dir(), which
// does the moral equivalent of canonicalize, which will remove symlinks.
// So, we have to canonicalize here, so that we can match it.
if cfg!(unix) {
tempdir = tempdir.canonicalize().unwrap();
}
test_object
.stdout(
tempdir
.parent()
.unwrap()
.join("test_file")
.to_str()
.unwrap()
.to_owned(),
)
.run();
}
#[test] #[test]
fn path_exists_subdir() { fn path_exists_subdir() {
Test::new() Test::new()