summaryrefslogtreecommitdiff
path: root/subplot/data.py
blob: a1b9032c908222788f0e509e363289c30c305888 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import logging
import os
import random
import subprocess


def create_file_with_random_data(ctx, filename=None):
    N = 128
    data = "".join(chr(random.randint(0, 255)) for i in range(N)).encode("UTF-8")
    dirname = os.path.dirname(filename) or "."
    logging.debug(f"create_file_with_random_data: dirname={dirname}")
    os.makedirs(dirname, exist_ok=True)
    with open(filename, "wb") as f:
        f.write(data)


def live_and_restored_data_match(ctx, live=None, restore=None):
    subprocess.check_call(["diff", "-rq", f"{live}/.", f"{restore}/{live}/."])