1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

os: extract dir_expansions_test.v from os_test.v

This commit is contained in:
Delyan Angelov 2022-09-01 13:06:13 +03:00
parent 0cc0e87051
commit 728b198384
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
2 changed files with 44 additions and 40 deletions

View File

@ -0,0 +1,43 @@
import os
fn test_tmpdir() {
t := os.temp_dir()
assert t.len > 0
assert os.is_dir(t)
tfile := t + os.path_separator + 'tmpfile.txt'
os.rm(tfile) or {} // just in case
tfile_content := 'this is a temporary file'
os.write_file(tfile, tfile_content) or { panic(err) }
tfile_content_read := os.read_file(tfile) or { panic(err) }
assert tfile_content_read == tfile_content
os.rm(tfile) or { panic(err) }
}
fn test_is_writable_folder() {
tmp := os.temp_dir()
f := os.is_writable_folder(tmp) or {
eprintln('err: $err')
false
}
assert f
}
fn test_expand_tilde_to_home() {
os.setenv('HOME', '/tmp/home/folder', true)
os.setenv('USERPROFILE', '/tmp/home/folder', true)
//
home_test := os.join_path(os.home_dir(), 'test', 'tilde', 'expansion')
home_expansion_test := os.expand_tilde_to_home(os.join_path('~', 'test', 'tilde',
'expansion'))
assert home_test == home_expansion_test
assert os.expand_tilde_to_home('~') == os.home_dir()
}
fn test_config_dir() ? {
cdir := os.config_dir()?
assert cdir.len > 0
adir := '$cdir/test-v-config'
os.mkdir_all(adir)?
os.rmdir(adir)?
assert os.is_dir(cdir)
}

View File

@ -455,28 +455,6 @@ fn test_realpath_absolutepath_symlink() ? {
os.rm(file_name) or {}
}
fn test_tmpdir() {
t := os.temp_dir()
assert t.len > 0
assert os.is_dir(t)
tfile := t + os.path_separator + 'tmpfile.txt'
os.rm(tfile) or {} // just in case
tfile_content := 'this is a temporary file'
os.write_file(tfile, tfile_content) or { panic(err) }
tfile_content_read := os.read_file(tfile) or { panic(err) }
assert tfile_content_read == tfile_content
os.rm(tfile) or { panic(err) }
}
fn test_is_writable_folder() {
tmp := os.temp_dir()
f := os.is_writable_folder(tmp) or {
eprintln('err: $err')
false
}
assert f
}
fn test_make_symlink_check_is_link_and_remove_symlink() {
folder := 'tfolder'
symlink := 'tsymlink'
@ -678,9 +656,7 @@ fn test_uname() {
}
// tests for write_file_array and read_file_array<T>:
const (
maxn = 3
)
const maxn = 3
struct IntPoint {
x int
@ -842,14 +818,6 @@ fn test_utime() {
assert os.file_last_mod_unix(filename) == mtime
}
fn test_expand_tilde_to_home() {
home_test := os.join_path(os.home_dir(), 'test', 'tilde', 'expansion')
home_expansion_test := os.expand_tilde_to_home(os.join_path('~', 'test', 'tilde',
'expansion'))
assert home_test == home_expansion_test
assert os.expand_tilde_to_home('~') == os.home_dir()
}
fn test_execute() ? {
print0script := os.join_path_single(tfolder, 'print0.v')
// The output of the next command contains a 0 byte in the middle.
@ -902,10 +870,3 @@ fn test_command() {
// dump( cmd_to_fail )
assert cmd_to_fail.exit_code != 0 // 2 on linux, 1 on macos
}
fn test_config_dir() {
cdir := os.config_dir() or { panic(err) }
adir := '$cdir/test-v-config'
os.mkdir_all(adir) or { panic(err) }
os.rmdir(adir) or { panic(err) }
}