throws Exception {
final TokenStream t = a.tokenStream("", new StringReader(input));
t.reset();
assertTrue("has TermAttribute", t.hasAttribute(CharTermAttribute.class));
final CharTermAttribute termAtt = t.getAttribute(CharTermAttribute.class);
TypeAttribute typeAtt = null;
if (expectedTypes != null) {
assertTrue("has TypeAttribute", t.hasAttribute(TypeAttribute.class));
typeAtt = t.getAttribute(TypeAttribute.class);
}
PositionIncrementAttribute posIncrAtt = null;
if (expectedPosIncrs != null) {
assertTrue("has PositionIncrementAttribute", t.hasAttribute(PositionIncrementAttribute.class));
posIncrAtt = t.getAttribute(PositionIncrementAttribute.class);
}
NodeAttribute nodeAtt = null;
if (expectedNode != null) {
assertTrue("has NodeAttribute", t.hasAttribute(NodeAttribute.class));
nodeAtt = t.getAttribute(NodeAttribute.class);
}
PositionAttribute posAtt = null;
if (expectedPos != null) {
assertTrue("has PositionAttribute", t.hasAttribute(PositionAttribute.class));
posAtt = t.getAttribute(PositionAttribute.class);
}
for (int i = 0; i < expectedImages.length; i++) {
assertTrue("token "+i+" exists", t.incrementToken());
assertEquals("i=" + i, expectedImages[i], termAtt.toString());
if (expectedTypes != null) {
assertEquals(expectedTypes[i], typeAtt.type());
}
if (expectedPosIncrs != null) {
assertEquals(expectedPosIncrs[i], posIncrAtt.getPositionIncrement());
}
if (expectedNode != null) {
assertEquals(expectedNode[i], nodeAtt.node());
}
if (expectedPos != null) {
assertEquals(expectedPos[i], posAtt.position());
}
}
assertFalse("end of stream, received token " + termAtt.toString(), t.incrementToken());
t.end();
t.close();
}