Skip to content

Commit

Permalink
Adding JUnit. Fixes #3874 (#4271)
Browse files Browse the repository at this point in the history
Adding JUnit. Fixes #3874
  • Loading branch information
ayush0407 authored Mar 25, 2022
1 parent 672320f commit 8d623d5
Show file tree
Hide file tree
Showing 2 changed files with 112 additions and 20 deletions.
Original file line number Diff line number Diff line change
@@ -1,61 +1,79 @@
/*
* Copyright 2022 Apollo Authors
*
* 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
* 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.
* 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.ctrip.framework.apollo.biz.utils;

import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;

import com.ctrip.framework.apollo.biz.MockBeanFactory;
import com.ctrip.framework.apollo.biz.entity.Item;
import org.junit.Before;
import org.junit.Test;

import com.ctrip.framework.apollo.biz.MockBeanFactory;
import com.ctrip.framework.apollo.biz.entity.Item;

/**
* @author jian.tan
*/

public class ConfigChangeContentBuilderTest {

private final ConfigChangeContentBuilder configChangeContentBuilder = new ConfigChangeContentBuilder();
private ConfigChangeContentBuilder configChangeContentBuilder;
private String configString;
private Item createdItem;
private Item updatedItem;
private Item updatedItemFalseCheck;
private Item createdItemFalseCheck;

@Before
public void initConfig() {

Item createdItem = MockBeanFactory.mockItem(1, 1, "timeout", "100", 1);
Item updatedItem = MockBeanFactory.mockItem(1, 1, "timeout", "1001", 1);

configChangeContentBuilder = new ConfigChangeContentBuilder();
createdItem = MockBeanFactory.mockItem(1, 1, "timeout", "100", 1);
updatedItem = MockBeanFactory.mockItem(1, 1, "timeout", "1001", 1);
updatedItemFalseCheck = MockBeanFactory.mockItem(1, 1, "timeout", "100", 1);
createdItemFalseCheck = MockBeanFactory.mockItem(1, 1, "", "100", 1);
configChangeContentBuilder.createItem(createdItem);
configChangeContentBuilder.createItem(createdItemFalseCheck);
configChangeContentBuilder.updateItem(createdItem, updatedItem);
configChangeContentBuilder.updateItem(createdItem, updatedItemFalseCheck);
configChangeContentBuilder.deleteItem(updatedItem);

configChangeContentBuilder.deleteItem(createdItemFalseCheck);
configString = configChangeContentBuilder.build();
}

@Test
public void testHasContent() {
assertTrue(configChangeContentBuilder.hasContent());
configChangeContentBuilder.getCreateItems().clear();
assertTrue(configChangeContentBuilder.hasContent());
configChangeContentBuilder.getUpdateItems().clear();
assertTrue(configChangeContentBuilder.hasContent());
}

@Test
public void testConvertJsonString() {
ConfigChangeContentBuilder contentBuilder = ConfigChangeContentBuilder
.convertJsonString(configString);
public void testHasContentFalseCheck() {
configChangeContentBuilder.getCreateItems().clear();
configChangeContentBuilder.getUpdateItems().clear();
configChangeContentBuilder.getDeleteItems().clear();
assertFalse(configChangeContentBuilder.hasContent());
}

@Test
public void testConvertJsonString() {
ConfigChangeContentBuilder contentBuilder =
ConfigChangeContentBuilder.convertJsonString(configString);
assertNotNull(contentBuilder.getCreateItems());
assertNotNull(contentBuilder.getUpdateItems().get(0).oldItem);
assertNotNull(contentBuilder.getUpdateItems().get(0).newItem);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
/*
* Copyright 2022 Apollo Authors
*
* 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.ctrip.framework.apollo.spring.util;

import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;

import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
import org.mockito.Mockito;
import org.mockito.junit.MockitoJUnitRunner;
import org.springframework.beans.factory.config.BeanDefinition;
import org.springframework.beans.factory.support.BeanDefinitionRegistry;
import org.springframework.beans.factory.support.SimpleBeanDefinitionRegistry;

@RunWith(MockitoJUnitRunner.class)
public class BeanRegistrationUtilTest {

@InjectMocks
private BeanRegistrationUtil beanRegistrationUtil;
private BeanDefinitionRegistry someRegistry;
private String someBeanName = "someBean";

@Before
public void setUp() {
someRegistry = new SimpleBeanDefinitionRegistry();
}

@Test
public void registerBeanDefinitionIfNotExistsTest() {
someRegistry.registerBeanDefinition(someBeanName, Mockito.mock(BeanDefinition.class));
assertFalse(BeanRegistrationUtil.registerBeanDefinitionIfNotExists(someRegistry, someBeanName,
getClass(), null));
assertFalse(BeanRegistrationUtil.registerBeanDefinitionIfNotExists(someRegistry, someBeanName,
getClass()));

}

@Test
public void registerBeanDefinitionIfNotExistsBeanNotPresentTest() {
someRegistry.registerBeanDefinition("someAnotherBean", Mockito.mock(BeanDefinition.class));
assertTrue(BeanRegistrationUtil.registerBeanDefinitionIfNotExists(someRegistry, someBeanName,
getClass(), null));

}

@Test
public void registerBeanDefinitionIfNotExistsWithExtPropTest() {
someRegistry.registerBeanDefinition("someAnotherBean", Mockito.mock(BeanDefinition.class));
Map<String, Object> extraPropertyValues = new ConcurrentHashMap<>();
extraPropertyValues.put(someBeanName, "someProperty");
assertTrue(BeanRegistrationUtil.registerBeanDefinitionIfNotExists(someRegistry, someBeanName,
getClass(), extraPropertyValues));

}

}

0 comments on commit 8d623d5

Please sign in to comment.