blob: 987ec0a0be1ec3ee7859d7a586538bf05ddf50b8 [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 org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
public class TestAbstractDiscoveryFilter {
int initCallCount;
int childrenInitedCallCount;
boolean[] inited = new boolean[] {true, true};
DiscoveryContext context = new DiscoveryContext();
DiscoveryTreeNode child = new DiscoveryTreeNode().name("c1");
DiscoveryTreeNode parent = new DiscoveryTreeNode() {
public boolean childrenInited() {
childrenInitedCallCount++;
return inited[childrenInitedCallCount - 1];
}
};
class AbstractDiscoveryFilterForTest extends AbstractDiscoveryFilter {
@Override
public int getOrder() {
return 0;
}
@Override
protected void init(DiscoveryContext context, DiscoveryTreeNode parent) {
initCallCount++;
}
@Override
protected String findChildName(DiscoveryContext context, DiscoveryTreeNode parent) {
return child.name();
}
}
AbstractDiscoveryFilterForTest filter = new AbstractDiscoveryFilterForTest();
DiscoveryTreeNode result;
private void doDiscovery() {
parent.child(child.name(), child);
result = filter.discovery(context, parent);
}
@Test
public void discoveryInited() {
doDiscovery();
Assertions.assertEquals(1, childrenInitedCallCount);
Assertions.assertEquals(0, initCallCount);
Assertions.assertSame(child, result);
}
@Test
public void discoveryNotInitedOnce() {
inited[0] = false;
doDiscovery();
Assertions.assertEquals(2, childrenInitedCallCount);
Assertions.assertEquals(0, initCallCount);
Assertions.assertSame(child, result);
}
@Test
public void discoveryNotInitedTwice() {
inited[0] = false;
inited[1] = false;
doDiscovery();
Assertions.assertEquals(2, childrenInitedCallCount);
Assertions.assertEquals(1, initCallCount);
Assertions.assertSame(child, result);
}
}