blob: cc7ef6638f474495d51cfc0e55bf1747fc62a80a [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.heron.eco.builder;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.List;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.Mockito;
import org.mockito.runners.MockitoJUnitRunner;
import org.apache.heron.eco.definition.BeanReference;
import org.apache.heron.eco.definition.EcoExecutionContext;
import org.apache.heron.eco.definition.ObjectDefinition;
import org.apache.heron.eco.definition.PropertyDefinition;
import org.apache.storm.testing.TestWordSpout;
import static org.hamcrest.CoreMatchers.equalTo;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.CoreMatchers.notNullValue;
import static org.junit.Assert.assertThat;
import static org.mockito.Matchers.eq;
import static org.mockito.Matchers.same;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
@RunWith(MockitoJUnitRunner.class)
public class BuilderUtilityTest {
@Mock
private ObjectDefinition mockObjectDefinition;
@Mock
private Object mockObject;
@Mock
private EcoExecutionContext mockContext;
private BuilderUtility subject;
@Before
public void setUpForEachTestCase() {
subject = new BuilderUtility();
}
@After
public void ensureNoUnexpectedMockInteractions() {
Mockito.verifyNoMoreInteractions(mockObject,
mockObjectDefinition,
mockContext);
}
@Test
public void toSetterName_ReturnsCorrectName() {
final String name = "name";
final String expectedName = "setName";
String setterName = subject.toSetterName(name);
assertThat(setterName, is(equalTo(expectedName)));
}
@Test
@SuppressWarnings("rawtypes")
public void classForName_ReturnsCorrectClass() throws ClassNotFoundException {
final String className = TestWordSpout.class.getName();
Class clazz = subject.classForName(className);
assertThat(clazz, notNullValue());
assertThat(className, is(equalTo(clazz.getName())));
}
@Test
public void applyProperties_SetterFound_BehavesAsExpected()
throws IllegalAccessException, NoSuchFieldException,
InvocationTargetException {
final String id = "id";
final String ref = "ref";
final String fakeComponent = "component";
BeanReference beanReference = new BeanReference(id);
List<PropertyDefinition> propertyDefinitions = new ArrayList<>();
PropertyDefinition propertyDefinition = new PropertyDefinition();
propertyDefinition.setRef(ref);
propertyDefinition.setName(id);
propertyDefinitions.add(propertyDefinition);
when(mockObjectDefinition.getProperties()).thenReturn(propertyDefinitions);
when(mockContext.getComponent(eq(ref))).thenReturn(fakeComponent);
subject.applyProperties(mockObjectDefinition, beanReference, mockContext);
verify(mockContext).getComponent(same(ref));
verify(mockObjectDefinition).getProperties();
}
@Test
public void applyProperties_NoSetterFound_BehavesAsExpected()
throws IllegalAccessException, NoSuchFieldException,
InvocationTargetException {
final String ref = "ref";
final String fakeComponent = "component";
MockComponent mockComponent = new MockComponent();
List<PropertyDefinition> propertyDefinitions = new ArrayList<>();
PropertyDefinition propertyDefinition = new PropertyDefinition();
propertyDefinition.setRef(ref);
propertyDefinition.setName("publicStr");
propertyDefinitions.add(propertyDefinition);
when(mockObjectDefinition.getProperties()).thenReturn(propertyDefinitions);
when(mockContext.getComponent(eq(ref))).thenReturn(fakeComponent);
subject.applyProperties(mockObjectDefinition, mockComponent, mockContext);
verify(mockContext).getComponent(same(ref));
verify(mockObjectDefinition).getProperties();
}
public class MockComponent {
public String publicStr;
}
}