/* * Copyright (c) 2012 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 tokencontent; import java.util.Map; import pcgen.cdom.base.CDOMObject; import pcgen.cdom.facet.FacetLibrary; import pcgen.cdom.facet.analysis.FollowerOptionFacet; import pcgen.cdom.list.CompanionList; import pcgen.core.FollowerOption; import pcgen.core.Race; import pcgen.rules.persistence.token.CDOMToken; import pcgen.rules.persistence.token.ParseResult; import plugin.lsttokens.CompanionListLst; import tokencontent.testsupport.AbstractContentTokenTest; public class GlobalCompanionListTest extends AbstractContentTokenTest { private static CompanionListLst token = new CompanionListLst(); private FollowerOptionFacet foFacet; @Override protected void setUp() throws Exception { super.setUp(); foFacet = FacetLibrary.getFacet(FollowerOptionFacet.class); create(Race.class, "Ape"); } @Override public void processToken(CDOMObject source) { ParseResult result = token.parseToken(context, source, "Animal Companion|Ape|FOLLOWERADJUSTMENT:-3"); if (result != ParseResult.SUCCESS) { result.printMessages(); fail("Test Setup Failed"); } finishLoad(); } @Override public CDOMToken<?> getToken() { return token; } @Override protected boolean containsExpected() { /* * TODO This indicates that FollowerOptionFacet is not really pure * content - it is doing filtering as well */ Map<FollowerOption, CDOMObject> available = foFacet.getAvailableFollowers(id, "Animal Companion", null); if (available.size() != 1) { return false; } FollowerOption entry = available.keySet().iterator().next(); boolean raceMatches = entry.getRaceRef().equals( context.getReferenceContext().getCDOMReference(Race.class, "Ape")); boolean listMatches = entry.getListRef().equals( context.getReferenceContext().getCDOMReference(CompanionList.class, "Animal Companion")); boolean adjMatches = entry.getAdjustment() == -3; return raceMatches && listMatches && adjMatches; } @Override protected int targetFacetCount() { return foFacet.getCount(id); } @Override protected int baseCount() { return 0; } }