blob: 89582c59839552718ba23206c84891c5168dd386 [file] [log] [blame]
/*
* Copyright 1999-2011 Alibaba Group.
*
* Licensed 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 com.alibaba.dubbo.registry;
import java.util.List;
import junit.framework.Assert;
import org.junit.Test;
import com.alibaba.dubbo.common.URL;
import com.alibaba.dubbo.common.utils.NetUtils;
import com.alibaba.dubbo.registry.support.AbstractRegistryFactory;
/**
* AbstractRegistryFactoryTest
*
* @author william.liangf
*/
public class AbstractRegistryFactoryTest {
private RegistryFactory registryFactory = new AbstractRegistryFactory() {
@Override
protected Registry createRegistry(final URL url) {
return new Registry() {
public URL getUrl() {
return url;
}
public boolean isAvailable() {
return false;
}
public void destroy() {
}
public void register(URL url, NotifyListener listener) {
}
public void unregister(URL url, NotifyListener listener) {
}
public void subscribe(URL url, NotifyListener listener) {
}
public void unsubscribe(URL url, NotifyListener listener) {
}
public List<URL> lookup(URL url) {
return null;
}
};
}
};
@Test
public void testRegistryFactoryCache() throws Exception {
URL url = URL.valueOf("dubbo://" + NetUtils.getLocalAddress().getHostAddress() + ":2233");
Registry registry1 = registryFactory.getRegistry(url);
Registry registry2 = registryFactory.getRegistry(url);
Assert.assertEquals(registry1, registry2);
}
@Test
public void testRegistryFactoryIpCache() throws Exception {
Registry registry1 = registryFactory.getRegistry(URL.valueOf("dubbo://" + NetUtils.getLocalAddress().getHostName() + ":2233"));
Registry registry2 = registryFactory.getRegistry(URL.valueOf("dubbo://" + NetUtils.getLocalAddress().getHostAddress() + ":2233"));
Assert.assertEquals(registry1, registry2);
}
}