summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcheck10
-rw-r--r--manual.yarn61
-rw-r--r--yarnstep.py60
3 files changed, 91 insertions, 40 deletions
diff --git a/check b/check
index fa838be..57e3b26 100755
--- a/check
+++ b/check
@@ -2,4 +2,12 @@
set -eu
-yarn --shell python2 --shell-arg '' manual.yarn "$@"
+if env | grep '^PYTHONPATH=' > /dev/null
+then
+ PYTHONPATH="$PYTHONPATH:."
+else
+ PYTHONPATH="."
+fi
+
+yarn --env "PYTHONPATH=$PYTHONPATH" \
+ --shell python2 --shell-arg '' manual.yarn "$@"
diff --git a/manual.yarn b/manual.yarn
index c117520..bfbd90c 100644
--- a/manual.yarn
+++ b/manual.yarn
@@ -109,66 +109,49 @@ This chapter implements the various scenario steps used in this
manual.
IMPLEMENTS WHEN user runs genbackupdata --create=(\S+) (.+)
- import os
import cliapp
- size = os.environ['MATCH_1']
- args = os.environ['MATCH_2'].split()
+ import yarnstep
+ size = yarnstep.get_next_match()
+ args = yarnstep.get_next_match().split()
opts = args[:-1]
- dirname = os.path.join(os.environ['DATADIR'], args[-1])
- bin = os.path.join(os.environ['SRCDIR'], 'genbackupdata')
+ dirname = yarnstep.datadir(args[-1])
+ bin = yarnstep.srcdir('genbackupdata')
cliapp.runcmd([bin, '--create', size] + opts + [dirname])
IMPLEMENTS THEN directory (\S+) contains (\d+) bytes in files
import os
- root = os.path.join(os.environ['DATADIR'], os.environ['MATCH_1'])
- wanted_bytes = int(os.environ['MATCH_2'])
- total_bytes = 0
- for dirname, subdirs, filenames in os.walk(root):
- for filename in filenames:
- pathname = os.path.join(dirname, filename)
- print pathname, os.path.getsize(pathname)
- total_bytes += os.path.getsize(pathname)
+ import yarnstep
+ root = yarnstep.get_next_match_as_datadir_path()
+ wanted_bytes = yarnstep.get_next_match_as_int()
+ total_bytes = sum(
+ os.path.getsize(x) for x in yarnstep.iter_over_files(root))
assert wanted_bytes == total_bytes, \
'%s != %s' % (wanted_bytes, total_bytes)
IMPLEMENTS THEN directory (\S+) is about (\d+) bytes when compressed
- import os
import zlib
- root = os.path.join(os.environ['DATADIR'], os.environ['MATCH_1'])
- wanted_bytes = int(os.environ['MATCH_2'])
- data = ''
- for dirname, subdirs, filenames in os.walk(root):
- for filename in filenames:
- pathname = os.path.join(dirname, filename)
- with open(pathname) as f:
- data += f.read()
+ import yarnstep
+ root = yarnstep.get_next_match_as_datadir_path()
+ wanted_bytes = yarnstep.get_next_match_as_int()
+ data = ''.join(yarnstep.cat(x) for x in yarnstep.iter_over_files(root))
compressed = zlib.compress(data)
size_delta = len(compressed) - len(data)
- print 'data:', len(data)
- print 'compressed:', len(compressed)
- print 'size_delta:', size_delta
assert abs(size_delta) < 1000
IMPLEMENTS THEN all files in (\S+) are duplicates
import collections
- import os
- root = os.path.join(os.environ['DATADIR'], os.environ['MATCH_1'])
+ import yarnstep
+ root = yarnstep.get_next_match_as_datadir_path()
files = collections.Counter()
- for dirname, subdirs, filenames in os.walk(root):
- for filename in filenames:
- pathname = os.path.join(dirname, filename)
- with open(pathname) as f:
- data = f.read()
- files[data] += 1
+ for pathname in yarnstep.iter_over_files(root):
+ files[yarnstep.cat(pathname)] += 1
for data in files:
assert files[data] == 2
IMPLEMENTS THEN directory (\S+) contains (\d+) files?
import collections
- import os
- root = os.path.join(os.environ['DATADIR'], os.environ['MATCH_1'])
- wanted_count = int(os.environ['MATCH_2'])
- file_count = 0
- for dirname, subdirs, filenames in os.walk(root):
- file_count += len(filenames)
+ import yarnstep
+ root = yarnstep.get_next_match_as_datadir_path()
+ wanted_count = yarnstep.get_next_match_as_int()
+ file_count = len(list(yarnstep.iter_over_files(root)))
assert file_count == wanted_count
diff --git a/yarnstep.py b/yarnstep.py
new file mode 100644
index 0000000..1935cc6
--- /dev/null
+++ b/yarnstep.py
@@ -0,0 +1,60 @@
+# yarnstep.py -- Python code for making yarn IMPLEMENTS sections nicer
+#
+# This is meant to be imported, not used with yarn --shell-library.
+#
+# Copyright 2016 Lars Wirzenius
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+# =*= License: GPL-3+ =*=
+
+
+import os
+
+import cliapp
+
+
+_next_match = 1
+def get_next_match():
+ global _next_match
+ name = 'MATCH_{}'.format(_next_match)
+ _next_match += 1
+ return os.environ[name]
+
+
+def get_next_match_as_int():
+ return int(get_next_match())
+
+
+def get_next_match_as_datadir_path():
+ return datadir(get_next_match())
+
+
+def datadir(relative):
+ return os.path.join(os.environ['DATADIR'], relative)
+
+
+def srcdir(relative):
+ return os.path.join(os.environ['SRCDIR'], relative)
+
+
+def iter_over_files(root):
+ for dirname, _, filenames in os.walk(root):
+ for filename in filenames:
+ yield os.path.join(dirname, filename)
+
+
+def cat(filename):
+ with open(filename) as f:
+ return f.read()