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
|
import re
from lib import BaseTest
def trimTrailingWhitespace(_, s):
return re.sub(r'\s*$', '', s, flags=re.MULTILINE)
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"
outputMatchPrepare = trimTrailingWhitespace
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"
outputMatchPrepare = trimTrailingWhitespace
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"
outputMatchPrepare = trimTrailingWhitespace
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
class DiffSnapshot6Test(BaseTest):
"""
diff two snapshots: identical snapshots
"""
fixtureDB = True
fixtureCmds = [
"aptly snapshot create snap1 from mirror wheezy-main",
"aptly snapshot create snap2 from mirror wheezy-main",
]
runCmd = "aptly snapshot diff snap1 snap2"
|