2021-01-13 20:57:33 +03:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# echo hurl file
|
|
|
|
# The file is parsed and output exactly as the input
|
|
|
|
#
|
|
|
|
import sys
|
|
|
|
import subprocess
|
2021-02-10 21:53:09 +03:00
|
|
|
import codecs
|
2021-01-13 20:57:33 +03:00
|
|
|
|
2022-02-05 08:56:33 +03:00
|
|
|
|
2021-02-12 15:22:46 +03:00
|
|
|
def decode_string(encoded):
|
|
|
|
if encoded.startswith(codecs.BOM_UTF8):
|
2022-02-05 08:56:33 +03:00
|
|
|
return encoded.decode("utf-8-sig")
|
2021-02-12 15:22:46 +03:00
|
|
|
elif encoded.startswith(codecs.BOM_UTF16):
|
2022-02-05 08:56:33 +03:00
|
|
|
encoded = encoded[len(codecs.BOM_UTF16) :]
|
|
|
|
return encoded.decode("utf-16")
|
2021-02-12 15:22:46 +03:00
|
|
|
else:
|
|
|
|
return encoded.decode()
|
|
|
|
|
|
|
|
|
2021-01-13 20:57:33 +03:00
|
|
|
def test(hurl_file):
|
2022-02-05 08:56:33 +03:00
|
|
|
cmd = ["hurlfmt", "--no-format", hurl_file]
|
|
|
|
print(" ".join(cmd))
|
2021-01-13 20:57:33 +03:00
|
|
|
result = subprocess.run(cmd, stdout=subprocess.PIPE)
|
2022-02-05 08:56:33 +03:00
|
|
|
expected = codecs.open(
|
|
|
|
hurl_file, encoding="utf-8-sig"
|
|
|
|
).read() # Input file can be saved with a BOM
|
2021-02-12 15:22:46 +03:00
|
|
|
actual = decode_string(result.stdout)
|
2021-01-13 20:57:33 +03:00
|
|
|
if actual != expected:
|
2022-02-05 08:56:33 +03:00
|
|
|
print(">>> error in stdout")
|
|
|
|
print(f"actual: <{actual}>\nexpected: <{expected}>")
|
2021-01-13 20:57:33 +03:00
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
for hurl_file in sys.argv[1:]:
|
|
|
|
test(hurl_file)
|
|
|
|
|
|
|
|
|
2022-02-05 08:56:33 +03:00
|
|
|
if __name__ == "__main__":
|
2021-01-13 20:57:33 +03:00
|
|
|
main()
|