Tests for aptly snapshot diff.

This commit is contained in:
Andrey Smirnov
2014-01-24 18:56:59 +04:00
parent d87fc1be21
commit 17f5afb494
7 changed files with 59049 additions and 0 deletions
+62
View File
@@ -0,0 +1,62 @@
from lib import BaseTest
class DiffSnapshot1Test(BaseTest):
"""
diff two snapshots: normal diff
"""
fixtureDB = True
fixtureCmds = [
"aptly snapshot create snap1 from mirror wheezy-main",
"aptly snapshot create snap2 from mirror wheezy-backports",
"aptly snapshot pull snap1 snap2 snap3 'rsyslog (>= 7.4.4)'"
]
runCmd = "aptly snapshot diff snap1 snap3"
class DiffSnapshot2Test(BaseTest):
"""
diff two snapshots: normal diff II
"""
fixtureDB = True
fixtureCmds = [
"aptly snapshot create snap1 from mirror wheezy-main",
"aptly snapshot create snap2 from mirror wheezy-backports",
]
runCmd = "aptly snapshot diff snap1 snap2"
class DiffSnapshot3Test(BaseTest):
"""
diff two snapshots: normal diff II + only-matching
"""
fixtureDB = True
fixtureCmds = [
"aptly snapshot create snap1 from mirror wheezy-main",
"aptly snapshot create snap2 from mirror wheezy-backports",
]
runCmd = "aptly snapshot diff -only-matching snap1 snap2"
class DiffSnapshot4Test(BaseTest):
"""
diff two snapshots: doesn't exist
"""
fixtureDB = True
fixtureCmds = [
"aptly snapshot create snap1 from mirror wheezy-main",
]
runCmd = "aptly snapshot diff -only-matching snap1 snap-no"
expectedCode = 1
class DiffSnapshot5Test(BaseTest):
"""
diff two snapshots: doesn't exist
"""
fixtureDB = True
fixtureCmds = [
"aptly snapshot create snap2 from mirror wheezy-main",
]
runCmd = "aptly snapshot diff -only-matching snap-no snap2"
expectedCode = 1