SOLR-7603: more test verbosity to try and track this down in the future

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1682137 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Chris M. Hostetter 2015-05-27 23:36:16 +00:00
parent 6d5f86105e
commit b4d07d2637
1 changed files with 25 additions and 5 deletions

View File

@ -70,6 +70,8 @@ public class UpdateRequestProcessorFactoryTest extends AbstractSolrTestCase {
}
public void testUpdateDistribChainSkipping() throws Exception {
final int EXPECTED_CHAIN_LENGTH = 5;
SolrCore core = h.getCore();
for (final String name : Arrays.asList("distrib-chain-explicit",
"distrib-chain-implicit",
@ -79,8 +81,9 @@ public class UpdateRequestProcessorFactoryTest extends AbstractSolrTestCase {
UpdateRequestProcessorChain chain = core.getUpdateProcessingChain(name);
assertNotNull(name, chain);
// either explicitly, or because of injection
assertEquals(name + " chain length", 5,
assertEquals(name + " chain length", EXPECTED_CHAIN_LENGTH,
chain.getFactories().length);
// Custom comes first in all three of our chains
@ -92,24 +95,41 @@ public class UpdateRequestProcessorFactoryTest extends AbstractSolrTestCase {
// varies depending on chain, but definitely shouldn't be Custom
proc = chain.createProcessor(req(DISTRIB_UPDATE_PARAM, "non_blank_value"),
new SolrQueryResponse());
assertNotNull(name + " distrib chain had no proc's in it",
proc);
assertFalse(name + " post distrib proc should not be a CustomUpdateRequestProcessor: "
+ proc.getClass().getName(),
proc instanceof CustomUpdateRequestProcessor);
int n=0;
boolean foundLog = false;
String seen = "";
for (;;) {
n++;
seen = seen + proc.toString() + ", ";
if (proc instanceof LogUpdateProcessor) {
foundLog = true;
}
if (null == proc.next) {
break;
} else {
proc = proc.next;
if (proc == null) break;
}
}
assertTrue( n < chain.getFactories().length ); // some processors should have been dropped
assertTrue( foundLog ); // make sure the marker interface was successful in keeping the log processor
// some processors should have been dropped
assertTrue(name + " expected a distrib chain shorter then " + EXPECTED_CHAIN_LENGTH + " but got: " + n
+ " (" + seen +")",
n < EXPECTED_CHAIN_LENGTH );
// make sure the marker interface was successful in keeping the log processor even though it comes
// before distrib
assertTrue(name + " expected LogUpdateProcessor in chain due to @RunAllways, but not found: " + seen,
foundLog );
// all of these (shortened) distrib chains should still end with RunUpdateprocessor
assertTrue(name + " last processor isn't a RunUpdateProcessor: " + proc.getClass().getName(),
proc instanceof RunUpdateProcessor);
}
}