/* * 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 org.junit.Test; import pcgen.cdom.enumeration.ObjectKey; import pcgen.core.PCClass; import pcgen.core.prereq.Prerequisite; import pcgen.core.prereq.PrerequisiteOperator; 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 RaceTypeTokenTest extends AbstractCDOMTokenTestCase<PCClass> { static PreracetypeToken token = new PreracetypeToken(); static CDOMTokenLoader<PCClass> loader = new CDOMTokenLoader<PCClass>(); @Override public Class<PCClass> getCDOMClass() { return PCClass.class; } @Override public CDOMLoader<PCClass> getLoader() { return loader; } @Override public CDOMPrimaryToken<PCClass> getToken() { return token; } @Test public void testInvalidEmptyInput() throws PersistenceLayerException { assertFalse(parse("")); assertNoSideEffects(); } @Test public void testRoundRobinBase() throws PersistenceLayerException { runRoundRobin("Rheinhessen"); } @Test public void testRoundRobinWithSpace() throws PersistenceLayerException { runRoundRobin("Finger Lakes"); } @Test public void testRoundRobinNonEnglishAndN() throws PersistenceLayerException { runRoundRobin("Niederösterreich"); } @Test public void testRoundRobinHyphen() throws PersistenceLayerException { runRoundRobin("Languedoc-Roussillon"); } @Test public void testRoundRobinY() throws PersistenceLayerException { runRoundRobin("Yarra Valley"); } @Override protected String getAlternateLegalValue() { return "Languedoc-Roussillon"; } @Override protected String getLegalValue() { return "Yarra Valley"; } @Override protected ConsolidationRule getConsolidationRule() { return ConsolidationRule.OVERWRITE; } @Test public void testUnparseNull() throws PersistenceLayerException { primaryProf.put(getObjectKey(), null); assertNull(getToken().unparse(primaryContext, primaryProf)); } private ObjectKey<Prerequisite> getObjectKey() { return ObjectKey.PRERACETYPE; } @Test public void testUnparseLegal() throws PersistenceLayerException { Prerequisite p = new Prerequisite(); p.setKind("RACETYPE"); p.setOperand("1"); p.setKey(getLegalValue()); p.setOperator(PrerequisiteOperator.GTEQ); primaryProf.put(getObjectKey(), p); expectSingle(getToken().unparse(primaryContext, primaryProf), getLegalValue()); } /* * TODO Where is responsibility to catch this? */ // @Test // public void testUnparseIllegal() throws PersistenceLayerException // { // Prerequisite p = new Prerequisite(); // p.setKind("RACE"); // p.setOperand("1"); // p.setKey(getLegalValue()); // p.setOperator(PrerequisiteOperator.GTEQ); // primaryProf.put(getObjectKey(), p); // assertBadUnparse(); // } @SuppressWarnings("unchecked") @Test public void testUnparseGenericsFail() throws PersistenceLayerException { ObjectKey objectKey = getObjectKey(); primaryProf.put(objectKey, new Object()); try { getToken().unparse(primaryContext, primaryProf); fail(); } catch (ClassCastException e) { //Yep! } } }