From 96831d81fefcb76f2b33bc97b6206f594a7fcd5f Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 26 Dec 2020 10:25:59 +0200 Subject: test: add verification test for non-UTF8 filenames --- subplot/data.py | 6 ++++++ subplot/data.yaml | 3 +++ 2 files changed, 9 insertions(+) (limited to 'subplot') diff --git a/subplot/data.py b/subplot/data.py index ba3636c..a24cd0c 100644 --- a/subplot/data.py +++ b/subplot/data.py @@ -13,6 +13,12 @@ def create_file_with_random_data(ctx, filename=None): f.write(data) +def create_nonutf8_filename(ctx, dirname=None): + filename = "\x88" + os.mkdir(dirname) + open(filename, "wb").close() + + def chmod_file(ctx, filename=None, mode=None): os.chmod(filename, int(mode, 8)) diff --git a/subplot/data.yaml b/subplot/data.yaml index 32c9cd5..7659319 100644 --- a/subplot/data.yaml +++ b/subplot/data.yaml @@ -6,6 +6,9 @@ - given: "a file {filename} containing some random data" function: create_file_with_random_data +- given: "a file in {dirname} with a non-UTF8 filename" + function: create_nonutf8_filename + - given: file {filename} has mode {mode} function: chmod_file -- cgit v1.2.1