2021-01-13 20:57:33 +03:00
|
|
|
#!/usr/bin/env python3
|
2022-02-05 08:56:33 +03:00
|
|
|
import glob
|
2022-08-25 19:12:55 +03:00
|
|
|
import re
|
2021-01-13 20:57:33 +03:00
|
|
|
import test_lint
|
|
|
|
import test_format
|
2023-03-20 10:38:42 +03:00
|
|
|
import test_script
|
|
|
|
import platform
|
2021-01-13 20:57:33 +03:00
|
|
|
|
2021-02-12 15:22:46 +03:00
|
|
|
|
|
|
|
def get_files(glob_expr):
|
2022-02-05 08:56:33 +03:00
|
|
|
return sorted([f.replace("\\", "/") for f in glob.glob(glob_expr)])
|
|
|
|
|
2021-02-12 15:22:46 +03:00
|
|
|
|
2022-08-25 19:12:55 +03:00
|
|
|
def accept(f: str) -> bool:
|
|
|
|
"""Returns True if file `f` should be run, False otherwise."""
|
|
|
|
return not re.match(r".*\.\d+\.hurl$", f)
|
|
|
|
|
|
|
|
|
2021-01-13 20:57:33 +03:00
|
|
|
def main():
|
|
|
|
# Static run (without server)
|
2022-02-14 11:13:33 +03:00
|
|
|
[test_format.test("json", f) for f in get_files("tests_ok/*.hurl")]
|
|
|
|
[test_format.test("json", f) for f in get_files("tests_failed/*.hurl")]
|
|
|
|
[test_format.test("html", f) for f in get_files("tests_ok/*.hurl")]
|
|
|
|
[test_format.test("html", f) for f in get_files("tests_failed/*.hurl")]
|
2022-02-05 08:56:33 +03:00
|
|
|
[test_lint.test(f) for f in get_files("tests_error_lint/*.hurl")]
|
2021-01-13 20:57:33 +03:00
|
|
|
|
2023-03-20 10:38:42 +03:00
|
|
|
# Run test scripts
|
|
|
|
extension = "ps1" if platform.system() == "Windows" else "sh"
|
2023-03-26 15:01:27 +03:00
|
|
|
script_files = (
|
|
|
|
get_files("tests_ok/*." + extension)
|
2023-06-01 10:24:52 +03:00
|
|
|
+ get_files("tests_ok_not_linted/*." + extension)
|
2023-03-26 15:01:27 +03:00
|
|
|
+ get_files("tests_failed/*." + extension)
|
2023-04-06 09:44:39 +03:00
|
|
|
+ get_files("tests_error_parser/*." + extension)
|
2023-03-26 15:01:27 +03:00
|
|
|
+ get_files("ssl/*." + extension)
|
2023-03-20 10:38:42 +03:00
|
|
|
)
|
|
|
|
for f in sorted(script_files):
|
|
|
|
test_script.test(f)
|
2021-01-13 20:57:33 +03:00
|
|
|
|
2022-02-05 08:56:33 +03:00
|
|
|
print("test integration ok!")
|
2021-01-13 20:57:33 +03:00
|
|
|
|
|
|
|
|
2022-02-05 08:56:33 +03:00
|
|
|
if __name__ == "__main__":
|
2021-01-13 20:57:33 +03:00
|
|
|
main()
|