summaryrefslogtreecommitdiffstats
path: root/config-proxy/src/test/java/com/yahoo/vespa/config/proxy/filedistribution/CachedFilesMaintainerTest.java
blob: a491a7b4fc4c1170e94d3bdd6e673865e6674941 (plain) (blame)
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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config.proxy.filedistribution;

import com.yahoo.io.IOUtils;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.io.TempDir;

import java.io.File;
import java.io.IOException;
import java.time.Duration;
import java.time.Instant;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;

/**
 * @author hmusum
 */
public class CachedFilesMaintainerTest {

    private File cachedFileReferences;
    private File cachedDownloads;
    private CachedFilesMaintainer cachedFilesMaintainer;

    @TempDir
    public File tempFolder;

    @BeforeEach
    public void setup() throws IOException {
        cachedFileReferences = newFolder(tempFolder, "cachedFileReferences");
        cachedDownloads = newFolder(tempFolder, "cachedDownloads");
        cachedFilesMaintainer = new CachedFilesMaintainer(cachedFileReferences, cachedDownloads, Duration.ofMinutes(1));
    }

    @Test
    void require_old_files_to_be_deleted() throws IOException {
        runMaintainerAndAssertFiles(0, 0);

        File fileReference = writeFile(cachedFileReferences, "fileReference");
        File download = writeFile(cachedDownloads, "download");
        runMaintainerAndAssertFiles(1, 1);

        updateLastModifiedTimeStamp(fileReference, Instant.now().minus(Duration.ofMinutes(10)));
        runMaintainerAndAssertFiles(0, 1);

        updateLastModifiedTimeStamp(download, Instant.now().minus(Duration.ofMinutes(10)));
        runMaintainerAndAssertFiles(0, 0);
    }

    private void updateLastModifiedTimeStamp(File file, Instant instant) {
        if (!file.setLastModified(instant.toEpochMilli())) {
            throw new RuntimeException("Could not set last modified timestamp for '" + file.getAbsolutePath() + "'");
        }
    }

    private void runMaintainerAndAssertFiles(int fileReferenceCount, int downloadCount) {
        cachedFilesMaintainer.run();
        File[] fileReferences = cachedFileReferences.listFiles();
        assertNotNull(fileReferences);
        assertEquals(fileReferenceCount, fileReferences.length);

        File[] downloads = cachedDownloads.listFiles();
        assertNotNull(downloads);
        assertEquals(downloadCount, downloads.length);
    }

    private File writeFile(File directory, String filename) throws IOException {
        File file = new File(directory, filename);
        IOUtils.writeFile(file, filename, false);
        return file;
    }

    private static File newFolder(File root, String... subDirs) throws IOException {
        String subFolder = String.join("/", subDirs);
        File result = new File(root, subFolder);
        if (!result.mkdirs()) {
            throw new IOException("Couldn't create folders " + root);
        }
        return result;
    }

}