Coverage Report - com.jcabi.matchers.W3CValidatorMatcher
 
Classes in this File Line Coverage Branch Coverage Complexity
W3CValidatorMatcher
57%
8/14
0%
0/12
1.333
 
 1  
 /**
 2  
  * Copyright (c) 2011-2014, jcabi.com
 3  
  * All rights reserved.
 4  
  *
 5  
  * Redistribution and use in source and binary forms, with or without
 6  
  * modification, are permitted provided that the following conditions
 7  
  * are met: 1) Redistributions of source code must retain the above
 8  
  * copyright notice, this list of conditions and the following
 9  
  * disclaimer. 2) Redistributions in binary form must reproduce the above
 10  
  * copyright notice, this list of conditions and the following
 11  
  * disclaimer in the documentation and/or other materials provided
 12  
  * with the distribution. 3) Neither the name of the jcabi.com nor
 13  
  * the names of its contributors may be used to endorse or promote
 14  
  * products derived from this software without specific prior written
 15  
  * permission.
 16  
  *
 17  
  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 18  
  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
 19  
  * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 20  
  * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
 21  
  * THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
 22  
  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 23  
  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 24  
  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 25  
  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 26  
  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 27  
  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 28  
  * OF THE POSSIBILITY OF SUCH DAMAGE.
 29  
  */
 30  
 package com.jcabi.matchers;
 31  
 
 32  
 import com.jcabi.aspects.Immutable;
 33  
 import com.jcabi.log.Logger;
 34  
 import com.jcabi.w3c.Validator;
 35  
 import java.io.IOException;
 36  
 import lombok.EqualsAndHashCode;
 37  
 import lombok.ToString;
 38  
 import org.hamcrest.Description;
 39  
 import org.hamcrest.TypeSafeMatcher;
 40  
 
 41  
 /**
 42  
  * Matcher for checking HTML and CSS documents against W3C validation services.
 43  
  *
 44  
  * <p>Objects of this class are immutable and thread-safe.
 45  
  *
 46  
  * @author Carlos Miranda (miranda.cma@gmail.com)
 47  
  * @version $Id$
 48  
  */
 49  4
 @Immutable
 50  0
 @ToString
 51  0
 @EqualsAndHashCode(callSuper = false, of = "validator")
 52  
 final class W3CValidatorMatcher extends TypeSafeMatcher<String> {
 53  
 
 54  
     /**
 55  
      * The W3C Validator.
 56  
      */
 57  
     private final transient Validator validator;
 58  
 
 59  
     /**
 60  
      * Ctor.
 61  
      * @param val The Validator to use.
 62  
      */
 63  
     W3CValidatorMatcher(final Validator val) {
 64  2
         super();
 65  2
         this.validator = val;
 66  2
     }
 67  
 
 68  
     @Override
 69  
     public void describeTo(final Description description) {
 70  0
         description.appendText("W3C validator")
 71  
             .appendText(this.validator.toString());
 72  0
     }
 73  
 
 74  
     @Override
 75  
     public boolean matchesSafely(final String content) {
 76  4
         boolean matches = false;
 77  
         try {
 78  4
             matches = this.validator.validate(content).valid();
 79  0
         } catch (final IOException ex) {
 80  0
             Logger.warn(
 81  
                 this,
 82  
                 "#matchesSafely('%s'): unable to perform validation: %s",
 83  
                 content, ex.getMessage()
 84  
             );
 85  4
         }
 86  4
         return matches;
 87  
     }
 88  
 
 89  
 }