-
-
Notifications
You must be signed in to change notification settings - Fork 815
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4793 from xmake-io/select
add select script tests
- Loading branch information
Showing
2 changed files
with
163 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
import("private.core.base.select_script") | ||
|
||
function _match_pattern(pattern, opt) | ||
pattern = pattern:gsub("([%+%.%-%^%$%(%)%%])", "%%%1") | ||
pattern = pattern:gsub("%*", "\001") | ||
pattern = pattern:gsub("\001", ".*") | ||
return select_script({[pattern] = true}, opt) == true | ||
end | ||
|
||
function test_plat_only(t) | ||
t:require(_match_pattern("*", {plat = "macosx"})) | ||
t:require(_match_pattern("macosx", {plat = "macosx"})) | ||
t:require(_match_pattern("macosx,linux", {plat = "macosx"})) | ||
t:require(_match_pattern("mac*", {plat = "macosx"})) | ||
t:require_not(_match_pattern("macosx", {plat = "linux"})) | ||
t:require_not(_match_pattern("linux", {plat = "macosx"})) | ||
t:require_not(_match_pattern("!macosx", {plat = "macosx"})) | ||
t:require_not(_match_pattern("!mac*", {plat = "macosx"})) | ||
t:require(_match_pattern("!macosx", {plat = "linux"})) | ||
t:require(_match_pattern("!mac*", {plat = "linux"})) | ||
end | ||
|
||
function test_plat_arch(t) | ||
t:require(_match_pattern("*|x86_64", {plat = "macosx", arch = "x86_64"})) | ||
t:require(_match_pattern("macosx|x86_64", {plat = "macosx", arch = "x86_64"})) | ||
t:require(_match_pattern("macosx|x86_64,linux|x86_64", {plat = "macosx", arch = "x86_64"})) | ||
t:require(_match_pattern("macosx|x86_*", {plat = "macosx", arch = "x86_64"})) | ||
t:require_not(_match_pattern("macosx|x86_64", {plat = "linux", arch = "x86_64"})) | ||
t:require_not(_match_pattern("macosx|i386", {plat = "macosx", arch = "x86_64"})) | ||
t:require_not(_match_pattern("!macosx|x86_64", {plat = "macosx", arch = "x86_64"})) | ||
t:require_not(_match_pattern("!mac*|x86_64", {plat = "macosx", arch = "x86_64"})) | ||
t:require(_match_pattern("!macosx|x86_64", {plat = "linux", arch = "x86_64"})) | ||
t:require(_match_pattern("!mac*|x86_64", {plat = "linux", arch = "x86_64"})) | ||
t:require(_match_pattern("macosx|!i386", {plat = "macosx", arch = "x86_64"})) | ||
t:require(_match_pattern("!macosx|!i386", {plat = "linux", arch = "x86_64"})) | ||
t:require(_match_pattern("windows|!x86", {plat = "windows", arch = "x64"})) | ||
t:require_not(_match_pattern("windows|!x86", {plat = "android", arch = "arm64-v8a"})) | ||
t:require(_match_pattern("macosx|native", {plat = "macosx", arch = "x86_64", subarch = "x86_64"})) | ||
t:require(_match_pattern("macosx|!native", {plat = "macosx", arch = "arm64", subarch = "x86_64"})) | ||
t:require_not(_match_pattern("macosx|!native", {plat = "macosx", arch = "x86_64", subarch = "x86_64"})) | ||
t:require_not(_match_pattern("windows|native", {plat = "macosx", arch = "x86_64", subarch = "x86_64"})) | ||
end | ||
|
||
function test_subhost_only(t) | ||
t:require(_match_pattern("@*", {subhost = "macosx"})) | ||
t:require(_match_pattern("@macosx", {subhost = "macosx"})) | ||
t:require(_match_pattern("@macosx,@linux", {subhost = "macosx"})) | ||
t:require(_match_pattern("@mac*", {subhost = "macosx"})) | ||
t:require_not(_match_pattern("@macosx", {subhost = "linux"})) | ||
t:require_not(_match_pattern("@linux", {subhost = "macosx"})) | ||
t:require_not(_match_pattern("@!macosx", {subhost = "macosx"})) | ||
t:require_not(_match_pattern("@!mac*", {subhost = "macosx"})) | ||
t:require(_match_pattern("@!macosx", {subhost = "linux"})) | ||
t:require(_match_pattern("@!mac*", {subhost = "linux"})) | ||
end | ||
|
||
function test_subhost_subarch(t) | ||
t:require(_match_pattern("@*|x86_64", {subhost = "macosx", subarch = "x86_64"})) | ||
t:require(_match_pattern("@macosx|x86_64", {subhost = "macosx", subarch = "x86_64"})) | ||
t:require(_match_pattern("@macosx|x86_64,@linux|x86_64", {subhost = "macosx", subarch = "x86_64"})) | ||
t:require(_match_pattern("@macosx|x86_*", {subhost = "macosx", subarch = "x86_64"})) | ||
t:require_not(_match_pattern("@macosx|x86_64", {subhost = "linux", subarch = "x86_64"})) | ||
t:require_not(_match_pattern("@macosx|i386", {subhost = "macosx", subarch = "x86_64"})) | ||
t:require_not(_match_pattern("@!macosx|x86_64", {subhost = "macosx", subarch = "x86_64"})) | ||
t:require_not(_match_pattern("@!mac*|x86_64", {subhost = "macosx", subarch = "x86_64"})) | ||
t:require(_match_pattern("@!macosx|x86_64", {subhost = "linux", subarch = "x86_64"})) | ||
t:require(_match_pattern("@!mac*|x86_64", {subhost = "linux", subarch = "x86_64"})) | ||
t:require(_match_pattern("@macosx|!i386", {subhost = "macosx", subarch = "x86_64"})) | ||
t:require(_match_pattern("@!macosx|!i386", {subhost = "linux", subarch = "x86_64"})) | ||
t:require(_match_pattern("@windows|!x86", {subhost = "windows", subarch = "x64"})) | ||
t:require_not(_match_pattern("@windows|!x86", {subhost = "android", subarch = "arm64-v8a"})) | ||
t:require(_match_pattern("@macosx|native", {subhost = "macosx", subarch = "x86_64"})) | ||
t:require(_match_pattern("@macosx|native", {subhost = "macosx", subarch = "arm64"})) | ||
t:require_not(_match_pattern("@macosx|!native", {subhost = "macosx", subarch = "x86_64"})) | ||
t:require_not(_match_pattern("@windows|native", {subhost = "macosx", subarch = "x86_64"})) | ||
end | ||
|
||
function test_plat_subhost(t) | ||
t:require(_match_pattern("*@macosx", {plat = "macosx", subhost = "macosx"})) | ||
t:require(_match_pattern("android@macosx", {plat = "android", subhost = "macosx"})) | ||
t:require(_match_pattern("android@macosx,linux", {plat = "android", subhost = "linux"})) | ||
t:require(_match_pattern("android@mac*", {plat = "android", subhost = "macosx"})) | ||
t:require(_match_pattern("android@!macosx", {plat = "android", subhost = "linux"})) | ||
t:require_not(_match_pattern("!android@macosx", {plat = "android", subhost = "macosx"})) | ||
t:require(_match_pattern("!iphon*@macosx", {plat = "linux", subhost = "macosx"})) | ||
end | ||
|
||
function test_plat_arch_subhost(t) | ||
t:require(_match_pattern("*|x86_64@macosx", {plat = "macosx", subhost = "macosx", arch = "x86_64"})) | ||
t:require(_match_pattern("android|arm64-v8a@macosx", {plat = "android", subhost = "macosx", arch = "arm64-v8a"})) | ||
t:require(_match_pattern("android|x86_64@macosx,linux", {plat = "android", subhost = "linux", arch = "x86_64"})) | ||
t:require(_match_pattern("android|x86_64@mac*", {plat = "android", subhost = "macosx", arch = "x86_64"})) | ||
t:require(_match_pattern("android|x86_64@!macosx", {plat = "android", subhost = "linux", arch = "x86_64"})) | ||
t:require_not(_match_pattern("!android|x86_64@macosx", {plat = "android", subhost = "macosx", arch = "x86_64"})) | ||
t:require(_match_pattern("!iphon*|x86_64@macosx", {plat = "linux", subhost = "macosx", arch = "x86_64"})) | ||
t:require(_match_pattern("iphon*|arm64@macosx", {plat = "iphoneos", subhost = "macosx", arch = "arm64"})) | ||
t:require_not(_match_pattern("iphon*|arm64@macosx", {plat = "iphoneos", subhost = "linux", arch = "arm64"})) | ||
end | ||
|
||
function test_plat_arch_subhost_subarch(t) | ||
t:require(_match_pattern("*|x86_64@macosx|x86_64", {plat = "macosx", subhost = "macosx", arch = "x86_64", subarch = "x86_64"})) | ||
t:require(_match_pattern("android|arm64-v8a@macosx|x86_64", {plat = "android", subhost = "macosx", arch = "arm64-v8a", subarch = "x86_64"})) | ||
t:require(_match_pattern("android|x86_64@macosx|x86_64,linux|x86_64", {plat = "android", subhost = "linux", arch = "x86_64", subarch = "x86_64"})) | ||
t:require(_match_pattern("android|x86_64@mac*|x86_64", {plat = "android", subhost = "macosx", arch = "x86_64", subarch = "x86_64"})) | ||
t:require(_match_pattern("android|x86_64@!macosx|x86_64", {plat = "android", subhost = "linux", arch = "x86_64", subarch = "x86_64"})) | ||
t:require_not(_match_pattern("!android|x86_64@macosx|x86_64", {plat = "android", subhost = "macosx", arch = "x86_64", subarch = "x86_64"})) | ||
t:require(_match_pattern("!iphon*|x86_64@macosx|x86_64", {plat = "linux", subhost = "macosx", arch = "x86_64", subarch = "x86_64"})) | ||
t:require(_match_pattern("iphon*|arm64@macosx|x86_64", {plat = "iphoneos", subhost = "macosx", arch = "arm64", subarch = "x86_64"})) | ||
t:require_not(_match_pattern("iphon*|arm64@macosx|x86_64", {plat = "iphoneos", subhost = "linux", arch = "arm64", subarch = "x86_64"})) | ||
t:require(_match_pattern("android|native@macosx|x86_64", {plat = "android", subhost = "macosx", arch = "x86_64", subarch = "x86_64"})) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters