/* * Tanaguru - Automated webpage assessment * Copyright (C) 2008-2015 Tanaguru.org * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * Contact us by mail: tanaguru AT tanaguru DOT org */ package org.tanaguru.rules.rgaa22; import java.util.LinkedHashSet; import org.tanaguru.entity.audit.ProcessRemark; import org.tanaguru.entity.audit.ProcessResult; import org.tanaguru.entity.audit.TestSolution; import org.tanaguru.rules.keystore.RemarkMessageStore; import org.tanaguru.rules.rgaa22.test.Rgaa22RuleImplementationTestCase; /** * Unit test class for the implementation of the rule 9.2 of the referential RGAA 2.2. * * @author jkowalczyk */ public class Rgaa22Rule09021Test extends Rgaa22RuleImplementationTestCase { /** * Default constructor */ public Rgaa22Rule09021Test (String testName){ super(testName); } @Override protected void setUpRuleImplementationClassName() { setRuleImplementationClassName( "org.tanaguru.rules.rgaa22.Rgaa22Rule09021"); } @Override protected void setUpWebResourceMap() { getWebResourceMap().put("Rgaa22.Test.9.2-1Passed-01", getWebResourceFactory().createPage( getTestcasesFilePath() + "rgaa22/Rgaa22Rule09021/RGAA22.Test.9.2-1Passed-01.html")); getWebResourceMap().put("Rgaa22.Test.9.2-2Failed-01", getWebResourceFactory().createPage( getTestcasesFilePath() + "rgaa22/Rgaa22Rule09021/RGAA22.Test.9.2-2Failed-01.html")); getWebResourceMap().put("Rgaa22.Test.9.2-2Failed-02", getWebResourceFactory().createPage( getTestcasesFilePath() + "rgaa22/Rgaa22Rule09021/RGAA22.Test.9.2-2Failed-02.html")); getWebResourceMap().put("Rgaa22.Test.9.2-4NA-01", getWebResourceFactory().createPage( getTestcasesFilePath() + "rgaa22/Rgaa22Rule09021/RGAA22.Test.9.2-4NA-01.html")); } @Override protected void setProcess() { //---------------------------------------------------------------------- //------------------------------1Passed-01------------------------------ //---------------------------------------------------------------------- ProcessResult processResult = processPageTest("Rgaa22.Test.9.2-1Passed-01"); // check test result assertEquals(TestSolution.PASSED, processResult.getValue()); // check test has no remark assertNull(processResult.getRemarkSet()); // check number of elements in the page (no counter management here, // we test the presence of one tag in the page) assertEquals(0, processResult.getElementCounter()); //---------------------------------------------------------------------- //------------------------------2Failed-01------------------------------ //---------------------------------------------------------------------- processResult = processPageTest("Rgaa22.Test.9.2-2Failed-01"); // check number of elements in the page (no counter management here, // we test the presence of one tag in the page) assertEquals(0, processResult.getElementCounter()); // check test result assertEquals(TestSolution.FAILED, processResult.getValue()); // check number of remarks and their value assertEquals(1, processResult.getRemarkSet().size()); ProcessRemark processRemark = ((ProcessRemark)((LinkedHashSet)processResult.getRemarkSet()).iterator().next()); assertEquals(RemarkMessageStore.BAD_DOCTYPE_LOCATION_MSG, processRemark.getMessageCode()); // check number of evidence elements and their value assertNull(processRemark.getElementList()); //---------------------------------------------------------------------- //------------------------------2Failed-02------------------------------ //---------------------------------------------------------------------- processResult = processPageTest("Rgaa22.Test.9.2-2Failed-02"); // check number of elements in the page (no counter management here, // we test the presence of one tag in the page) assertEquals(0, processResult.getElementCounter()); // check test result assertEquals(TestSolution.FAILED, processResult.getValue()); // check number of remarks and their value assertEquals(1, processResult.getRemarkSet().size()); processRemark = ((ProcessRemark)((LinkedHashSet)processResult.getRemarkSet()).iterator().next()); assertEquals(RemarkMessageStore.BAD_DOCTYPE_LOCATION_MSG, processRemark.getMessageCode()); // check number of evidence elements and their value assertNull(processRemark.getElementList()); //---------------------------------------------------------------------- //------------------------------4NA-01------------------------------ //---------------------------------------------------------------------- processResult = processPageTest("Rgaa22.Test.9.2-4NA-01"); // check test result assertEquals(TestSolution.NOT_APPLICABLE, processResult.getValue()); // check test has no remark assertNull(processResult.getRemarkSet()); // check number of elements in the page (no counter management here, // we test the presence of one tag in the page) assertEquals(0, processResult.getElementCounter()); } @Override protected void setConsolidate() { assertEquals(TestSolution.PASSED, consolidate("Rgaa22.Test.9.2-1Passed-01").getValue()); assertEquals(TestSolution.FAILED, consolidate("Rgaa22.Test.9.2-2Failed-01").getValue()); assertEquals(TestSolution.FAILED, consolidate("Rgaa22.Test.9.2-2Failed-02").getValue()); assertEquals(TestSolution.NOT_APPLICABLE, consolidate("Rgaa22.Test.9.2-4NA-01").getValue()); } }