/* * Copyright (c) 2007 Tom Parker <thpr@users.sourceforge.net> * * This program is free software; you can redistribute it and/or modify it 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. * * This program 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 library; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ package plugin.lsttokens.pcclass; import java.net.URISyntaxException; import org.junit.Before; import org.junit.Test; import pcgen.cdom.enumeration.IntegerKey; import pcgen.cdom.enumeration.ObjectKey; import pcgen.cdom.enumeration.StringKey; import pcgen.core.PCClass; import pcgen.persistence.PersistenceLayerException; import pcgen.rules.persistence.CDOMLoader; import pcgen.rules.persistence.token.CDOMPrimaryToken; import plugin.lsttokens.testsupport.AbstractCDOMTokenTestCase; import plugin.lsttokens.testsupport.CDOMTokenLoader; import plugin.lsttokens.testsupport.ConsolidationRule; public class LevelsPerFeatTokenTest extends AbstractCDOMTokenTestCase<PCClass> { static LevelsperfeatToken token = new LevelsperfeatToken(); static CDOMTokenLoader<PCClass> loader = new CDOMTokenLoader<PCClass>(); @Override @Before public final void setUp() throws PersistenceLayerException, URISyntaxException { super.setUp(); } @Override public Class<PCClass> getCDOMClass() { return PCClass.class; } @Override public CDOMLoader<PCClass> getLoader() { return loader; } @Override public CDOMPrimaryToken<PCClass> getToken() { return token; } public ObjectKey<?> getObjectKey() { return ObjectKey.ALIGNMENT; } @Test public void testInvalidEmpty() throws PersistenceLayerException { assertFalse(parse("")); assertNoSideEffects(); } @Test public void testInvalidFormula() throws PersistenceLayerException { assertFalse(parse("1+3")); assertNoSideEffects(); } @Test public void testInvalidNonLevelType() throws PersistenceLayerException { assertFalse(parse("4|Foo=bar")); assertNoSideEffects(); } @Test public void testInvalidMissingLevelType1() throws PersistenceLayerException { assertFalse(parse("4|")); assertNoSideEffects(); } @Test public void testInvalidMissingLevelType() throws PersistenceLayerException { assertFalse(parse("4|Foo")); assertNoSideEffects(); } @Test public void testInvalidMissingLevelType2() throws PersistenceLayerException { assertFalse(parse("4|LEVELTYPE")); assertNoSideEffects(); } @Test public void testInvalidMissingLevelType3() throws PersistenceLayerException { assertFalse(parse("4|LEVELTYPE=")); assertNoSideEffects(); } @Test public void testInvalidMissingFormula() throws PersistenceLayerException { assertFalse(parse("|LEVELTYPE=Foo")); assertNoSideEffects(); } @Test public void testInvalidTooManyPipes() throws PersistenceLayerException { assertFalse(parse("4|LEVELTYPE=Foo|LEVELTYPE=Bar")); assertNoSideEffects(); } @Test public void testInvalidTooManyMiddlePipes() throws PersistenceLayerException { assertFalse(parse("4||LEVELTYPE=Foo")); assertNoSideEffects(); } @Test public void testInvalidMissingLevelType4() throws PersistenceLayerException { assertFalse(parse("4|=Foo")); assertNoSideEffects(); } @Test public void testInvalidString() throws PersistenceLayerException { assertFalse(parse("String")); assertNoSideEffects(); } @Test public void testInvalidNegative() throws PersistenceLayerException { assertFalse(parse("-1")); assertNoSideEffects(); } @Test public void testRoundRobinInteger() throws PersistenceLayerException { runRoundRobin("4"); } @Test public void testRoundRobinZero() throws PersistenceLayerException { runRoundRobin("0"); } @Test public void testRoundRobinWithLevelType() throws PersistenceLayerException { runRoundRobin("3|LEVELTYPE=Foo"); } @Override protected String getAlternateLegalValue() { return "4"; } @Override protected String getLegalValue() { return "3|LEVELTYPE=Foo"; } @Override protected ConsolidationRule getConsolidationRule() { return ConsolidationRule.OVERWRITE; } @Test public void testUnparseOne() throws PersistenceLayerException { expectSingle(setAndUnparse(1), Integer.toString(1)); } @Test public void testUnparseZero() throws PersistenceLayerException { expectSingle(setAndUnparse(0), Integer.toString(0)); } @Test public void testUnparseNegative() throws PersistenceLayerException { primaryProf.put(getIntegerKey(), -3); assertBadUnparse(); } private IntegerKey getIntegerKey() { return IntegerKey.LEVELS_PER_FEAT; } @Test public void testUnparseNull() throws PersistenceLayerException { primaryProf.put(getIntegerKey(), null); assertNull(getToken().unparse(primaryContext, primaryProf)); } protected String[] setAndUnparse(int val) { primaryProf.put(getIntegerKey(), val); return getToken().unparse(primaryContext, primaryProf); } @Test public void testUnparseOneTyped() throws PersistenceLayerException { primaryProf.put(getIntegerKey(), 1); primaryProf.put(StringKey.LEVEL_TYPE, "Foo"); expectSingle(getToken().unparse(primaryContext, primaryProf), "1|LEVELTYPE=Foo"); } @Test public void testUnparseInvalidOnlyType() throws PersistenceLayerException { primaryProf.put(StringKey.LEVEL_TYPE, "Foo"); assertBadUnparse(); } //StringKey.LEVEL_TYPE }