Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test_vpaths.lua « project « tests - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8616907e0e00222e692158dd19593099c47bc7cb (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
--
-- tests/project/test_vpaths.lua
-- Automated test suite for the project support functions.
-- Copyright (c) 2011 Jason Perkins and the Premake project
--

	T.project_vpaths = { }
	local suite = T.project_vpaths	
	local project = premake.project


--
-- Setup and teardown
--

	local sln, prj
	function suite.setup()
		sln = test.createsolution()
	end

	local function prepare()
		premake.bake.buildconfigs()
		prj = premake.solution.getproject(sln, 1)
	end

	
--
-- Test simple replacements
--

	function suite.ReturnsOriginalPath_OnNoVpaths()
		prepare()
		test.isequal("hello.c", project.getvpath(prj, "hello.c"))
	end

	function suite.ReturnsOriginalPath_OnNoMatches()
		vpaths { ["Headers"] = "**.h" }
		prepare()
		test.isequal("hello.c", project.getvpath(prj, "hello.c"))
	end

	function suite.CanTrimLeadingPaths()
		vpaths { [""] = "src" }
		prepare()
		test.isequal("myproject/hello.c", project.getvpath(prj, "src/myproject/hello.c"))
	end

	function suite.PatternMayIncludeTrailingSlash()
		vpaths { [""] = "src/myproject/" }
		prepare()
		test.isequal("hello.c", project.getvpath(prj, "src/myproject/hello.c"))
	end

	function suite.SimpleReplacementPatterns()
		vpaths { ["sources"] = "src/myproject" }
		prepare()
		test.isequal("sources/hello.c", project.getvpath(prj, "src/myproject/hello.c"))
	end


--
-- Test wildcard patterns
--

	function suite.MatchFilePattern_ToGroup_Flat()
		vpaths { ["Headers"] = "**.h" }
		prepare()
		test.isequal("Headers/hello.h", project.getvpath(prj, "src/myproject/hello.h"))
	end

	function suite.MatchFilePattern_ToNestedGroup_Flat()
		vpaths { ["Source/Headers"] = "**.h" }
		prepare()
		test.isequal("Source/Headers/hello.h", project.getvpath(prj, "src/myproject/hello.h"))
	end	

	function suite.MatchFilePattern_ToGroup_WithTrailingSlash()
		vpaths { ["Headers/"] = "**.h" }
		prepare()
		test.isequal("Headers/hello.h", project.getvpath(prj, "src/myproject/hello.h"))
	end

	function suite.MatchFilePattern_ToNestedGroup_Flat()
		vpaths { ["Group/Headers"] = "**.h" }
		prepare()
		test.isequal("Group/Headers/hello.h", project.getvpath(prj, "src/myproject/hello.h"))
	end	

	function suite.MatchFilePattern_ToGroup_Nested()
		vpaths { ["Headers/**"] = "**.h" }
		prepare()
		test.isequal("Headers/src/myproject/hello.h", project.getvpath(prj, "src/myproject/hello.h"))
	end	

	function suite.MatchFilePattern_ToGroup_Nested_OneStar()
		vpaths { ["Headers/*"] = "**.h" }
		prepare()
		test.isequal("Headers/src/myproject/hello.h", project.getvpath(prj, "src/myproject/hello.h"))
	end	

	function suite.MatchFilePatternWithPath_ToGroup_Nested()
		vpaths { ["Headers/**"] = "src/**.h" }
		prepare()
		test.isequal("Headers/myproject/hello.h", project.getvpath(prj, "src/myproject/hello.h"))
	end	



--
-- Test directory dot patterns
--

	function suite.RemovesLeadingDotFolder()
		prepare()
		test.isequal("hello.c", project.getvpath(prj, "./hello.c"))
	end

	function suite.RemovesLeadingDotDotFolder()
		prepare()
		test.isequal("hello.c", project.getvpath(prj, "../hello.c"))
	end

	function suite.RemovesMultipleLeadingDotDotFolders()
		prepare()
		test.isequal("src/hello.c", project.getvpath(prj, "../../src/hello.c"))
	end
	

--
-- Test with project locations
--

	function suite.MatchPath_OnProjectLocationSet()		
		location "build"
		files "src/hello.h"
		vpaths { [""] = "src" }
		prepare()
		test.isequal("hello.h", project.getvpath(prj, prj.files[1]))
	end

	function suite.MatchFilePattern_OnProjectLocationSet()
		location "build"
		files "src/hello.h"
		vpaths { ["Headers"] = "**.h" }
		prepare()
		test.isequal("Headers/hello.h", project.getvpath(prj, prj.files[1]))
	end

	function suite.MatchFilePatternWithPath_OnProjectLocationSet()
		location "build"
		files "src/hello.h"
		vpaths { ["Headers"] = "src/**.h" }
		prepare()
		test.isequal("Headers/hello.h", project.getvpath(prj, prj.files[1]))
	end