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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
|
package org.the_jk.cleversync.io
import com.google.common.truth.Truth.assertThat
import org.junit.Assume
import org.junit.Before
import org.junit.Test
abstract class BaseVerifierTest {
private lateinit var src: ModifiableTree
private lateinit var tgt: ModifiableTree
private val memory = FakeMemory()
@Before
fun setUp() {
src = source()
tgt = target()
}
@Test
fun empty() {
assertThat(Verifier.calculate(tgt, src, memory)).isEmpty()
assertThat(memory.isEmpty()).isTrue()
}
@Test
fun contentMatchNoMemory() {
val sourceFoo = src.createFile("foo")
sourceFoo.write().use { it.write(CONTENT1) }
val targetFoo = tgt.createFile("foo")
targetFoo.write().use { it.write(CONTENT1) }
assertThat(Verifier.calculate(tgt, src, memory)).isEmpty()
assertThat(memory.get("/foo")).isEqualTo(HASH1)
}
@Test
fun contentMatchMemory() {
memory.put("/foo", HASH1)
val sourceFoo = src.createFile("foo")
// Intentionally wrong, to show that source is not read when memory hash matches
sourceFoo.write().use { it.write(0) }
val targetFoo = tgt.createFile("foo")
targetFoo.write().use { it.write(CONTENT1) }
assertThat(Verifier.calculate(tgt, src, memory)).isEmpty()
}
@Test
fun contentMatchMemoryOldFormat() {
Assume.assumeTrue(Hasher.DEFAULT != Hasher.Format.SHA160)
memory.put("/foo", HASH1_OLD)
val sourceFoo = src.createFile("foo")
// Intentionally wrong, to show that source is not read when memory hash matches
sourceFoo.write().use { it.write(0) }
val targetFoo = tgt.createFile("foo")
targetFoo.write().use { it.write(CONTENT1) }
assertThat(Verifier.calculate(tgt, src, memory)).isEmpty()
}
@Test
fun contentMismatchNoMemory() {
val sourceFoo = src.createFile("foo")
sourceFoo.write().use { it.write(CONTENT1) }
val targetFoo = tgt.createFile("foo")
targetFoo.write().use { it.write(CONTENT2) }
val actions = Verifier.calculate(tgt, src, memory)
assertThat(actions).containsExactly(Action.Copy(name = "foo", overwrite = true))
assertThat(Modifier.apply(tgt, src, actions, memory = memory)).isEmpty()
assertThat(memory.get("/foo")).isEqualTo(HASH1)
assertThat(targetFoo.read().use { it.readBytes() })
.isEqualTo(CONTENT1)
}
@Test
fun contentMismatchMemory() {
memory.put("/foo", HASH1)
val sourceFoo = src.createFile("foo")
sourceFoo.write().use { it.write(CONTENT1) }
val targetFoo = tgt.createFile("foo")
targetFoo.write().use { it.write(CONTENT2) }
val actions = Verifier.calculate(tgt, src, memory)
assertThat(actions).containsExactly(Action.Copy(name = "foo", overwrite = true))
assertThat(Modifier.apply(tgt, src, actions, memory = memory)).isEmpty()
assertThat(memory.get("/foo")).isEqualTo(HASH1)
assertThat(targetFoo.read().use { it.readBytes() })
.isEqualTo(CONTENT1)
}
@Test
fun contentMismatchMemoryOldFormat() {
memory.put("/foo", HASH1_OLD)
val sourceFoo = src.createFile("foo")
sourceFoo.write().use { it.write(CONTENT1) }
val targetFoo = tgt.createFile("foo")
targetFoo.write().use { it.write(CONTENT2) }
val actions = Verifier.calculate(tgt, src, memory)
assertThat(actions).containsExactly(Action.Copy(name = "foo", overwrite = true))
assertThat(Modifier.apply(tgt, src, actions, memory = memory)).isEmpty()
assertThat(memory.get("/foo")).isEqualTo(HASH1)
assertThat(targetFoo.read().use { it.readBytes() })
.isEqualTo(CONTENT1)
}
@Test
fun contentMismatchBadMemory() {
memory.put("/foo", "".toByteArray().inputStream().use { Hasher.hash(it)!! })
val sourceFoo = src.createFile("foo")
sourceFoo.write().use { it.write(CONTENT1) }
val targetFoo = tgt.createFile("foo")
targetFoo.write().use { it.write(CONTENT2) }
val actions = Verifier.calculate(tgt, src, memory)
assertThat(actions).containsExactly(Action.Copy(name = "foo", overwrite = true))
assertThat(Modifier.apply(tgt, src, actions, memory = memory)).isEmpty()
assertThat(memory.get("/foo")).isEqualTo(HASH1)
assertThat(targetFoo.read().use { it.readBytes() })
.isEqualTo(CONTENT1)
}
@Test
fun contentMismatchBadMemory2() {
memory.put("/foo", HASH2)
val sourceFoo = src.createFile("foo")
sourceFoo.write().use { it.write(CONTENT1) }
val targetFoo = tgt.createFile("foo")
targetFoo.write().use { it.write(CONTENT2) }
// We trust memory, so source will not be read and the difference
// will not be noticed. Remember that this is used together with merge.
assertThat(Verifier.calculate(tgt, src, memory)).isEmpty()
}
@Test
fun contentMismatchNoSource() {
val targetFoo = tgt.createFile("foo")
targetFoo.write().use { it.write(CONTENT2) }
assertThat(Verifier.calculate(tgt, src, memory)).isEmpty()
}
@Test
fun contentMismatchMemoryNoSource() {
memory.put("/foo", HASH1)
val targetFoo = tgt.createFile("foo")
targetFoo.write().use { it.write(CONTENT2) }
assertThat(Verifier.calculate(tgt, src, memory)).isEmpty()
}
@Test
fun dirContentMatchMemory() {
memory.put("/foo/bar", HASH1)
val sourceFoo = src.createDirectory("foo").createFile("bar")
// Intentionally wrong, to show that source is not read when memory hash matches
sourceFoo.write().use { it.write(0) }
val targetFoo = tgt.createDirectory("foo").createFile("bar")
targetFoo.write().use { it.write(CONTENT1) }
assertThat(Verifier.calculate(tgt, src, memory)).isEmpty()
}
@Test
fun dirContentMismatchNoMemory() {
val sourceFoo = src.createDirectory("foo").createFile("bar")
sourceFoo.write().use { it.write(CONTENT1) }
val targetFoo = tgt.createDirectory("foo").createFile("bar")
targetFoo.write().use { it.write(CONTENT2) }
val actions = Verifier.calculate(tgt, src, memory)
assertThat(actions).containsExactly(
Action.ChangeDir(
name = "foo",
actions = listOf(Action.Copy(name = "bar", overwrite = true)),
),
)
assertThat(Modifier.apply(tgt, src, actions, memory = memory)).isEmpty()
assertThat(memory.get("/foo/bar")).isEqualTo(HASH1)
assertThat(targetFoo.read().use { it.readBytes() })
.isEqualTo(CONTENT1)
}
@Test
fun dirContentMismatchMemory() {
memory.put("/foo/bar", HASH1)
val sourceFoo = src.createDirectory("foo").createFile("bar")
sourceFoo.write().use { it.write(CONTENT1) }
val targetFoo = tgt.createDirectory("foo").createFile("bar")
targetFoo.write().use { it.write(CONTENT2) }
val actions = Verifier.calculate(tgt, src, memory)
assertThat(actions).containsExactly(
Action.ChangeDir(
name = "foo",
actions = listOf(Action.Copy(name = "bar", overwrite = true)),
),
)
assertThat(Modifier.apply(tgt, src, actions, memory = memory)).isEmpty()
assertThat(memory.get("/foo/bar")).isEqualTo(HASH1)
assertThat(targetFoo.read().use { it.readBytes() })
.isEqualTo(CONTENT1)
}
abstract fun source(): ModifiableTree
abstract fun target(): ModifiableTree
private class FakeMemory : Verifier.Memory {
private val data = mutableMapOf<String, String>()
override fun get(path: String) = data[path]
override fun put(path: String, hash: String) {
data[path] = hash
}
fun isEmpty() = data.isEmpty()
}
private companion object {
val CONTENT1 = "Hello world".toByteArray()
val HASH1 = CONTENT1.inputStream().use { Hasher.hash(it)!! }
val HASH1_OLD = CONTENT1.inputStream().use { Hasher.hash(it, Hasher.Format.SHA160)!! }
val CONTENT2 = "Goodbye world".toByteArray()
val HASH2 = CONTENT2.inputStream().use { Hasher.hash(it)!! }
}
}
|