diff options
author | Aaron Bentley <abentley@panoramicfeedback.com> | 2005-05-18 20:09:53 +0000 |
---|---|---|
committer | Aaron Bentley <abentley@panoramicfeedback.com> | 2005-05-18 20:09:53 +0000 |
commit | 4910cf78aee314c76c62b7cba19ab36456545e4e (patch) | |
tree | 966362534cfc913d7d55e98b84c3271a2c9ac50d /libbe/bugdir.py | |
parent | 35cb1d08a50bed019f86ef3a81140549475b9045 (diff) | |
download | bugseverywhere-4910cf78aee314c76c62b7cba19ab36456545e4e.tar.gz |
Added tests for double-init
Diffstat (limited to 'libbe/bugdir.py')
-rw-r--r-- | libbe/bugdir.py | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/libbe/bugdir.py b/libbe/bugdir.py index 8856db4..c6a9b5b 100644 --- a/libbe/bugdir.py +++ b/libbe/bugdir.py @@ -65,20 +65,35 @@ class NoRootEntry(Exception): self.path = path Exception.__init__(self, "Specified root does not exist: %s" % path) +class AlreadyInitialized(Exception): + def __init__(self, path): + self.path = path + Exception.__init__(self, + "Specified root is already initialized: %s" % path) + def create_bug_dir(path, rcs): """ - >>> import no_rcs + >>> import no_rcs, tests >>> create_bug_dir('/highly-unlikely-to-exist', no_rcs) Traceback (most recent call last): NoRootEntry: Specified root does not exist: /highly-unlikely-to-exist + >>> test_dir = os.path.dirname(tests.bug_arch_dir().dir) + >>> try: + ... create_bug_dir(test_dir, no_rcs) + ... except AlreadyInitialized, e: + ... print "Already Initialized" + Already Initialized """ root = os.path.join(path, ".be") try: rcs.mkdir(root) except OSError, e: - if e.errno != errno.ENOENT: + if e.errno == errno.ENOENT: + raise NoRootEntry(path) + elif e.errno == errno.EEXIST: + raise AlreadyInitialized(path) + else: raise - raise NoRootEntry(path) rcs.mkdir(os.path.join(root, "bugs")) set_version(root, rcs) map_save(rcs, os.path.join(root, "settings"), {"rcs_name": rcs.name}) |