Search in sources :

Example 1 with TestSolutionHandler

use of org.asqatasun.ruleimplementation.TestSolutionHandler in project Asqatasun by Asqatasun.

the class Rgaa32016Rule060303 method testLink.

/**
     * 
     * @param sspHandler
     * @param el
     * @return 
     */
private TestSolution testLink(SSPHandler sspHandler, Element el) {
    ElementHandler<Element> elHandler = new ElementHandlerImpl(el);
    TestSolutionHandler tsHandler = new TestSolutionHandlerImpl();
    // reset the service for each tested element. We use the collection 
    // handled by the service to feed the local collection of remarks
    prs.resetService();
    // check the pertinence of the link
    getDecidableElementsChecker().check(sspHandler, elHandler, tsHandler);
    // get the processRemark for eventually override it with the result
    // returned by the title pertinence checker
    ProcessRemark remark = prs.getRemarkList().iterator().next();
    // to nmi but the inverse is impossible.
    if (tsHandler.getTestSolution().equals(TestSolution.FAILED)) {
        // check the pertinence of the title of the link
        String linkText = getDecidableElementsChecker().getTextElementBuilder().buildTextFromElement(el);
        if (testTitleAttributeLink(sspHandler, el, linkText).equals(TestSolution.NEED_MORE_INFO)) {
            //override result (evidence element have already been collected
            remark.setIssue(TestSolution.NEED_MORE_INFO);
            remark.setMessageCode(CHECK_LINK_PERTINENCE_MSG);
            remarks.add(remark);
            return TestSolution.NEED_MORE_INFO;
        }
    }
    remarks.add(remark);
    return tsHandler.getTestSolution();
}
Also used : Element(org.jsoup.nodes.Element) ElementHandlerImpl(org.asqatasun.ruleimplementation.ElementHandlerImpl) TestSolutionHandlerImpl(org.asqatasun.ruleimplementation.TestSolutionHandlerImpl) TestSolutionHandler(org.asqatasun.ruleimplementation.TestSolutionHandler) ProcessRemark(org.asqatasun.entity.audit.ProcessRemark)

Example 2 with TestSolutionHandler

use of org.asqatasun.ruleimplementation.TestSolutionHandler in project Asqatasun by Asqatasun.

the class Rgaa32016Rule060303 method testTitleAttributeLink.

/**
     * 
     * @param sspHandler
     * @param el
     * @param linkText
     * @return 
     */
private TestSolution testTitleAttributeLink(SSPHandler sspHandler, Element el, String linkText) {
    // content identical to the link text, returns not applicable.
    if (!el.hasAttr(TITLE_ATTR)) {
        return TestSolution.NOT_APPLICABLE;
    }
    String attrValue = el.attr(TITLE_ATTR);
    if (StringUtils.isBlank(attrValue)) {
        return TestSolution.NOT_APPLICABLE;
    }
    if (StringUtils.equalsIgnoreCase(attrValue, linkText)) {
        return TestSolution.NOT_APPLICABLE;
    }
    ElementHandler<Element> elHandler = new ElementHandlerImpl(el);
    TestSolutionHandler tsHandler = new TestSolutionHandlerImpl();
    titlePertinenceElementChecker.check(sspHandler, elHandler, tsHandler);
    return tsHandler.getTestSolution();
}
Also used : Element(org.jsoup.nodes.Element) ElementHandlerImpl(org.asqatasun.ruleimplementation.ElementHandlerImpl) TestSolutionHandlerImpl(org.asqatasun.ruleimplementation.TestSolutionHandlerImpl) TestSolutionHandler(org.asqatasun.ruleimplementation.TestSolutionHandler)

Example 3 with TestSolutionHandler

use of org.asqatasun.ruleimplementation.TestSolutionHandler in project Asqatasun by Asqatasun.

the class Rgaa32016Rule060301 method testTitleAttributeLink.

/**
     * 
     * @param sspHandler
     * @param el
     * @param linkText
     * @return 
     */
private TestSolution testTitleAttributeLink(SSPHandler sspHandler, Element el, String linkText) {
    // content identical to the link text, returns not applicable.
    if (!el.hasAttr(TITLE_ATTR)) {
        return TestSolution.NOT_APPLICABLE;
    }
    String attrValue = el.attr(TITLE_ATTR);
    if (StringUtils.isBlank(attrValue)) {
        return TestSolution.NOT_APPLICABLE;
    }
    if (StringUtils.equalsIgnoreCase(attrValue, linkText)) {
        return TestSolution.NOT_APPLICABLE;
    }
    ElementHandler<Element> elHandler = new ElementHandlerImpl(el);
    TestSolutionHandler tsHandler = new TestSolutionHandlerImpl();
    titlePertinenceElementChecker.check(sspHandler, elHandler, tsHandler);
    return tsHandler.getTestSolution();
}
Also used : Element(org.jsoup.nodes.Element) ElementHandlerImpl(org.asqatasun.ruleimplementation.ElementHandlerImpl) TestSolutionHandlerImpl(org.asqatasun.ruleimplementation.TestSolutionHandlerImpl) TestSolutionHandler(org.asqatasun.ruleimplementation.TestSolutionHandler)

Example 4 with TestSolutionHandler

use of org.asqatasun.ruleimplementation.TestSolutionHandler in project Asqatasun by Asqatasun.

the class Rgaa32016Rule060301 method testLink.

/**
     * 
     * @param sspHandler
     * @param el
     * @return 
     */
private TestSolution testLink(SSPHandler sspHandler, Element el) {
    ElementHandler<Element> elHandler = new ElementHandlerImpl(el);
    TestSolutionHandler tsHandler = new TestSolutionHandlerImpl();
    // reset the service for each tested element. We use the collection 
    // handled by the service to feed the local collection of remarks
    prs.resetService();
    // check the pertinence of the link
    getDecidableElementsChecker().check(sspHandler, elHandler, tsHandler);
    // get the processRemark for eventually override it with the result
    // returned by the title pertinence checker
    ProcessRemark remark = prs.getRemarkList().iterator().next();
    // to nmi but the inverse is impossible.
    if (tsHandler.getTestSolution().equals(TestSolution.FAILED)) {
        // check the pertinence of the title of the link
        String linkText = getDecidableElementsChecker().getTextElementBuilder().buildTextFromElement(el);
        if (testTitleAttributeLink(sspHandler, el, linkText).equals(TestSolution.NEED_MORE_INFO)) {
            //override result (evidence element have already been collected
            remark.setIssue(TestSolution.NEED_MORE_INFO);
            remark.setMessageCode(CHECK_LINK_PERTINENCE_MSG);
            remarks.add(remark);
            return TestSolution.NEED_MORE_INFO;
        }
    }
    remarks.add(remark);
    return tsHandler.getTestSolution();
}
Also used : Element(org.jsoup.nodes.Element) ElementHandlerImpl(org.asqatasun.ruleimplementation.ElementHandlerImpl) TestSolutionHandlerImpl(org.asqatasun.ruleimplementation.TestSolutionHandlerImpl) TestSolutionHandler(org.asqatasun.ruleimplementation.TestSolutionHandler) ProcessRemark(org.asqatasun.entity.audit.ProcessRemark)

Example 5 with TestSolutionHandler

use of org.asqatasun.ruleimplementation.TestSolutionHandler in project Asqatasun by Asqatasun.

the class CompositeChecker method callCheckers.

/**
 * Check the pertinence of a text by calling recursively the checkers
 * loaded by the instance. If no checker returns failed, a sourceCodeRemark
 * is created with a manual check message. To respect the ElementChecker
 * interface, the check method is called with an elementHandler instance as
 * argument. This instance only contains the current checked element.
 *
 * @param sspHandler
 * @param elementHandler
 * @return the solution of the pertinence check
 */
protected TestSolution callCheckers(SSPHandler sspHandler, ElementHandler<Element> elementHandler) {
    TestSolutionHandler globalTestSolutionHandler = new TestSolutionHandlerImpl();
    for (ElementChecker ec : checkers) {
        TestSolutionHandler testSolutionHandler = new TestSolutionHandlerImpl();
        ec.check(sspHandler, elementHandler, testSolutionHandler);
        TestSolution checkerSolution = testSolutionHandler.getTestSolution();
        LoggerFactory.getLogger(this.getClass()).debug("Checker " + ec.getClass() + " returned " + checkerSolution);
        if (isOrCombinaison && (checkerSolution.equals(ec.getFailureSolution()) || checkerSolution.equals(TestSolution.NOT_APPLICABLE))) {
            return checkerSolution;
        }
        globalTestSolutionHandler.addTestSolution(checkerSolution);
    }
    return createSolutionFromCheckersResult(globalTestSolutionHandler.getTestSolution(), elementHandler);
}
Also used : TestSolution(org.asqatasun.entity.audit.TestSolution) TestSolutionHandlerImpl(org.asqatasun.ruleimplementation.TestSolutionHandlerImpl) TestSolutionHandler(org.asqatasun.ruleimplementation.TestSolutionHandler)

Aggregations

TestSolutionHandler (org.asqatasun.ruleimplementation.TestSolutionHandler)17 TestSolutionHandlerImpl (org.asqatasun.ruleimplementation.TestSolutionHandlerImpl)16 Element (org.jsoup.nodes.Element)15 ElementHandlerImpl (org.asqatasun.ruleimplementation.ElementHandlerImpl)14 ProcessRemark (org.asqatasun.entity.audit.ProcessRemark)6 File (java.io.File)2 Document (org.jsoup.nodes.Document)2 ImmutablePair (org.apache.commons.lang3.tuple.ImmutablePair)1 SSP (org.asqatasun.entity.audit.SSP)1 TestSolution (org.asqatasun.entity.audit.TestSolution)1 SSPHandler (org.asqatasun.processor.SSPHandler)1 ProcessRemarkService (org.asqatasun.service.ProcessRemarkService)1 Elements (org.jsoup.select.Elements)1