summaryrefslogtreecommitdiff
path: root/src/test/java/com/keuin/kbackupfabric/operation/backup
diff options
context:
space:
mode:
authorKeuin <[email protected]>2021-01-21 01:50:08 +0800
committerKeuin <[email protected]>2021-01-21 01:50:08 +0800
commitac3b5e1476dedcefb723f19bd0fdd9a22fcb16e9 (patch)
tree75d0994f3f7aa37c3d240933f0f2d179d318e597 /src/test/java/com/keuin/kbackupfabric/operation/backup
parent82e3986045ac7eaca6aaa290fb2283fd6c6c901a (diff)
parent7a5297de3467b1069fdf5e4a1b2aaf510ca35663 (diff)
Merge remote-tracking branch 'origin/master'
# Conflicts: # src/main/java/com/keuin/kbackupfabric/operation/backup/PrimitiveBackupMethod.java
Diffstat (limited to 'src/test/java/com/keuin/kbackupfabric/operation/backup')
-rw-r--r--src/test/java/com/keuin/kbackupfabric/operation/backup/method/ConfiguredIncrementalBackupMethodTest.java213
1 files changed, 213 insertions, 0 deletions
diff --git a/src/test/java/com/keuin/kbackupfabric/operation/backup/method/ConfiguredIncrementalBackupMethodTest.java b/src/test/java/com/keuin/kbackupfabric/operation/backup/method/ConfiguredIncrementalBackupMethodTest.java
new file mode 100644
index 0000000..30f2d44
--- /dev/null
+++ b/src/test/java/com/keuin/kbackupfabric/operation/backup/method/ConfiguredIncrementalBackupMethodTest.java
@@ -0,0 +1,213 @@
+package com.keuin.kbackupfabric.operation.backup.method;
+
+import org.apache.commons.codec.digest.DigestUtils;
+import org.junit.Test;
+
+import java.io.*;
+import java.nio.file.Files;
+import java.nio.file.Path;
+import java.nio.file.Paths;
+import java.util.*;
+import java.util.function.Function;
+
+import static org.apache.commons.io.FileUtils.forceDelete;
+import static org.junit.Assert.*;
+
+public class ConfiguredIncrementalBackupMethodTest {
+
+ private final String testTempPath = (new File("R:\\").isDirectory()) ? "R:\\" : ".\\testfile\\ConfiguredIncrementalBackupMethodTest";
+ private final String sourceDirectoryName = "source";
+ private final String destDirectoryName = "destination";
+ private final String indexFileName = "index";
+
+ private final double directoryFactor = 0.02;
+ private final double fileFactor = 0.05;
+ private final int maxRandomFileSizeBytes = 1024 * 1024 * 16;
+ private final Function<Integer, Integer> scaleDecayFunc = (x) -> x - 1;
+
+ @Test
+ public void iterationTest() throws IOException {
+ int a = 12;
+ for (int i = 0; i < a; ++i) {
+ performTest(Math.min(i + 1, 10));
+ System.out.println("Round " + i + " passed.");
+ }
+ }
+
+ private void performTest(int scale) throws IOException {
+
+ // init source and destination
+ final Path sourcePath = Paths.get(testTempPath, sourceDirectoryName);
+ final Path destPath = Paths.get(testTempPath, destDirectoryName);
+ if (new File(sourcePath.toString()).exists()) {
+ forceDelete(new File(sourcePath.toString()));
+ if (!new File(sourcePath.toString()).mkdirs())
+ fail();
+ }
+ if (new File(destPath.toString()).exists()) {
+ forceDelete(new File(destPath.toString()));
+ if (!new File(destPath.toString()).mkdirs())
+ fail();
+ }
+ if (new File(testTempPath, indexFileName).exists()) {
+ if (!new File(testTempPath, indexFileName).delete())
+ fail();
+ }
+
+ // initialize src
+ createRandomDirectoryTree(sourcePath.toString(), scale);
+
+ String hash1 = calcMD5HashForDir(sourcePath.toFile(), true);
+
+ // copy src to dest
+ ConfiguredIncrementalBackupMethod method = new ConfiguredIncrementalBackupMethod(
+ indexFileName,
+ sourcePath.toString(),
+ testTempPath,
+ destPath.toString()
+ );
+ method.backup();
+
+ // delete src
+ forceDelete(sourcePath.toFile());
+ assertFalse(sourcePath.toFile().isDirectory());
+
+ // restore src
+ if (!method.restore())
+ fail();
+
+ boolean fake = scale % 2 != 0;
+
+ int[] success = new int[1];
+ if (fake) {
+ Files.walk(sourcePath).filter(path -> path.toFile().isFile()).limit(3).forEach(path -> {
+ if (!path.toFile().delete())
+ fail();
+ success[0]++;
+ });
+ if (success[0] == 0)
+ fake = false;
+ }
+
+ if (fake)
+ System.out.println("Fake: deleted " + success[0] + " file(s).");
+
+ String hash2 = calcMD5HashForDir(sourcePath.toFile(), true);
+
+ if (!fake)
+ assertEquals(hash1, hash2);
+ else
+ assertNotEquals(hash1, hash2);
+ }
+
+ private void createRandomDirectoryTree(String path, int scale) throws IOException {
+ if (scale <= 0) {
+ if (Math.random() < 0.5)
+ if (!new File(path).mkdirs() && !new File(path).exists())
+ throw new IOException("Failed to create directory " + path);
+ return;
+ }
+ if (!new File(path).isDirectory() && !new File(path).mkdirs())
+ throw new IOException("Failed to create directory " + path);
+
+ int subFileCount = (int) Math.round(Math.random() * 10 * scale * fileFactor);
+ for (int i = 0; i < subFileCount; i++) {
+ String subFile = null;
+ while (subFile == null || new File(path, subFile).exists())
+ subFile = getRandomString((int) (Math.random() * 16 + 5));
+ createRandomFile(new File(path, subFile), maxRandomFileSizeBytes);
+ }
+
+
+ int subDirCount = (int) Math.round(Math.random() * 10 * scale * directoryFactor);
+ for (int i = 0; i < subDirCount; i++) {
+ String subDir = null;
+ while (subDir == null || new File(path, subDir).exists())
+ subDir = getRandomString((int) (Math.random() * 16 + 5));
+ createRandomDirectoryTree(new File(path, subDir).getAbsolutePath(), scaleDecayFunc.apply(scale));
+ }
+ }
+
+ private static void createRandomFile(File file, int maxSizeBytes) throws IOException {
+ if (!file.createNewFile())
+ throw new IOException("Failed to create file " + file.getAbsolutePath());
+ try (FileOutputStream fileOutputStream = new FileOutputStream(file)) {
+ int fileBytes = (int) (maxSizeBytes * Math.random() + 1);
+ Random random = new Random();
+ final int chunkSize = 1024 * 4;
+ byte[] randomChunk = new byte[chunkSize];
+ for (int i = 0; i < fileBytes / chunkSize; i++) {
+ random.nextBytes(randomChunk);
+ fileOutputStream.write(randomChunk);
+ }
+ if (fileBytes % chunkSize != 0) {
+ randomChunk = new byte[fileBytes % chunkSize];
+ random.nextBytes(randomChunk);
+ fileOutputStream.write(randomChunk);
+ }
+ }
+ }
+
+ private static String getRandomString(int length) {
+ String str = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
+ Random random = new Random();
+ StringBuilder sb = new StringBuilder();
+ for (int i = 0; i < length; i++) {
+ int number = random.nextInt(62);
+ sb.append(str.charAt(number));
+ }
+ return sb.toString();
+ }
+
+ public String calcMD5HashForDir(File dirToHash, boolean includeHiddenFiles) {
+
+ assert (dirToHash.isDirectory());
+ Vector<FileInputStream> fileStreams = new Vector<>();
+
+ System.out.println("Found files for hashing:");
+ collectInputStreams(dirToHash, fileStreams, includeHiddenFiles);
+
+ SequenceInputStream seqStream =
+ new SequenceInputStream(fileStreams.elements());
+
+ try {
+ String md5Hash = DigestUtils.md5Hex(seqStream);
+ seqStream.close();
+ return md5Hash;
+ } catch (IOException e) {
+ throw new RuntimeException("Error reading files to hash in "
+ + dirToHash.getAbsolutePath(), e);
+ }
+
+ }
+
+ private void collectInputStreams(File dir,
+ List<FileInputStream> foundStreams,
+ boolean includeHiddenFiles) {
+
+ File[] fileList = dir.listFiles();
+ Arrays.sort(fileList, // Need in reproducible order
+ new Comparator<File>() {
+ public int compare(File f1, File f2) {
+ return f1.getName().compareTo(f2.getName());
+ }
+ });
+
+ for (File f : fileList) {
+ if (!includeHiddenFiles && f.getName().startsWith(".")) {
+ // Skip it
+ } else if (f.isDirectory()) {
+ collectInputStreams(f, foundStreams, includeHiddenFiles);
+ } else {
+ try {
+ System.out.println("\t" + f.getAbsolutePath());
+ foundStreams.add(new FileInputStream(f));
+ } catch (FileNotFoundException e) {
+ throw new AssertionError(e.getMessage()
+ + ": file should never not be found!");
+ }
+ }
+ }
+
+ }
+} \ No newline at end of file