aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/test/java/com/yahoo/concurrent/maintenance/TestMaintainer.java
blob: 5eae643fe40a702f200aa6f14aaaa247a9d9688a (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
// 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 boolean throwing = false;

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

    public TestMaintainer(JobMetrics jobMetrics) {
        this(null, new JobControl(new JobControlStateMock()), jobMetrics);
    }

    public TestMaintainer(String name, JobControl jobControl) {
        this(name, jobControl, new JobMetrics((job, instant) -> {}));
    }

    public int totalRuns() {
        return totalRuns;
    }

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

    public TestMaintainer throwOnNextRun(boolean throwing) {
        this.throwing = throwing;
        return this;
    }

    @Override
    protected boolean maintain() {
        if (throwing) throw new RuntimeException("Maintenance run failed");
        totalRuns++;
        return success;
    }

}