/*
* Tanaguru - Automated webpage assessment
* Copyright (C) 2008-2016 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.rgaa32016;
import org.apache.commons.lang3.tuple.ImmutablePair;
import org.tanaguru.entity.audit.*;
import org.tanaguru.rules.rgaa32016.test.Rgaa32016RuleImplementationTestCase;
import static org.tanaguru.rules.keystore.MarkerStore.*;
import org.tanaguru.rules.keystore.HtmlElementStore;
import static org.tanaguru.rules.keystore.HtmlElementStore.TEXT_ELEMENT2;
import org.tanaguru.rules.keystore.RemarkMessageStore;
/**
* Unit test class for the implementation of the rule 5-2-1 of the referential Rgaa 3-2016.
*
* @author jkowalczyk
*/
public class Rgaa32016Rule050201Test extends Rgaa32016RuleImplementationTestCase {
/**
* Default constructor
* @param testName
*/
public Rgaa32016Rule050201Test (String testName){
super(testName);
}
@Override
protected void setUpRuleImplementationClassName() {
setRuleImplementationClassName("org.tanaguru.rules.rgaa32016.Rgaa32016Rule050201");
}
@Override
protected void setUpWebResourceMap() {
addWebResource("Rgaa32016.Test.05.02.01-2Failed-01",
createParameter("Rules", COMPLEX_TABLE_MARKER, "class-complex-table"));
addWebResource("Rgaa32016.Test.05.02.01-2Failed-02",
createParameter("Rules", COMPLEX_TABLE_MARKER, "class-complex-table"));
addWebResource("Rgaa32016.Test.05.02.01-2Failed-03",
createParameter("Rules", COMPLEX_TABLE_MARKER, "id-complex-table"),
createParameter("Rules", DATA_TABLE_MARKER, "id-data-table"),
createParameter("Rules", PRESENTATION_TABLE_MARKER, "id-presentation-table"));
addWebResource("Rgaa32016.Test.05.02.01-3NMI-01");
addWebResource("Rgaa32016.Test.05.02.01-3NMI-02",
createParameter("Rules", COMPLEX_TABLE_MARKER, "class-complex-table"),
createParameter("Rules", PRESENTATION_TABLE_MARKER, "id-presentation-table"));
addWebResource("Rgaa32016.Test.05.02.01-4NA-01");
addWebResource("Rgaa32016.Test.05.02.01-4NA-02");
addWebResource("Rgaa32016.Test.05.02.01-4NA-03",
createParameter("Rules", PRESENTATION_TABLE_MARKER, "class-presentation-table"),
createParameter("Rules", DATA_TABLE_MARKER, "class-data-table"));
}
@Override
protected void setProcess() {
//----------------------------------------------------------------------
//------------------------------2Failed-01------------------------------
//----------------------------------------------------------------------
ProcessResult processResult = processPageTest("Rgaa32016.Test.05.02.01-2Failed-01");
checkResultIsFailed(processResult, 1, 1);
checkRemarkIsPresent(
processResult,
TestSolution.FAILED,
RemarkMessageStore.NOT_PERTINENT_CAPTION_FOR_COMPLEX_TABLE_MSG,
HtmlElementStore.CAPTION_ELEMENT,
1,
new ImmutablePair(TEXT_ELEMENT2, ""));
//----------------------------------------------------------------------
//------------------------------2Failed-02------------------------------
//----------------------------------------------------------------------
processResult = processPageTest("Rgaa32016.Test.05.02.01-2Failed-02");
checkResultIsFailed(processResult, 1, 1);
checkRemarkIsPresent(
processResult,
TestSolution.FAILED,
RemarkMessageStore.NOT_PERTINENT_CAPTION_FOR_COMPLEX_TABLE_MSG,
HtmlElementStore.CAPTION_ELEMENT,
1,
new ImmutablePair(TEXT_ELEMENT2, "#^;:/"));
//----------------------------------------------------------------------
//------------------------------2Failed-03------------------------------
//----------------------------------------------------------------------
processResult = processPageTest("Rgaa32016.Test.05.02.01-2Failed-03");
checkResultIsFailed(processResult, 3, 3);
checkRemarkIsPresent(
processResult,
TestSolution.FAILED,
RemarkMessageStore.NOT_PERTINENT_CAPTION_FOR_COMPLEX_TABLE_MSG,
HtmlElementStore.CAPTION_ELEMENT,
1,
new ImmutablePair(TEXT_ELEMENT2, ""));
checkRemarkIsPresent(
processResult,
TestSolution.NEED_MORE_INFO,
RemarkMessageStore.CHECK_TABLE_IS_COMPLEX_AND_CAPTION_PERTINENCE_MSG,
HtmlElementStore.CAPTION_ELEMENT,
2,
new ImmutablePair(TEXT_ELEMENT2, "Caption of table without marker"));
checkRemarkIsPresent(
processResult,
TestSolution.NEED_MORE_INFO,
RemarkMessageStore.CHECK_TABLE_IS_COMPLEX_FOR_NOT_PERTINENT_CAPTION_MSG,
HtmlElementStore.CAPTION_ELEMENT,
3,
new ImmutablePair(TEXT_ELEMENT2, "$$##''''"));
//----------------------------------------------------------------------
//------------------------------3NMI-01--------------------------------
//----------------------------------------------------------------------
processResult = processPageTest("Rgaa32016.Test.05.02.01-3NMI-01");
checkResultIsPreQualified(processResult, 1, 1);
checkRemarkIsPresent(
processResult,
TestSolution.NEED_MORE_INFO,
RemarkMessageStore.CHECK_TABLE_IS_COMPLEX_AND_CAPTION_PERTINENCE_MSG,
HtmlElementStore.CAPTION_ELEMENT,
1,
new ImmutablePair(TEXT_ELEMENT2, "Caption of not identified table"));
//----------------------------------------------------------------------
//------------------------------3NMI-02--------------------------------
//----------------------------------------------------------------------
processResult = processPageTest("Rgaa32016.Test.05.02.01-3NMI-02");
checkResultIsPreQualified(processResult, 1, 1);
checkRemarkIsPresent(
processResult,
TestSolution.NEED_MORE_INFO,
RemarkMessageStore.CHECK_CAPTION_PERTINENCE_FOR_COMPLEX_TABLE_MSG,
HtmlElementStore.CAPTION_ELEMENT,
1,
new ImmutablePair(TEXT_ELEMENT2, "Caption of complex table"));
//----------------------------------------------------------------------
//------------------------------4NA-01----------------------------------
//----------------------------------------------------------------------
checkResultIsNotApplicable(processPageTest("Rgaa32016.Test.05.02.01-4NA-01"));
//----------------------------------------------------------------------
//------------------------------4NA-02----------------------------------
//----------------------------------------------------------------------
checkResultIsNotApplicable(processPageTest("Rgaa32016.Test.05.02.01-4NA-02"));
//----------------------------------------------------------------------
//------------------------------4NA-03----------------------------------
//----------------------------------------------------------------------
checkResultIsNotApplicable(processPageTest("Rgaa32016.Test.05.02.01-4NA-03"));
}
}