summaryrefslogtreecommitdiff
path: root/rdiff-backup/testing/rlisttest.py
blob: 2fe258bc0169b6df960edfadc5f2ae070f8e05a1 (plain)
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
86
87
88
89
90
91
92
93
94
95
96
97
98
import unittest
execfile("commontest.py")
rbexec("rlist.py")

class BasicObject:
	"""The simplest object that can be used with RList"""
	def __init__(self, i):
		self.index = i
		self.data = "This is object # %d" % i

	def __eq__(self, other):
		return self.index == other.index and self.data == other.data

l1_pre = filter(lambda x: x != 342 and not x in [650, 651, 652] and
				x != 911 and x != 987,
				range(1, 1001))
l2_pre = filter(lambda x: not x in [222, 223, 224, 225] and x != 950
				and x != 999 and x != 444,
				range(1, 1001))

l1 = map(BasicObject, l1_pre)
l2 = map(BasicObject, l2_pre)
combined = map(BasicObject, range(1, 1001))

def lmaphelper2((x, i)):
	"""Return difference triple to say that index x only in list # i"""
	if i == 1: return (BasicObject(x), None)
	elif i == 2: return (None, BasicObject(x))
	else: assert 0, "Invalid parameter %s for i" % i

difference1 = map(lmaphelper2, [(222, 1), (223, 1), (224, 1), (225, 1),
								(342, 2), (444, 1), (650, 2), (651, 2),
								(652, 2), (911, 2), (950, 1), (987, 2),
								(999, 1)])
difference2 = map(lambda (a, b): (b, a), difference1)

def comparelists(l1, l2):
	print len(l1), len(l2)
	for i in range(len(l1)):
		if l1[i] != l2[i]: print l1[i], l2[i]
	print l1
	print l2



class RListTest(unittest.TestCase):
	def setUp(self):
		"""Make signatures, deltas"""
		self.l1_sig = RList.Signatures(l1)
		self.l2_sig = RList.Signatures(l2)
		self.l1_to_l2_diff = RList.Deltas(self.l1_sig, l2)
		self.l2_to_l1_diff = RList.Deltas(self.l2_sig, l1)

#		for d in makedeltas(makesigs(l2ci(l1)), l2ci(l2)):
#			print d.min, d.max
#			print d.elemlist

	def testPatching(self):
		"""Test to make sure each list can be reconstructed from other"""
		newlist = list(RList.Patch(l1, RList.Deltas(RList.Signatures(l1),
													 l2)))
		assert l2 == newlist
		newlist = list(RList.Patch(l2, RList.Deltas(RList.Signatures(l2),
													 l1)))
		assert l1 == newlist

	def testDifference(self):
		"""Difference between lists correctly identified"""
		diff = list(RList.Dissimilar(l1, RList.Deltas(RList.Signatures(l1),
													  l2)))
		assert diff == difference1
		diff = list(RList.Dissimilar(l2, RList.Deltas(RList.Signatures(l2),
													  l1)))
		assert diff == difference2



class CachingIterTest(unittest.TestCase):
	"""Test the Caching Iter object"""
	def testNormalIter(self):
		"""Make sure it can act like a normal iterator"""
		ci = CachingIter(iter(range(10)))
		for i in range(10): assert i == ci.next()
		self.assertRaises(StopIteration, ci.next)

	def testPushing(self):
		"""Pushing extra objects onto the iterator"""
		ci = CachingIter(iter(range(10)))
		ci.push(12)
		ci.push(11)
		assert ci.next() == 11
		assert ci.next() == 12
		assert ci.next() == 0
		ci.push(10)
		assert ci.next() == 10
		
		
if __name__ == "__main__": unittest.main()