summaryrefslogtreecommitdiff
path: root/subplot
diff options
context:
space:
mode:
Diffstat (limited to 'subplot')
-rw-r--r--subplot/client.py5
-rw-r--r--subplot/client.yaml1
-rw-r--r--subplot/data.py6
3 files changed, 11 insertions, 1 deletions
diff --git a/subplot/client.py b/subplot/client.py
index 0e724b8..966324e 100644
--- a/subplot/client.py
+++ b/subplot/client.py
@@ -11,6 +11,11 @@ def install_obnam(ctx):
runcmd_prepend_to_path(ctx, dirname=os.path.join(srcdir, "target", "debug"))
+def uninstall_obnam(ctx):
+ runcmd_run = globals()["runcmd_run"]
+ runcmd_run(ctx, ["chmod", "-R", "u+rwX", "."])
+
+
def configure_client(ctx, filename=None):
get_file = globals()["get_file"]
diff --git a/subplot/client.yaml b/subplot/client.yaml
index eef4714..b76b96a 100644
--- a/subplot/client.yaml
+++ b/subplot/client.yaml
@@ -1,5 +1,6 @@
- given: "an installed obnam"
function: install_obnam
+ cleanup: uninstall_obnam
- given: "a client config based on {filename}"
function: configure_client
diff --git a/subplot/data.py b/subplot/data.py
index 9396215..1455bf4 100644
--- a/subplot/data.py
+++ b/subplot/data.py
@@ -73,7 +73,11 @@ def file_is_restored(ctx, filename=None, restored=None):
def file_is_not_restored(ctx, filename=None, restored=None):
filename = os.path.join(restored, "./" + filename)
- exists = os.path.exists(filename)
+ logging.info(r"verifying that {filename} does not exist")
+ try:
+ exists = os.path.exists(filename)
+ except PermissionError:
+ exists = False
logging.debug(f"restored? {filename} {exists}")
assert not exists