/* * 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.activemq.artemis.utils; import org.apache.activemq.artemis.api.core.ActiveMQPropertyConversionException; import org.apache.activemq.artemis.api.core.SimpleString; import org.apache.activemq.artemis.utils.collections.TypedProperties; import org.junit.Assert; import org.junit.Before; import org.junit.Test; public class TypedPropertiesConversionTest { // Constants ----------------------------------------------------- // Attributes ---------------------------------------------------- private TypedProperties props; private SimpleString key; private final SimpleString unknownKey = new SimpleString("this.key.is.never.used"); // Static -------------------------------------------------------- // Constructors -------------------------------------------------- // Public -------------------------------------------------------- @Before public void setUp() throws Exception { key = RandomUtil.randomSimpleString(); props = new TypedProperties(); } @Test public void testBooleanProperty() throws Exception { Boolean val = RandomUtil.randomBoolean(); props.putBooleanProperty(key, val); Assert.assertEquals(val, props.getBooleanProperty(key)); Assert.assertEquals(new SimpleString(Boolean.toString(val)), props.getSimpleStringProperty(key)); props.putSimpleStringProperty(key, new SimpleString(Boolean.toString(val))); Assert.assertEquals(val, props.getBooleanProperty(key)); try { props.putByteProperty(key, RandomUtil.randomByte()); props.getBooleanProperty(key); Assert.fail(); } catch (ActiveMQPropertyConversionException e) { } Assert.assertFalse(props.getBooleanProperty(unknownKey)); } @Test public void testCharProperty() throws Exception { Character val = RandomUtil.randomChar(); props.putCharProperty(key, val); Assert.assertEquals(val, props.getCharProperty(key)); Assert.assertEquals(new SimpleString(Character.toString(val)), props.getSimpleStringProperty(key)); try { props.putByteProperty(key, RandomUtil.randomByte()); props.getCharProperty(key); Assert.fail(); } catch (ActiveMQPropertyConversionException e) { } try { props.getCharProperty(unknownKey); Assert.fail(); } catch (NullPointerException e) { } } @Test public void testByteProperty() throws Exception { Byte val = RandomUtil.randomByte(); props.putByteProperty(key, val); Assert.assertEquals(val, props.getByteProperty(key)); Assert.assertEquals(new SimpleString(Byte.toString(val)), props.getSimpleStringProperty(key)); props.putSimpleStringProperty(key, new SimpleString(Byte.toString(val))); Assert.assertEquals(val, props.getByteProperty(key)); try { props.putBooleanProperty(key, RandomUtil.randomBoolean()); props.getByteProperty(key); Assert.fail(); } catch (ActiveMQPropertyConversionException e) { } try { props.getByteProperty(unknownKey); Assert.fail(); } catch (NumberFormatException e) { } } @Test public void testIntProperty() throws Exception { Integer val = RandomUtil.randomInt(); props.putIntProperty(key, val); Assert.assertEquals(val, props.getIntProperty(key)); Assert.assertEquals(new SimpleString(Integer.toString(val)), props.getSimpleStringProperty(key)); props.putSimpleStringProperty(key, new SimpleString(Integer.toString(val))); Assert.assertEquals(val, props.getIntProperty(key)); Byte byteVal = RandomUtil.randomByte(); props.putByteProperty(key, byteVal); Assert.assertEquals(Integer.valueOf(byteVal), props.getIntProperty(key)); try { props.putBooleanProperty(key, RandomUtil.randomBoolean()); props.getIntProperty(key); Assert.fail(); } catch (ActiveMQPropertyConversionException e) { } try { props.getIntProperty(unknownKey); Assert.fail(); } catch (NumberFormatException e) { } } @Test public void testLongProperty() throws Exception { Long val = RandomUtil.randomLong(); props.putLongProperty(key, val); Assert.assertEquals(val, props.getLongProperty(key)); Assert.assertEquals(new SimpleString(Long.toString(val)), props.getSimpleStringProperty(key)); props.putSimpleStringProperty(key, new SimpleString(Long.toString(val))); Assert.assertEquals(val, props.getLongProperty(key)); Byte byteVal = RandomUtil.randomByte(); props.putByteProperty(key, byteVal); Assert.assertEquals(Long.valueOf(byteVal), props.getLongProperty(key)); Short shortVal = RandomUtil.randomShort(); props.putShortProperty(key, shortVal); Assert.assertEquals(Long.valueOf(shortVal), props.getLongProperty(key)); Integer intVal = RandomUtil.randomInt(); props.putIntProperty(key, intVal); Assert.assertEquals(Long.valueOf(intVal), props.getLongProperty(key)); try { props.putBooleanProperty(key, RandomUtil.randomBoolean()); props.getLongProperty(key); Assert.fail(); } catch (ActiveMQPropertyConversionException e) { } try { props.getLongProperty(unknownKey); Assert.fail(); } catch (NumberFormatException e) { } } @Test public void testDoubleProperty() throws Exception { Double val = RandomUtil.randomDouble(); props.putDoubleProperty(key, val); Assert.assertEquals(val, props.getDoubleProperty(key)); Assert.assertEquals(new SimpleString(Double.toString(val)), props.getSimpleStringProperty(key)); props.putSimpleStringProperty(key, new SimpleString(Double.toString(val))); Assert.assertEquals(val, props.getDoubleProperty(key)); try { props.putBooleanProperty(key, RandomUtil.randomBoolean()); props.getDoubleProperty(key); Assert.fail(); } catch (ActiveMQPropertyConversionException e) { } try { props.getDoubleProperty(unknownKey); Assert.fail(); } catch (Exception e) { } } @Test public void testFloatProperty() throws Exception { Float val = RandomUtil.randomFloat(); props.putFloatProperty(key, val); Assert.assertEquals(val, props.getFloatProperty(key)); Assert.assertEquals(Double.valueOf(val), props.getDoubleProperty(key)); Assert.assertEquals(new SimpleString(Float.toString(val)), props.getSimpleStringProperty(key)); props.putSimpleStringProperty(key, new SimpleString(Float.toString(val))); Assert.assertEquals(val, props.getFloatProperty(key)); try { props.putBooleanProperty(key, RandomUtil.randomBoolean()); props.getFloatProperty(key); Assert.fail(); } catch (ActiveMQPropertyConversionException e) { } try { props.getFloatProperty(unknownKey); Assert.fail(); } catch (Exception e) { } } @Test public void testShortProperty() throws Exception { Short val = RandomUtil.randomShort(); props.putShortProperty(key, val); Assert.assertEquals(val, props.getShortProperty(key)); Assert.assertEquals(Integer.valueOf(val), props.getIntProperty(key)); Assert.assertEquals(new SimpleString(Short.toString(val)), props.getSimpleStringProperty(key)); props.putSimpleStringProperty(key, new SimpleString(Short.toString(val))); Assert.assertEquals(val, props.getShortProperty(key)); Byte byteVal = RandomUtil.randomByte(); props.putByteProperty(key, byteVal); Assert.assertEquals(Short.valueOf(byteVal), props.getShortProperty(key)); try { props.putBooleanProperty(key, RandomUtil.randomBoolean()); props.getShortProperty(key); Assert.fail(); } catch (ActiveMQPropertyConversionException e) { } try { props.getShortProperty(unknownKey); Assert.fail(); } catch (NumberFormatException e) { } } @Test public void testSimpleStringProperty() throws Exception { SimpleString strVal = RandomUtil.randomSimpleString(); props.putSimpleStringProperty(key, strVal); Assert.assertEquals(strVal, props.getSimpleStringProperty(key)); } @Test public void testBytesProperty() throws Exception { byte[] val = RandomUtil.randomBytes(); props.putBytesProperty(key, val); Assert.assertArrayEquals(val, props.getBytesProperty(key)); try { props.putBooleanProperty(key, RandomUtil.randomBoolean()); props.getBytesProperty(key); Assert.fail(); } catch (ActiveMQPropertyConversionException e) { } Assert.assertNull(props.getBytesProperty(unknownKey)); } // Package protected --------------------------------------------- // Protected ----------------------------------------------------- // Private ------------------------------------------------------- // Inner classes ------------------------------------------------- }