blob: 33f5a9c7b11362992e9a3f04de15eb7bffb7fc21 (
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
|
package com.keuin.kbackupfabric.backup.incremental;
import com.keuin.kbackupfabric.backup.incremental.identifier.Sha256Identifier;
import org.junit.Test;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import static org.junit.Assert.assertEquals;
public class ObjectCollectionSerializerTest {
@Test
public void testSerializationConsistency1() throws IOException {
testSerializationConsistency(1);
}
@Test
public void testSerializationConsistency2() throws IOException {
testSerializationConsistency(2);
}
@Test
public void testSerializationConsistency4() throws IOException {
testSerializationConsistency(4);
}
@Test
public void testSerializationConsistency8() throws IOException {
testSerializationConsistency(8);
}
public void testSerializationConsistency(int threads) throws IOException {
ObjectCollectionFactory<Sha256Identifier> factory =
new ObjectCollectionFactory<>(Sha256Identifier.getFactory(), threads);
ObjectCollection collection =
factory.fromDirectory(new File("./testfile/ObjectCollectionFactoryTest"));
File file = new File("./testfile/serialized");
if (file.exists()) {
Files.delete(file.toPath());
}
ObjectCollectionSerializer.toFile(collection, file);
ObjectCollection collection2 = ObjectCollectionSerializer.fromFile(file);
Files.delete(file.toPath());
assertEquals(collection, collection2);
}
}
|