/* * 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.dubbo.admin.controller; import org.apache.dubbo.admin.AbstractSpringIntegrationTest; import org.apache.dubbo.admin.common.util.Constants; import org.apache.dubbo.admin.model.dto.ConfigDTO; import org.apache.dubbo.admin.service.ProviderService; import org.junit.After; import org.junit.Test; import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.core.ParameterizedTypeReference; import org.springframework.http.HttpEntity; import org.springframework.http.HttpMethod; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import java.util.ArrayList; import java.util.List; import java.util.UUID; import java.util.stream.Collectors; import static org.hamcrest.Matchers.hasSize; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertThat; import static org.mockito.Mockito.when; public class ManagementControllerTest extends AbstractSpringIntegrationTest { private final String env = "whatever"; @MockBean private ProviderService providerService; @After public void tearDown() throws Exception { if (zkClient.checkExists().forPath("/dubbo") != null) { zkClient.delete().deletingChildrenIfNeeded().forPath("/dubbo"); } } @Test public void shouldCreateGlobalConfig() throws Exception { ConfigDTO configDTO = new ConfigDTO(); configDTO.setKey(Constants.GLOBAL_CONFIG); configDTO.setConfig("key1=val1\nkey2=val2"); ResponseEntity responseEntity = restTemplate.postForEntity( url("/api/{env}/manage/config"), configDTO, Boolean.class, env ); assertEquals(responseEntity.getStatusCode(), HttpStatus.CREATED); assertEquals(responseEntity.getBody(), true); byte[] bytes = zkClient.getData().forPath(getPath("dubbo")); String config = new String(bytes); assertEquals(configDTO.getConfig(), config); zkClient.delete().forPath(getPath("dubbo")); } @Test public void shouldCreateApplicationConfig() throws Exception { String uuid = UUID.randomUUID().toString(); String application = "dubbo-admin" + uuid; ConfigDTO configDTO = new ConfigDTO(); configDTO.setKey(application); configDTO.setConfig("key1=val1\nkey2=val2"); ResponseEntity responseEntity = restTemplate.postForEntity( url("/api/{env}/manage/config"), configDTO, Boolean.class, env ); assertEquals(responseEntity.getStatusCode(), HttpStatus.CREATED); assertEquals(responseEntity.getBody(), true); byte[] bytes = zkClient.getData().forPath(getPath(application)); String config = new String(bytes); assertEquals(configDTO.getConfig(), config); } @Test public void shouldThrowWhenUpdateNonExistedConfigKey() { ConfigDTO configDTO = new ConfigDTO(); configDTO.setKey(Constants.GLOBAL_CONFIG); configDTO.setConfig("key1=val1\nkey2=val2"); ResponseEntity responseEntity = restTemplate.exchange( url("/api/{env}/manage/config/{key}"), HttpMethod.PUT, new HttpEntity<>(configDTO), Void.class, env, "non-existed" ); assertEquals(responseEntity.getStatusCode(), HttpStatus.NOT_FOUND); } @Test public void shouldUpdateConfigSpecifiedKey() throws Exception { String key = "shouldUpdateConfigSpecifiedKey"; ConfigDTO configDTO = new ConfigDTO(); configDTO.setKey(key); configDTO.setConfig("key1=val1\nkey2=val2"); restTemplate.postForEntity(url("/api/{env}/manage/config"), configDTO, Boolean.class, env); configDTO.setConfig("key1=updatedVal1\nkey2=updatedVal2"); ResponseEntity responseEntity = restTemplate.exchange( url("/api/{env}/manage/config/{key}"), HttpMethod.PUT, new HttpEntity<>(configDTO), Void.class, env, key ); assertEquals(responseEntity.getStatusCode(), HttpStatus.OK); byte[] bytes = zkClient.getData().forPath(getPath(key)); String config = new String(bytes); assertEquals("key1=updatedVal1\nkey2=updatedVal2", config); } @Test public void shouldGetAllConfig() throws Exception { int num = 20; List configDTOs = new ArrayList<>(num); for (int i = 0; i < num; i++) { ConfigDTO configDTO = new ConfigDTO(); configDTO.setKey("key" + i); configDTO.setConfig("key1=val1\nkey2=val2"); configDTOs.add(configDTO); String path = getPath(configDTO.getKey()); if (zkClient.checkExists().forPath(path) == null) { zkClient.create().creatingParentsIfNeeded().forPath(path); } zkClient.setData().forPath(path, configDTO.getConfig().getBytes()); } when(providerService.findApplications()) .thenReturn(configDTOs.stream().map(ConfigDTO::getKey).collect(Collectors.toSet())); ResponseEntity> responseEntity = restTemplate.exchange( url("/api/{env}/manage/config/{key}"), HttpMethod.GET, null, new ParameterizedTypeReference>() { }, env, "*" ); assertEquals(responseEntity.getStatusCode(), HttpStatus.OK); assertThat(responseEntity.getBody(), hasSize(num)); } @Test public void shouldDeleteConfig() throws Exception { int num = 20; List configDTOs = new ArrayList<>(num); for (int i = 0; i < num; i++) { ConfigDTO configDTO = new ConfigDTO(); configDTO.setKey("shouldDeleteConfigKey" + i); configDTO.setConfig("key1=val1\nkey2=val2"); configDTOs.add(configDTO); String path = getPath(configDTO.getKey()); if (zkClient.checkExists().forPath(path) == null) { zkClient.create().creatingParentsIfNeeded().forPath(path); } zkClient.setData().forPath(path, configDTO.getConfig().getBytes()); } when(providerService.findApplications()) .thenReturn(configDTOs.stream().map(ConfigDTO::getKey).collect(Collectors.toSet())); restTemplate.delete(url("/api/{env}/manage/config/{key}"), env, "shouldDeleteConfigKey1"); ResponseEntity> responseEntity = restTemplate.exchange( url("/api/{env}/manage/config/{key}"), HttpMethod.GET, null, new ParameterizedTypeReference>() { }, env, "*" ); assertEquals(responseEntity.getStatusCode(), HttpStatus.OK); assertThat(responseEntity.getBody(), hasSize(num - 1)); restTemplate.delete(url("/api/{env}/manage/config/{key}"), env, "shouldDeleteConfigKey10"); responseEntity = restTemplate.exchange( url("/api/{env}/manage/config/{key}"), HttpMethod.GET, null, new ParameterizedTypeReference>() { }, env, "*" ); assertEquals(responseEntity.getStatusCode(), HttpStatus.OK); assertThat(responseEntity.getBody(), hasSize(num - 2)); } private String getPath(String key) { return "/dubbo/" + Constants.CONFIG_KEY + Constants.PATH_SEPARATOR + key + Constants.PATH_SEPARATOR + Constants.DUBBO_PROPERTY; } }