aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/old/vlib/os/glob_test.v
blob: c47311bbf782f163f86280b70e9743c205492bba (plain)
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
import os

fn deep_glob() ? {
	os.chdir(@VMODROOT)
	matches := os.glob('vlib/v/*/*.v') or { panic(err) }
	assert matches.len > 10
	assert 'vlib/v/ast/ast.v' in matches
	assert 'vlib/v/ast/table.v' in matches
	assert 'vlib/v/token/token.v' in matches
	for f in matches {
		if !f.starts_with('vlib/v/') {
			assert false
		}
		assert f.ends_with('.v')
	}
}

fn redeep_glob() ? {
	os.chdir(@VMODROOT)
	matches := os.glob('vlib/v/**/*.v') or { panic(err) }
	assert matches.len > 10
	assert 'vlib/v/ast/ast.v' in matches
	assert 'vlib/v/ast/table.v' in matches
	assert 'vlib/v/token/token.v' in matches
	for f in matches {
		if !f.starts_with('vlib/v/') {
			assert false
		}
		assert f.ends_with('.v')
	}
}

fn test_glob_can_find_v_files_3_levels_deep() ? {
	$if !windows {
		deep_glob() ?
		redeep_glob() ?
	}
	assert true
}

fn test_glob_can_find_files_in_current_folder() ? {
	os.chdir(@VMODROOT)
	matches := os.glob('*') ?
	assert '.gitignore' in matches
	assert 'make.bat' in matches
	assert 'Makefile' in matches
	assert 'Dockerfile' in matches
	assert 'README.md' in matches
	assert 'v.mod' in matches
	assert 'cmd/' in matches
	assert 'vlib/' in matches
	assert 'thirdparty/' in matches
}

fn test_glob_can_be_used_with_multiple_patterns() ? {
	os.chdir(@VMODROOT)
	matches := os.glob('*', 'cmd/tools/*') ?
	assert 'README.md' in matches
	assert 'Makefile' in matches
	$if !windows {
		assert 'cmd/tools/test_if_v_test_system_works.v' in matches
	}
	$if windows {
		assert 'test_if_v_test_system_works.v' in matches
	}
}

fn test_glob_star() ? {
	os.chdir(@VMODROOT)
	matches := os.glob('*ake*') ?
	assert 'Makefile' in matches
	assert 'make.bat' in matches
}

fn test_glob_not_found() ? {
	os.glob('an_unknown_folder/*.v') or {
		assert true
		return
	}
}