aboutsummaryrefslogtreecommitdiffstats
path: root/fileacquirer/src/main/java/com/yahoo/filedistribution/fileacquirer/MockFileAcquirer.java
blob: e393cf7bc4e69fce1e3e53c86fb96b2474e18368 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.filedistribution.fileacquirer;

import com.yahoo.config.FileReference;
import com.yahoo.vespa.config.FileReferenceDoesNotExistException;
import java.io.File;
import java.util.Map;
import java.util.concurrent.TimeUnit;

/**
 * For use when testing searchers that uses file distribution.
 * @author Tony Vaagenes
 */
public abstract class MockFileAcquirer implements FileAcquirer {

    /** Creates a FileAcquirer that always returns the given file. **/
    public static FileAcquirer returnFile(File file) {
        return new MockFileAcquirer() {
            @Override
            public File waitFor(FileReference fileReference, long timeout, TimeUnit timeUnit) {
                return file;
            }
        };
    }

    /** Creates a FileAcquirer that maps from fileReference.value to a file. **/
    public static FileAcquirer returnFiles(Map<String, File> files) {
        return new MockFileAcquirer() {
            @Override
            public File waitFor(FileReference fileReference, long timeout, TimeUnit timeUnit) {
                return files.get(fileReference.value());
            }
        };
    }

    /** Creates a FileAcquirer that throws TimeoutException **/
    public static FileAcquirer throwTimeoutException() {
        return new MockFileAcquirer() {
            @Override
            public File waitFor(FileReference fileReference, long timeout, TimeUnit timeUnit) {
                throw new TimeoutException("Timed out");
            }
        };
    }

    /** Creates a FileAcquirer that throws FileReferenceDoesNotExistException **/
    public static FileAcquirer throwFileReferenceDoesNotExistException() {
        return new MockFileAcquirer() {
            @Override
            public File waitFor(FileReference fileReference, long timeout, TimeUnit timeUnit) {
                throw new FileReferenceDoesNotExistException(null);
            }
        };
    }

    @Override
    public void shutdown() {}

}