Search in sources :

Example 1 with Service

use of com.alibaba.nacos.api.naming.pojo.Service in project nacos by alibaba.

the class NacosNamingMaintainServiceTest method testUpdateService3.

@Test
public void testUpdateService3() throws NacosException {
    // given
    Service service = new Service();
    AbstractSelector selector = new NoneSelector();
    // when
    nacosNamingMaintainService.updateService(service, selector);
    // then
    verify(serverProxy, times(1)).updateService(service, selector);
}
Also used : AbstractSelector(com.alibaba.nacos.api.selector.AbstractSelector) Service(com.alibaba.nacos.api.naming.pojo.Service) ScheduledExecutorService(java.util.concurrent.ScheduledExecutorService) NoneSelector(com.alibaba.nacos.api.selector.NoneSelector) Test(org.junit.Test)

Example 2 with Service

use of com.alibaba.nacos.api.naming.pojo.Service in project nacos by alibaba.

the class NamingClientProxyDelegateTest method testQueryService.

@Test
public void testQueryService() throws NacosException {
    String ns = "ns1";
    ServiceInfoHolder holder = Mockito.mock(ServiceInfoHolder.class);
    Properties props = new Properties();
    props.setProperty("serverAddr", "localhost");
    InstancesChangeNotifier notifier = new InstancesChangeNotifier();
    NamingClientProxyDelegate delegate = new NamingClientProxyDelegate(ns, holder, props, notifier);
    Service service = delegate.queryService("a", "b");
    Assert.assertNull(service);
}
Also used : ServiceInfoHolder(com.alibaba.nacos.client.naming.cache.ServiceInfoHolder) InstancesChangeNotifier(com.alibaba.nacos.client.naming.event.InstancesChangeNotifier) Service(com.alibaba.nacos.api.naming.pojo.Service) Properties(java.util.Properties) Test(org.junit.Test)

Example 3 with Service

use of com.alibaba.nacos.api.naming.pojo.Service in project nacos by alibaba.

the class NamingGrpcClientProxyTest method testCreateService.

@Test
public void testCreateService() throws Exception {
    // TODO thrown.expect(UnsupportedOperationException.class);
    Service service = new Service();
    AbstractSelector selector = new NoneSelector();
    client.createService(service, selector);
}
Also used : AbstractSelector(com.alibaba.nacos.api.selector.AbstractSelector) Service(com.alibaba.nacos.api.naming.pojo.Service) NamingGrpcRedoService(com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService) NoneSelector(com.alibaba.nacos.api.selector.NoneSelector) Test(org.junit.Test)

Example 4 with Service

use of com.alibaba.nacos.api.naming.pojo.Service in project nacos by alibaba.

the class NamingHttpClientProxyTest method testUpdateService.

@Test
public void testUpdateService() throws Exception {
    // given
    NacosRestTemplate nacosRestTemplate = mock(NacosRestTemplate.class);
    HttpRestResult<Object> a = new HttpRestResult<Object>();
    a.setData("");
    a.setCode(200);
    when(nacosRestTemplate.exchangeForm(any(), any(), any(), any(), any(), any())).thenReturn(a);
    SecurityProxy proxy = mock(SecurityProxy.class);
    ServerListManager mgr = mock(ServerListManager.class);
    when(mgr.getServerList()).thenReturn(Arrays.asList("localhost"));
    Properties props = new Properties();
    ServiceInfoHolder holder = mock(ServiceInfoHolder.class);
    NamingHttpClientProxy clientProxy = new NamingHttpClientProxy("namespaceId", proxy, mgr, props, holder);
    final Field nacosRestTemplateField = NamingHttpClientProxy.class.getDeclaredField("nacosRestTemplate");
    nacosRestTemplateField.setAccessible(true);
    nacosRestTemplateField.set(clientProxy, nacosRestTemplate);
    String serviceName = "service1";
    String groupName = "group1";
    // when
    clientProxy.updateService(new Service(), new NoneSelector());
    // then
    verify(nacosRestTemplate, times(1)).exchangeForm(endsWith(UtilAndComs.nacosUrlService), any(), any(), any(), eq(HttpMethod.PUT), any());
}
Also used : ServiceInfoHolder(com.alibaba.nacos.client.naming.cache.ServiceInfoHolder) ServerListManager(com.alibaba.nacos.client.naming.core.ServerListManager) HttpRestResult(com.alibaba.nacos.common.http.HttpRestResult) Service(com.alibaba.nacos.api.naming.pojo.Service) Properties(java.util.Properties) NoneSelector(com.alibaba.nacos.api.selector.NoneSelector) Field(java.lang.reflect.Field) SecurityProxy(com.alibaba.nacos.client.security.SecurityProxy) NacosRestTemplate(com.alibaba.nacos.common.http.client.NacosRestTemplate) Test(org.junit.Test)

Example 5 with Service

use of com.alibaba.nacos.api.naming.pojo.Service in project nacos by alibaba.

the class NamingMaintainService_ITCase method deleteService.

@Test
public void deleteService() throws NacosException {
    String serviceName = randomDomainName();
    Service preService = new Service();
    preService.setName(serviceName);
    System.out.println("service info : " + preService);
    namingMaintainService.createService(preService, new NoneSelector());
    Assert.assertTrue(namingMaintainService.deleteService(serviceName));
}
Also used : NamingMaintainService(com.alibaba.nacos.api.naming.NamingMaintainService) Service(com.alibaba.nacos.api.naming.pojo.Service) NamingService(com.alibaba.nacos.api.naming.NamingService) NoneSelector(com.alibaba.nacos.api.selector.NoneSelector) Test(org.junit.Test) SpringBootTest(org.springframework.boot.test.context.SpringBootTest)

Aggregations

Service (com.alibaba.nacos.api.naming.pojo.Service)18 Test (org.junit.Test)15 NoneSelector (com.alibaba.nacos.api.selector.NoneSelector)11 Properties (java.util.Properties)8 AbstractSelector (com.alibaba.nacos.api.selector.AbstractSelector)6 ServiceInfoHolder (com.alibaba.nacos.client.naming.cache.ServiceInfoHolder)6 NamingMaintainService (com.alibaba.nacos.api.naming.NamingMaintainService)5 SecurityProxy (com.alibaba.nacos.client.security.SecurityProxy)5 ScheduledExecutorService (java.util.concurrent.ScheduledExecutorService)5 ExpressionSelector (com.alibaba.nacos.api.selector.ExpressionSelector)3 ServerListManager (com.alibaba.nacos.client.naming.core.ServerListManager)3 InstancesChangeNotifier (com.alibaba.nacos.client.naming.event.InstancesChangeNotifier)3 NamingGrpcRedoService (com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService)3 HttpRestResult (com.alibaba.nacos.common.http.HttpRestResult)3 NacosRestTemplate (com.alibaba.nacos.common.http.client.NacosRestTemplate)3 Field (java.lang.reflect.Field)3 NacosException (com.alibaba.nacos.api.exception.NacosException)2 NamingService (com.alibaba.nacos.api.naming.NamingService)2 Instance (com.alibaba.nacos.api.naming.pojo.Instance)2 ServerListChangedEvent (com.alibaba.nacos.client.naming.event.ServerListChangedEvent)2