/* * Chrysalix * See the COPYRIGHT.txt file distributed with this work for information * regarding copyright ownership. Some portions may be licensed * to Red Hat, Inc. under one or more contributor license agreements. * See the AUTHORS.txt file in the distribution for a full listing of * individual contributors. * * Chrysalix is free software. Unless otherwise indicated, all code in Chrysalix * is licensed to you under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * Chrysalix is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.chrysalix.operation; import static org.hamcrest.core.Is.is; import static org.hamcrest.core.IsInstanceOf.instanceOf; import static org.junit.Assert.assertThat; import static org.mockito.Mockito.mock; import org.chrysalix.ChrysalixException; import org.chrysalix.transformation.TransformationTestFactory; import org.chrysalix.transformation.Value; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Ignore; import org.junit.Test; import org.modelspace.ModelObject; @Ignore @SuppressWarnings( { "javadoc", "unchecked" } ) public final class AbsoluteValueTest { private static final String ID = AbsoluteValue.TERM_DESCRIPTOR.name(); private static TransformationTestFactory FACTORY; private static Value< Number > DOUBLE_TERM; private static Value< Number > DOUBLE4_TERM; private static Value< Number > FLOAT_TERM; private static Value< Number > INT_TERM; private static Value< Number > INT4_TERM; private static Value< Number > LONG_TERM; private static Value< Number > LONG2_TERM; @BeforeClass public static void initializeConstants() throws Exception { FACTORY = new TransformationTestFactory(); DOUBLE_TERM = FACTORY.createNumberValue( "/my/path/double", AbsoluteValue.TERM_DESCRIPTOR, OperationTestConstants.DOUBLE_1_VALUE ); DOUBLE4_TERM = FACTORY.createNumberValue( "/my/path/double4", AbsoluteValue.TERM_DESCRIPTOR, OperationTestConstants.DOUBLE_4_VALUE ); FLOAT_TERM = FACTORY.createNumberValue( "/my/path/float", AbsoluteValue.TERM_DESCRIPTOR, OperationTestConstants.FLOAT_1_VALUE ); INT_TERM = FACTORY.createNumberValue( "/my/path/int", AbsoluteValue.TERM_DESCRIPTOR, OperationTestConstants.INT_1_VALUE ); INT4_TERM = FACTORY.createNumberValue( "/my/path/int4", AbsoluteValue.TERM_DESCRIPTOR, OperationTestConstants.INT_4_VALUE ); LONG_TERM = FACTORY.createNumberValue( "/my/path/long", AbsoluteValue.TERM_DESCRIPTOR, OperationTestConstants.LONG_1_VALUE ); LONG2_TERM = FACTORY.createNumberValue( "/my/path/long2", AbsoluteValue.TERM_DESCRIPTOR, OperationTestConstants.LONG_2_VALUE ); } private ModelObject modelObject; private AbsoluteValue operation; @Before public void beforeEach() throws Exception { this.modelObject = mock( ModelObject.class ); this.operation = new AbsoluteValue( this.modelObject, OperationTestConstants.TEST_TRANSFORMATION ); } @Test public void shouldAddOneTerm() throws ChrysalixException { this.operation.addInput( ID, INT_TERM ); assertThat( this.operation.inputs().length, is( 1 ) ); assertThat( ( Value< Number > ) this.operation.inputs()[ 0 ], is( INT_TERM ) ); } @Test public void shouldCalculateDoubleTerm() throws ChrysalixException { this.operation.addInput( ID, DOUBLE_TERM ); assertThat( this.operation.get(), is( DOUBLE_TERM.get() ) ); } @Test public void shouldCalculateFloatTerm() throws ChrysalixException { this.operation.addInput( ID, FLOAT_TERM ); assertThat( ( FLOAT_TERM.get().floatValue() - this.operation.get().floatValue() ) < Math.ulp( FLOAT_TERM.get().floatValue() ), is( true ) ); assertThat( this.operation.get(), is( ( Number ) Math.abs( FLOAT_TERM.get().floatValue() ) ) ); } @Test public void shouldCalculateIntegerTerm() throws ChrysalixException { this.operation.addInput( ID, INT_TERM ); assertThat( this.operation.get(), is( INT_TERM.get() ) ); } @Test public void shouldCalculateLongTerm() throws ChrysalixException { this.operation.addInput( ID, LONG_TERM ); assertThat( this.operation.get(), is( ( Number ) Math.abs( LONG_TERM.get().longValue() ) ) ); this.operation.removeInput( ID, LONG_TERM ); this.operation.addInput( ID, LONG2_TERM ); assertThat( this.operation.get(), is( LONG2_TERM.get() ) ); } @Test public void shouldCalculateNegativeDoubleTerm() throws ChrysalixException { this.operation.addInput( ID, DOUBLE4_TERM ); assertThat( this.operation.get(), is( ( Number ) Math.abs( DOUBLE4_TERM.get().doubleValue() ) ) ); } @Test public void shouldCalculateNegativeIntegerTerm() throws ChrysalixException { this.operation.addInput( ID, INT4_TERM ); assertThat( this.operation.get(), is( ( Number ) Math.abs( INT4_TERM.get().intValue() ) ) ); } @Test public void shouldCreateOperation() throws Exception { assertThat( AbsoluteValue.DESCRIPTOR.newInstance( this.modelObject, OperationTestConstants.TEST_TRANSFORMATION ), is( instanceOf( AbsoluteValue.class ) ) ); } @Test public void shouldHaveErrorsAfterConstruction() throws Exception { assertThat( this.operation.problems().isError(), is( true ) ); } @Test public void shouldHaveErrorWhenMoreThanOneTerm() throws ChrysalixException { this.operation.addInput( ID, INT_TERM ); this.operation.addInput( ID, INT4_TERM ); assertThat( this.operation.problems().size(), is( 1 ) ); assertThat( this.operation.problems().isError(), is( true ) ); } @Test public void shouldHaveErrorWhenTermIsNotANumber() throws ChrysalixException { this.operation.addInput( ID, OperationTestConstants.STRING_1_TERM ); assertThat( this.operation.problems().size(), is( 1 ) ); assertThat( this.operation.problems().isError(), is( true ) ); } @Test public void shouldHaveProblemsAfterConstruction() throws Exception { assertThat( this.operation.problems().isEmpty(), is( false ) ); } @Test( expected = ChrysalixException.class ) public void shouldNotBeAbleToGetResultAfterConstruction() throws ChrysalixException { this.operation.get(); } @Test public void shouldNotHaveTermsAfterConstruction() throws Exception { assertThat( this.operation.inputs().length, is( 0 ) ); } @Test public void shouldProvideDescription() throws Exception { assertThat( this.operation.descriptor().description(), is( AbsoluteValue.DESCRIPTION ) ); } @Test public void shouldProvideName() throws Exception { assertThat( this.operation.descriptor().name(), is( AbsoluteValue.NAME ) ); } }