1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
use anyhow::{Context, Result};
use std::{
fs::canonicalize,
path::{Path, PathBuf},
};
pub fn get_current_working_dir(working_dir: Option<PathBuf>) -> Result<PathBuf> {
let current_dir = std::env::current_dir()?;
let dir = working_dir.unwrap_or(current_dir);
canonicalize(&dir).with_context(|| format!("could not get full path: {:?}", dir))
}
pub fn get_full_path_str(path: &Path) -> Result<String> {
let path = canonicalize(path).with_context(|| format!("couldn't get full path {:?}", &path))?;
path.to_str()
.map(|t| t.trim_end_matches('/').to_string())
.with_context(|| "could not convert to string".to_string())
}
pub fn pretty_print(input: &[u8]) {
bat::PrettyPrinter::new()
.header(true)
.grid(true)
.line_numbers(true)
.language("sql")
.input_from_bytes(input)
.print()
.unwrap();
}
pub fn is_dir(path: &Path) -> bool {
path.read_dir().is_ok()
}
#[cfg(test)]
mod tests {
use super::*;
use predicates::prelude::*;
use std::env::current_dir;
use std::fs::create_dir_all;
use std::path::Path;
use tempfile::tempdir;
#[test]
fn test_get_current_working_dir_without_param() {
assert_eq!(
get_current_working_dir(None).unwrap(),
current_dir().unwrap()
);
}
#[test]
fn test_get_current_working_dir_with_param() {
let dir = tempdir().expect("could not create temp dir");
let path_1 = dir.path();
let path_2 = dir.path();
let actual = get_current_working_dir(Some(path_1.to_path_buf())).unwrap();
let predicate_fn = predicate::str::contains(format!("{}", path_2.display()));
assert!(predicate_fn.eval(actual.to_str().unwrap()));
}
#[test]
fn test_get_full_path_str() {
let dir = tempdir().unwrap();
let dir_str = dir.path().to_str().unwrap();
let path = dir.path().join("dir");
create_dir_all(&path).expect("could not create dir");
let test_path = dir.path().join("dir");
let predicate_fn = predicate::str::contains(format!("{}/dir", dir_str));
assert!(predicate_fn.eval(&get_full_path_str(&test_path).unwrap()));
let test_path = dir.path().join("dir/");
let predicate_fn = predicate::str::contains(format!("{}/dir", dir_str));
assert!(predicate_fn.eval(&get_full_path_str(&test_path).unwrap()));
let test_path = dir.path().join("dir///");
let predicate_fn = predicate::str::contains(format!("{}/dir", dir_str));
assert!(predicate_fn.eval(&get_full_path_str(&test_path).unwrap()));
let test_path = dir.path().join("/not/exists/dir///");
assert!(get_full_path_str(&test_path).is_err());
let path = Path::new("/tmp/dir/a.sql");
assert!(get_full_path_str(path).is_err());
dir.close().expect("could not close the tempdir");
}
}