Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
46
Src/external_dependencies/openmpt-trunk/include/genie/tests/project/test_eachfile.lua
vendored
Normal file
46
Src/external_dependencies/openmpt-trunk/include/genie/tests/project/test_eachfile.lua
vendored
Normal file
|
@ -0,0 +1,46 @@
|
|||
--
|
||||
-- tests/project/test_eachfile.lua
|
||||
-- Automated test suite for the file iteration function.
|
||||
-- Copyright (c) 2011 Jason Perkins and the Premake project
|
||||
--
|
||||
|
||||
T.project_eachfile = { }
|
||||
local suite = T.project_eachfile
|
||||
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
|
||||
|
||||
|
||||
--
|
||||
-- Tests
|
||||
--
|
||||
|
||||
function suite.ReturnsAllFiles()
|
||||
files { "hello.h", "hello.c" }
|
||||
prepare()
|
||||
local iter = project.eachfile(prj)
|
||||
test.isequal("hello.h", iter().name)
|
||||
test.isequal("hello.c", iter().name)
|
||||
test.isnil(iter())
|
||||
end
|
||||
|
||||
|
||||
function suite.ReturnedObjectIncludesVpath()
|
||||
files { "hello.h", "hello.c" }
|
||||
prepare()
|
||||
local iter = project.eachfile(prj)
|
||||
test.isequal("hello.h", iter().vpath)
|
||||
end
|
160
Src/external_dependencies/openmpt-trunk/include/genie/tests/project/test_vpaths.lua
vendored
Normal file
160
Src/external_dependencies/openmpt-trunk/include/genie/tests/project/test_vpaths.lua
vendored
Normal file
|
@ -0,0 +1,160 @@
|
|||
--
|
||||
-- tests/project/test_vpaths.lua
|
||||
-- Automated test suite for the project support functions.
|
||||
-- Copyright (c) 2011-2012 Jason Perkins and the Premake project
|
||||
--
|
||||
|
||||
T.project_vpaths = { }
|
||||
local suite = T.project_vpaths
|
||||
local project = premake.project
|
||||
|
||||
|
||||
--
|
||||
-- Setup and teardown
|
||||
--
|
||||
|
||||
local sln
|
||||
|
||||
function suite.setup()
|
||||
sln = test.createsolution()
|
||||
end
|
||||
|
||||
local function run()
|
||||
premake.bake.buildconfigs()
|
||||
local prj = premake.solution.getproject(sln, 1)
|
||||
local cfg = premake.getconfig(prj, "Debug")
|
||||
return project.getvpath(prj, cfg.files[1])
|
||||
end
|
||||
|
||||
|
||||
--
|
||||
-- Test simple replacements
|
||||
--
|
||||
|
||||
function suite.ReturnsOriginalPath_OnNoVpaths()
|
||||
files { "hello.c" }
|
||||
test.isequal("hello.c", run())
|
||||
end
|
||||
|
||||
function suite.ReturnsOriginalPath_OnNoMatches()
|
||||
files { "hello.c" }
|
||||
vpaths { ["Headers"] = "**.h" }
|
||||
test.isequal("hello.c", run())
|
||||
end
|
||||
|
||||
function suite.CanStripPaths()
|
||||
files { "src/myproject/hello.c" }
|
||||
vpaths { [""] = "src" }
|
||||
run()
|
||||
test.isequal("hello.c", run())
|
||||
end
|
||||
|
||||
function suite.CanTrimLeadingPaths()
|
||||
files { "src/myproject/hello.c" }
|
||||
vpaths { ["*"] = "src" }
|
||||
test.isequal("myproject/hello.c", run())
|
||||
end
|
||||
|
||||
function suite.PatternMayIncludeTrailingSlash()
|
||||
files { "src/myproject/hello.c" }
|
||||
vpaths { [""] = "src/myproject/" }
|
||||
test.isequal("hello.c", run())
|
||||
end
|
||||
|
||||
function suite.SimpleReplacementPatterns()
|
||||
files { "src/myproject/hello.c" }
|
||||
vpaths { ["sources"] = "src/myproject" }
|
||||
test.isequal("sources/hello.c", run())
|
||||
end
|
||||
|
||||
function suite.ExactFilenameMatch()
|
||||
files { "src/hello.c" }
|
||||
vpaths { ["sources"] = "src/hello.c" }
|
||||
test.isequal("sources/hello.c", run())
|
||||
end
|
||||
|
||||
|
||||
--
|
||||
-- Test wildcard patterns
|
||||
--
|
||||
|
||||
function suite.MatchFilePattern_ToGroup_Flat()
|
||||
files { "src/myproject/hello.h" }
|
||||
vpaths { ["Headers"] = "**.h" }
|
||||
test.isequal("Headers/hello.h", run())
|
||||
end
|
||||
|
||||
function suite.MatchFilePattern_ToNone_Flat()
|
||||
files { "src/myproject/hello.h" }
|
||||
vpaths { [""] = "**.h" }
|
||||
test.isequal("hello.h", run())
|
||||
end
|
||||
|
||||
function suite.MatchFilePattern_ToNestedGroup_Flat()
|
||||
files { "src/myproject/hello.h" }
|
||||
vpaths { ["Source/Headers"] = "**.h" }
|
||||
test.isequal("Source/Headers/hello.h", run())
|
||||
end
|
||||
|
||||
function suite.MatchFilePattern_ToGroup_WithTrailingSlash()
|
||||
files { "src/myproject/hello.h" }
|
||||
vpaths { ["Headers/"] = "**.h" }
|
||||
test.isequal("Headers/hello.h", run())
|
||||
end
|
||||
|
||||
function suite.MatchFilePattern_ToNestedGroup_Flat()
|
||||
files { "src/myproject/hello.h" }
|
||||
vpaths { ["Group/Headers"] = "**.h" }
|
||||
test.isequal("Group/Headers/hello.h", run())
|
||||
end
|
||||
|
||||
function suite.MatchFilePattern_ToGroup_Nested()
|
||||
files { "src/myproject/hello.h" }
|
||||
vpaths { ["Headers/*"] = "**.h" }
|
||||
test.isequal("Headers/src/myproject/hello.h", run())
|
||||
end
|
||||
|
||||
function suite.MatchFilePattern_ToGroup_Nested_OneStar()
|
||||
files { "src/myproject/hello.h" }
|
||||
vpaths { ["Headers/*"] = "**.h" }
|
||||
test.isequal("Headers/src/myproject/hello.h", run())
|
||||
end
|
||||
|
||||
function suite.MatchFilePatternWithPath_ToGroup_Nested()
|
||||
files { "src/myproject/hello.h" }
|
||||
vpaths { ["Headers/*"] = "src/**.h" }
|
||||
test.isequal("Headers/myproject/hello.h", run())
|
||||
end
|
||||
|
||||
function suite.matchBaseFileName_onWildcardExtension()
|
||||
files { "hello.cpp" }
|
||||
vpaths { ["Sources"] = "hello.*" }
|
||||
test.isequal("Sources/hello.cpp", run())
|
||||
end
|
||||
|
||||
|
||||
|
||||
--
|
||||
-- Test with project locations
|
||||
--
|
||||
|
||||
function suite.MatchPath_OnProjectLocationSet()
|
||||
location "build"
|
||||
files "src/hello.h"
|
||||
vpaths { [""] = "src" }
|
||||
test.isequal("hello.h", run())
|
||||
end
|
||||
|
||||
function suite.MatchFilePattern_OnProjectLocationSet()
|
||||
location "build"
|
||||
files "src/hello.h"
|
||||
vpaths { ["Headers"] = "**.h" }
|
||||
test.isequal("Headers/hello.h", run())
|
||||
end
|
||||
|
||||
function suite.MatchFilePatternWithPath_OnProjectLocationSet()
|
||||
location "build"
|
||||
files "src/hello.h"
|
||||
vpaths { ["Headers"] = "src/**.h" }
|
||||
test.isequal("Headers/hello.h", run())
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue