org.apache.commons.latka.validators
Class GoldenFileValidator

java.lang.Object
  extended by org.apache.commons.latka.validators.BaseValidator
      extended by org.apache.commons.latka.validators.GoldenFileValidator
All Implemented Interfaces:
Validator

public class GoldenFileValidator
extends BaseValidator
implements Validator

Compare the response with a golden file. Right now this is a proof of concept class; we should extend it to support more than just files, I think. Also, maybe golden files should be more than just text.


Field Summary
protected  File _goldFile
           
protected  boolean _ignoreWhitespace
           
protected  StringBuffer _matchLog
           
protected static String TRUE_MESSAGE
           
 
Fields inherited from class org.apache.commons.latka.validators.BaseValidator
_label, _log
 
Constructor Summary
GoldenFileValidator(File goldenFile)
           
GoldenFileValidator(String label, File goldenFile)
           
 
Method Summary
protected  boolean compare(byte[] array1, byte[] array2)
           
protected  boolean compareWeak(String str1, String str2)
           
protected  void log(String message)
           
 void setIgnoreWhitespace(boolean ignoreWhitespace)
           
 void validate(Response response)
          Validate a response
 
Methods inherited from class org.apache.commons.latka.validators.BaseValidator
fail, getLabel, setLabel
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

_goldFile

protected File _goldFile

_ignoreWhitespace

protected boolean _ignoreWhitespace

TRUE_MESSAGE

protected static String TRUE_MESSAGE

_matchLog

protected StringBuffer _matchLog
Constructor Detail

GoldenFileValidator

public GoldenFileValidator(File goldenFile)

GoldenFileValidator

public GoldenFileValidator(String label,
                           File goldenFile)
Method Detail

setIgnoreWhitespace

public void setIgnoreWhitespace(boolean ignoreWhitespace)

validate

public void validate(Response response)
              throws ValidationException
Description copied from class: BaseValidator
Validate a response

Specified by:
validate in interface Validator
Specified by:
validate in class BaseValidator
Parameters:
response - the response to validate
Throws:
ValidationException - if the Response fails to be valid

compare

protected boolean compare(byte[] array1,
                          byte[] array2)

compareWeak

protected boolean compareWeak(String str1,
                              String str2)

log

protected void log(String message)


Copyright © 2001-2010 The Apache Software Foundation. All Rights Reserved.