aboutsummaryrefslogtreecommitdiffstats
path: root/testutil/src/main/java/com/yahoo/test/ManualClock.java
blob: ffef6895c38776977a82b094127eb437f95612ad (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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.test;

import com.google.inject.Inject;
import java.time.Clock;
import java.time.Instant;
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.time.ZoneOffset;
import java.time.format.DateTimeFormatter;
import java.time.temporal.TemporalAmount;

/** 
 * A clock which initially has the time of its creation but can only be advanced by calling advance
 * 
 * @author bratseth
 */
public class ManualClock extends Clock {

    private Instant currentTime = Instant.now();

    @Inject
    public ManualClock() {}

    public ManualClock(String utcIsoTime) {
        this(at(utcIsoTime));
    }

    public ManualClock(Instant currentTime) {
        this.currentTime = currentTime;
    }

    public void advance(TemporalAmount temporal) {
        currentTime = currentTime.plus(temporal);
    }

    public void setInstant(Instant time) {
        currentTime = time;
    }

    @Override
    public Instant instant() { return currentTime; }

    @Override
    public ZoneId getZone() { return null; }

    @Override
    public Clock withZone(ZoneId zone) { return null; }

    @Override
    public long millis() { return currentTime.toEpochMilli(); }

    public static Instant at(String utcIsoTime) {
        return LocalDateTime.parse(utcIsoTime, DateTimeFormatter.ISO_DATE_TIME).atZone(ZoneOffset.UTC).toInstant();
    }

}