1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
#!/usr/bin/env python
try:
import pybaz
except ImportError:
print "This command requires PyBaz. Please ensure that it is installed."
import sys
sys.exit(1)
from pybaz.backends.baz import null_cmd
import tempfile
import os
import os.path
import shutil
def add_id(files, id=None):
"""Adds an explicit id to a list of files.
:param files: the name of the file to add an id to
:type files: list of str
:param id: tag one file using the specified id, instead of generating id
:type id: str
"""
args = ["add-id"]
if id is not None:
args.extend(["--id", id])
args.extend(files)
return null_cmd(args)
def test_environ():
"""
>>> q = test_environ()
>>> os.path.exists(q)
True
>>> os.path.exists(os.path.join(q, "home", ".arch-params"))
True
>>> teardown_environ(q)
>>> os.path.exists(q)
False
"""
tdir = tempfile.mkdtemp(prefix="baz2bzr-")
os.environ["HOME"] = os.path.join(tdir, "home")
os.mkdir(os.environ["HOME"])
arch_dir = os.path.join(tdir, "archive_dir")
pybaz.make_archive("test@example.com", arch_dir)
work_dir = os.path.join(tdir, "work_dir")
os.mkdir(work_dir)
os.chdir(work_dir)
pybaz.init_tree(work_dir, "test@example.com/test--test--0")
lib_dir = os.path.join(tdir, "lib_dir")
os.mkdir(lib_dir)
pybaz.register_revision_library(lib_dir)
return tdir
def add_file(path, text):
"""
>>> q = test_environ()
>>> add_file("path with space", "text")
>>> tree = pybaz.tree_root(".")
>>> inv = list(tree.iter_inventory_ids(source=True, both=True))
>>> ("x_lalala", "path with space") in inv
True
>>> teardown_environ(q)
"""
file(path, "wb").write(text)
add_id([path], "lalala")
def add_dir(path):
"""
>>> q = test_environ()
>>> add_dir("path with space")
>>> tree = pybaz.tree_root(".")
>>> inv = list(tree.iter_inventory_ids(source=True, both=True))
>>> ("x_lalala", "path with space") in inv
True
>>> teardown_environ(q)
"""
os.mkdir(path)
add_id([path], "lalala")
def teardown_environ(tdir):
os.chdir("/")
shutil.rmtree(tdir)
import doctest
doctest.testmod()
|