wrunderwood commented on a change in pull request #96: URL: https://github.com/apache/solr/pull/96#discussion_r643435567
########## File path: solr/core/src/test/org/apache/solr/util/TestCircuitBreaker.java ########## @@ -199,7 +201,63 @@ public void testFakeCPUCircuitBreaker() { PluginInfo pluginInfo = h.getCore().getSolrConfig().getPluginInfo(CircuitBreakerManager.class.getName()); CircuitBreaker.CircuitBreakerConfig circuitBreakerConfig = CircuitBreakerManager.buildCBConfig(pluginInfo); - CircuitBreaker circuitBreaker = new FakeCPUCircuitBreaker(circuitBreakerConfig); + CircuitBreaker circuitBreaker = new FakeCPUCircuitBreaker(circuitBreakerConfig, null); + + h.getCore().getCircuitBreakerManager().register(circuitBreaker); + + List<Future<?>> futures = new ArrayList<>(); + + for (int i = 0; i < 5; i++) { + Future<?> future = executor.submit(() -> { + try { + h.query(req("name:\"john smith\"")); + } catch (SolrException e) { + assertThat(e.getMessage(), containsString("Circuit Breakers tripped")); + failureCount.incrementAndGet(); + } catch (Exception e) { + throw new RuntimeException(e.getMessage()); + } + }); + + futures.add(future); + } + + for (Future<?> future : futures) { + try { + future.get(); + } catch (Exception e) { + throw new RuntimeException(e.getMessage()); + } + } + + executor.shutdown(); + try { + executor.awaitTermination(Long.MAX_VALUE, TimeUnit.NANOSECONDS); + } catch (InterruptedException e) { + Thread.currentThread().interrupt(); + throw new RuntimeException(e.getMessage()); + } + + assertEquals("Number of failed queries is not correct",5, failureCount.get()); + } finally { + if (!executor.isShutdown()) { + executor.shutdown(); + } + } + } + + public void testFakeLoadAverageCircuitBreaker() { + AtomicInteger failureCount = new AtomicInteger(); + + ExecutorService executor = ExecutorUtil.newMDCAwareCachedThreadPool( + new SolrNamedThreadFactory("TestCircuitBreaker")); + try { + removeAllExistingCircuitBreakers(); + + PluginInfo pluginInfo = h.getCore().getSolrConfig().getPluginInfo(CircuitBreakerManager.class.getName()); Review comment: Yes, because the original class has been renamed to an accurate name, so this test is renamed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For additional commands, e-mail: issues-h...@solr.apache.org