blob: b01640c9b6cfd5bb25d08ab0c6e8f6a7ea4ae913 [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.config.archaius.sources;
import static org.apache.servicecomb.config.client.ConfigurationAction.CREATE;
import static org.apache.servicecomb.config.client.ConfigurationAction.DELETE;
import static org.apache.servicecomb.config.client.ConfigurationAction.SET;
import java.util.HashMap;
import java.util.Map;
import org.apache.servicecomb.config.archaius.sources.ApolloConfigurationSourceImpl.UpdateHandler;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.mockito.Mockito;
import com.netflix.config.WatchedUpdateListener;
public class ApolloConfigurationSourceImplTest {
@Test
public void testCreate() throws Exception {
ApolloConfigurationSourceImpl apolloConfigurationSource = new ApolloConfigurationSourceImpl();
apolloConfigurationSource.addUpdateListener(result -> Assertions.assertFalse(result.getAdded().isEmpty()));
UpdateHandler updateHandler = apolloConfigurationSource.getUpdateHandler();
Map<String, Object> createItems = new HashMap<>();
createItems.put("testKey", "testValue");
updateHandler.handle(CREATE, createItems);
}
@Test
public void testUpdate() throws Exception {
ApolloConfigurationSourceImpl apolloConfigurationSource = new ApolloConfigurationSourceImpl();
apolloConfigurationSource.addUpdateListener(result -> Assertions.assertFalse(result.getChanged().isEmpty()));
UpdateHandler updateHandler = apolloConfigurationSource.getUpdateHandler();
Map<String, Object> updateItems = new HashMap<>();
updateItems.put("testKey", "testValue");
updateHandler.handle(SET, updateItems);
}
@Test
public void testDelete() throws Exception {
ApolloConfigurationSourceImpl apolloConfigurationSource = new ApolloConfigurationSourceImpl();
apolloConfigurationSource.addUpdateListener(result -> Assertions.assertFalse(result.getDeleted().isEmpty()));
UpdateHandler updateHandler = apolloConfigurationSource.getUpdateHandler();
Map<String, Object> deleteItems = new HashMap<>();
deleteItems.put("testKey", "testValue");
apolloConfigurationSource.getCurrentData().put("testKey", "testValue");
updateHandler.handle(DELETE, deleteItems);
Assertions.assertTrue(apolloConfigurationSource.getCurrentData().isEmpty());
}
@Test
public void testRemoveUpdateListener() {
ApolloConfigurationSourceImpl apolloConfigurationSource = new ApolloConfigurationSourceImpl();
WatchedUpdateListener watchedUpdateListener = Mockito.mock(WatchedUpdateListener.class);
apolloConfigurationSource.addUpdateListener(watchedUpdateListener);
apolloConfigurationSource.removeUpdateListener(watchedUpdateListener);
Assertions.assertTrue(apolloConfigurationSource.getCurrentListeners().isEmpty());
}
}