blob: 0dcd4ff99ac258e10ed64647f8ea5857a7859216 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.servicecomb.registry.discovery;
import java.util.HashMap;
import java.util.Map;
import org.apache.servicecomb.foundation.common.cache.VersionedCache;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
public class TestDiscoveryTreeNode {
DiscoveryTreeNode node = new DiscoveryTreeNode();
@Test
public void childrenInited() {
Assertions.assertFalse(node.childrenInited());
node.childrenInited(true);
Assertions.assertTrue(node.childrenInited());
}
@Test
public void level() {
node.level(1);
Assertions.assertEquals(1, node.level());
}
@Test
public void attribute() {
node.attribute("k1", "v1");
Assertions.assertEquals("v1", node.attribute("k1"));
}
@Test
public void children() {
Map<String, DiscoveryTreeNode> children = new HashMap<>();
node.children(children);
Assertions.assertSame(children, node.children());
}
@Test
public void child() {
DiscoveryTreeNode child = new DiscoveryTreeNode().name("child");
node.child(child.name(), child);
Assertions.assertSame(child, node.child(child.name()));
}
@Test
public void fromCache() {
Object data = new Object();
VersionedCache other = new VersionedCache().cacheVersion(1).name("cache").data(data);
node.fromCache(other);
Assertions.assertEquals(1, node.cacheVersion());
Assertions.assertEquals("cache", node.name());
Assertions.assertSame(data, node.data());
}
}