summaryrefslogtreecommitdiff
path: root/yarns/0030-basics.yarn
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2014-04-11 18:56:16 +0100
committerLars Wirzenius <liw@liw.fi>2014-04-11 18:56:16 +0100
commitc09778fe5c1fbca31b7dd4cb1a4533fb95e95e06 (patch)
tree3181069468da25c95ada89d204668eca7f743224 /yarns/0030-basics.yarn
parent52916505f5a900a38436e94bb311940dde2f719a (diff)
downloadobnam-c09778fe5c1fbca31b7dd4cb1a4533fb95e95e06.tar.gz
Don't allow backup root to be a symbolic link
Diffstat (limited to 'yarns/0030-basics.yarn')
-rw-r--r--yarns/0030-basics.yarn20
1 files changed, 20 insertions, 0 deletions
diff --git a/yarns/0030-basics.yarn b/yarns/0030-basics.yarn
index 4bc8439b..c753a10c 100644
--- a/yarns/0030-basics.yarn
+++ b/yarns/0030-basics.yarn
@@ -157,6 +157,26 @@ instead of a file.
THEN the attempt succeeded
+Backup root is not a directory
+------------------------------
+
+Obnam does not, currently, support backing up individual files. The
+backup root must be a directory. This scenario verifies that Obnam
+gives the right error if the root is not a directory. The error code
+is R79ED6X, for "Backup root does not exist or is not a directory".
+
+ SCENARIO backup root is not a directory
+
+ GIVEN a symlink L pointing at /dev/null
+ WHEN user U attempts to back up directory L to repository R
+ THEN the attempt failed with exit code 1
+ THEN the error message matches "R79ED6X"
+
+ GIVEN a file F in ., with data
+ WHEN user U attempts to back up directory F to repository R
+ THEN the attempt failed with exit code 1
+ THEN the error message matches "R79ED6X"
+
Backup to roots at once
-----------------------