|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.tools.ant.ProjectComponent | +--org.apache.tools.ant.Task | +--org.apache.anteater.test.BaseTask | +--org.apache.anteater.test.ContentHandlerTask | +--org.apache.anteater.test.MatcherTest | +--org.apache.anteater.test.matchers.Regexp
Validates content against a regular expression.
Field Summary | |
protected int |
_group
|
protected boolean |
_ignoreCase
|
protected Boolean |
_ignoreSpaces
|
protected boolean |
_ignoreTags
|
protected boolean |
_mustMatch
|
protected String |
_pattern
|
protected Boolean |
_singleLine
|
protected static String |
FALSE_MESSAGE
|
protected static String |
TRUE_MESSAGE
|
Fields inherited from class org.apache.anteater.test.MatcherTest |
logger, matcher, objectModel, property |
Fields inherited from class org.apache.anteater.test.ContentHandlerTask |
handlerFactory, matcherTests |
Fields inherited from class org.apache.anteater.test.BaseTask |
debug, debugWasSet |
Fields inherited from class org.apache.tools.ant.Task |
description, location, target, taskName, taskType, wrapper |
Fields inherited from class org.apache.tools.ant.ProjectComponent |
project |
Fields inherited from interface org.apache.anteater.test.ObjectModel |
NAMESPACES_KEY, PROPERTIES_KEY |
Constructor Summary | |
Regexp()
|
|
Regexp(String pattern,
boolean mustMatch,
boolean ignoreCase,
boolean singleLine)
|
Method Summary | |
void |
addText(String pattern)
Set the regular expression. |
void |
setGroup(int num)
Sets the regexp 'group number' whose match will be returned in the 'assign' variable. |
void |
setIgnoreCase(boolean ignoreCase)
A boolean flag indicating whether case in the regexp is significant. |
void |
setIgnoreSpaces(boolean ignore)
Set whether whitespace will be ignored when testing. |
void |
setIgnoreTags(boolean ignore)
Whether to ignore <tags> when making comparisons. |
void |
setMustMatch(boolean mustMatch)
A boolean flag indicating whether the specified regexp must or mustn't match for the test to have passed. |
void |
setPattern(String pattern)
Set the regular expression. |
void |
setSingleLine(boolean singleLine)
Whether .* matches newlines (\n). |
String |
toString()
|
boolean |
validate()
Return true if this instance matches against the matchOn object of the matcher . |
Methods inherited from class org.apache.anteater.test.MatcherTest |
getMatchOn, getResult, getText, setAssign, setLogger, setMatcher, setObjectModel, setPropertyValue |
Methods inherited from class org.apache.anteater.test.ContentHandlerTask |
addTask, execute |
Methods inherited from class org.apache.anteater.test.BaseTask |
debug, getDebug, getGroup, print, println, resolveContentURL, setDebug, setGroup, setGroup |
Methods inherited from class org.apache.tools.ant.Task |
getDescription, getLocation, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, handleErrorOutput, handleOutput, init, isInvalid, log, log, maybeConfigure, perform, setDescription, setLocation, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName |
Methods inherited from class org.apache.tools.ant.ProjectComponent |
getProject, setProject |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
protected String _pattern
protected boolean _mustMatch
protected boolean _ignoreCase
protected Boolean _singleLine
protected Boolean _ignoreSpaces
protected boolean _ignoreTags
protected int _group
protected static final String TRUE_MESSAGE
protected static final String FALSE_MESSAGE
Constructor Detail |
public Regexp()
public Regexp(String pattern, boolean mustMatch, boolean ignoreCase, boolean singleLine)
Method Detail |
public void setPattern(String pattern)
public void addText(String pattern)
addText
in class MatcherTest
public String toString()
toString
in class Object
public void setMustMatch(boolean mustMatch)
true
; the
regexp must match.
public void setIgnoreCase(boolean ignoreCase)
false
; case is insignificant.
public void setIgnoreSpaces(boolean ignore)
false
, ie whitespace is significant.
public void setIgnoreTags(boolean ignore)
ignoreSpaces
for
validating visible content in a browser.
Defaults to false
, ie tags are not ignored.
Currently unimplemented
public void setGroup(int num)
For example, if the text we're matching is 'name: Joe Bloggs':
<regexp assign="var">name: (.*)</regexp>
sets ${var} to 'name: Joe Bloggs' (remember the default is group 0)
<regexp assign="var" group="1">name: (.*)</regexp>
sets ${var} to 'Joe Bloggs'
<regexp assign="var" group="2">name: (.*) (.*)</regexp>
sets ${var} to 'Bloggs'
public void setSingleLine(boolean singleLine)
.*
matches newlines (\n). The default is
true
, so for example, <html>.*<body> will
match if there is a newline between the html and body tags.
public boolean validate() throws org.apache.tools.ant.BuildException
MatcherTest
matchOn
object of the matcher
.
validate
in class MatcherTest
boolean
value
org.apache.tools.ant.BuildException
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |