summaryrefslogtreecommitdiffstats
path: root/configserver/src/test/java/com/yahoo/vespa/config/server/zookeeper/InitializedCounterTest.java
blob: f745e023126315a0372360fa3647085683abf420 (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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config.server.zookeeper;

import com.yahoo.vespa.curator.mock.MockCurator;
import org.junit.Test;

import static org.hamcrest.CoreMatchers.is;
import static org.junit.Assert.assertThat;

/**
 * @author Ulf Lilleengen
 */
public class InitializedCounterTest {

    @Test
    public void requireThatCounterIsInitializedFromNumberOfSessions() {
        ConfigCurator configCurator = ConfigCurator.create(new MockCurator());
        configCurator.createNode("/sessions");
        configCurator.createNode("/sessions/1");
        configCurator.createNode("/sessions/2");

        InitializedCounter counter = new InitializedCounter(configCurator, "/counter", "/sessions");
        assertThat(counter.counter.get(), is(2L));
    }

}