100 lines
1.7 KiB
Lua
100 lines
1.7 KiB
Lua
--
|
|
-- tests/base/test_filename.lua
|
|
-- Verify generation of project/workspace/rule filenames.
|
|
-- Copyright (c) 2008-2014 Jason Perkins and the Premake project
|
|
--
|
|
|
|
local suite = test.declare("project_filename")
|
|
|
|
local p = premake
|
|
|
|
|
|
|
|
--
|
|
-- Setup
|
|
--
|
|
|
|
local wks
|
|
|
|
function suite.setup()
|
|
wks = test.createWorkspace()
|
|
end
|
|
|
|
local function prepare()
|
|
prj = test.getproject(wks, 1)
|
|
end
|
|
|
|
|
|
--
|
|
-- Should return name as an absolute path.
|
|
--
|
|
|
|
function suite.isAbsolutePath()
|
|
prepare()
|
|
test.isequal(os.getcwd(), path.getdirectory(p.filename(prj)))
|
|
end
|
|
|
|
|
|
--
|
|
-- Should use the project name, if no filename was specified.
|
|
--
|
|
|
|
function suite.isProjectName_onNoFilename()
|
|
prepare()
|
|
test.isequal("MyProject", path.getname(p.filename(prj)))
|
|
end
|
|
|
|
|
|
--
|
|
-- Should use filename, if set via API.
|
|
--
|
|
|
|
function suite.doesUseFilename()
|
|
filename "Howdy"
|
|
prepare()
|
|
test.isequal("Howdy", path.getname(p.filename(prj)))
|
|
end
|
|
|
|
|
|
--
|
|
-- Appends file extension, if supplied.
|
|
--
|
|
|
|
function suite.doesUseExtension()
|
|
prepare()
|
|
test.isequal(".xc", path.getextension(p.filename(prj, ".xc")))
|
|
end
|
|
|
|
|
|
--
|
|
-- Should also work with workspaces.
|
|
--
|
|
|
|
function suite.worksWithWorkspace()
|
|
prepare()
|
|
test.isequal("MyWorkspace", path.getname(p.filename(wks)))
|
|
end
|
|
|
|
|
|
--
|
|
-- Value should not propagate down to projects.
|
|
--
|
|
|
|
function suite.doesNotPropagate()
|
|
workspace ("MyWorkspace")
|
|
filename ("Howdy")
|
|
prepare()
|
|
test.isequal("MyProject", path.getname(p.filename(prj)))
|
|
end
|
|
|
|
|
|
--
|
|
-- If extension is provided without a leading dot, it should override any
|
|
-- project filename.
|
|
--
|
|
|
|
function suite.canOverrideFilename()
|
|
prepare()
|
|
test.isequal("Makefile", path.getname(p.filename(prj, "Makefile")))
|
|
end
|