aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/test/java/com/yahoo/jdisc/application/ContainerThreadTestCase.java
blob: 4d17b285926163890395d64a730e6d653192488e (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jdisc.application;

import com.yahoo.jdisc.Metric;
import org.junit.jupiter.api.Test;

import java.util.Map;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;

import static org.junit.jupiter.api.Assertions.assertSame;


/**
 * @author Simon Thoresen Hult
 */
public class ContainerThreadTestCase {

    @Test
    void requireThatAccessorsWork() {
        MetricConsumer consumer = new MyConsumer();
        ContainerThread thread = new ContainerThread(new MyTask(), consumer);
        assertSame(consumer, thread.consumer());
    }

    @Test
    void requireThatTaskIsRun() throws InterruptedException {
        MyTask task = new MyTask();
        ContainerThread thread = new ContainerThread(task, null);
        thread.start();
        task.latch.await(600, TimeUnit.SECONDS);
    }

    private static class MyConsumer implements MetricConsumer {

        @Override
        public void set(String key, Number val, Metric.Context ctx) {

        }

        @Override
        public void add(String key, Number val, Metric.Context ctx) {

        }

        @Override
        public Metric.Context createContext(Map<String, ?> properties) {
            return null;
        }
    }

    private static class MyTask implements Runnable {

        final CountDownLatch latch = new CountDownLatch(1);

        @Override
        public void run() {
            latch.countDown();
        }
    }
}