summaryrefslogtreecommitdiffstats
path: root/vespajlib/src/test/java/com/yahoo/concurrent/maintenance/TestMaintainer.java
blob: dcf45ee9da0273db6a9e1480322f5f5f0221d23d (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
// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.concurrent.maintenance;

import java.time.Duration;

/**
 * @author mpolden
 */
class TestMaintainer extends Maintainer {

    private int totalRuns = 0;
    private boolean success = true;
    private RuntimeException exceptionToThrow = null;

    public TestMaintainer(String name, Mode mode, JobControl jobControl, JobMetrics jobMetrics) {
        super(name, mode, Duration.ofDays(1), Duration.ofDays(1), jobControl, jobMetrics);
    }

    public int totalRuns() {
        return totalRuns;
    }

    public TestMaintainer successOnNextRun(boolean success) {
        this.success = success;
        return this;
    }

    public TestMaintainer throwOnNextRun(RuntimeException e) {
        this.exceptionToThrow = e;
        return this;
    }

    @Override
    protected boolean maintain() {
        if (exceptionToThrow != null) throw exceptionToThrow;
        totalRuns++;
        return success;
    }

}