summaryrefslogtreecommitdiff
path: root/tests/test_PristineTar.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2015-03-26 19:25:21 +0100
committerGuido Günther <agx@sigxcpu.org>2015-03-27 12:16:31 +0100
commit89574a099066da9e215477cd0f71716560be454d (patch)
treeb0f6acda98dab527b31a0084e591bf4fb6d59e6e /tests/test_PristineTar.py
parent335dfdb7a95a92d773749e6f2b5ebf951a792608 (diff)
Don't let pristine-tar spew on stderr
Capture its output and only dump it on failure. This makes "gbp import-orig" and test runs less verbose.
Diffstat (limited to 'tests/test_PristineTar.py')
-rw-r--r--tests/test_PristineTar.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/test_PristineTar.py b/tests/test_PristineTar.py
index e837ef8..1e7f2dc 100644
--- a/tests/test_PristineTar.py
+++ b/tests/test_PristineTar.py
@@ -122,6 +122,22 @@ def test_pristine_tar_checkout():
>>> repo.pristine_tar.checkout('upstream', '1.0', 'gzip', '..')
"""
+def test_pristine_tar_checkout_nonexistent():
+ """
+ Checkout a tarball that does not exist using pristine-tar
+
+ Methods tested:
+ - L{gbp.deb.pristinetar.DebianPristineTar.checkout}
+
+ >>> import gbp.deb.git
+ >>> repo = gbp.deb.git.DebianGitRepository(repo_dir)
+ >>> repo.pristine_tar.checkout('upstream', '1.1', 'gzip', '..')
+ Traceback (most recent call last):
+ ...
+ CommandExecFailed: Pristine-tar couldn't checkout "upstream_1.1.orig.tar.gz": fatal: Path 'upstream_1.1.orig.tar.gz.delta' does not exist in 'refs/heads/pristine-tar'
+ pristine-tar: git show refs/heads/pristine-tar:upstream_1.1.orig.tar.gz.delta failed
+ <BLANKLINE>
+ """
def test_teardown():
"""