This is an automated email from the ASF dual-hosted git repository.
epugh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr-mcp.git
The following commit(s) were added to refs/heads/main by this push:
new 26a744c fix: Fix 2 erroneous tests in
CollectionServiceIntegrationTest (#93)
26a744c is described below
commit 26a744c64d3896cd82c5700088f2eb592905df3a
Author: Aditya Parikh <[email protected]>
AuthorDate: Fri Apr 24 11:16:45 2026 -0400
fix: Fix 2 erroneous tests in CollectionServiceIntegrationTest (#93)
* test: update assertion in CollectionServiceIntegrationTest to check for
null errors
* test: update assertion in CollectionServiceIntegrationTest to check for
null timeouts
---
.../CollectionServiceIntegrationTest.java | 21 +++++++++++++--------
1 file changed, 13 insertions(+), 8 deletions(-)
diff --git
a/src/test/java/org/apache/solr/mcp/server/collection/CollectionServiceIntegrationTest.java
b/src/test/java/org/apache/solr/mcp/server/collection/CollectionServiceIntegrationTest.java
index 242ca84..21a6ef8 100644
---
a/src/test/java/org/apache/solr/mcp/server/collection/CollectionServiceIntegrationTest.java
+++
b/src/test/java/org/apache/solr/mcp/server/collection/CollectionServiceIntegrationTest.java
@@ -16,13 +16,7 @@
*/
package org.apache.solr.mcp.server.collection;
-import static org.junit.jupiter.api.Assertions.*;
-
import com.fasterxml.jackson.databind.ObjectMapper;
-import java.util.ArrayList;
-import java.util.LinkedHashMap;
-import java.util.List;
-import java.util.Map;
import org.apache.solr.mcp.server.TestcontainersConfiguration;
import org.apache.solr.mcp.server.indexing.IndexingService;
import org.apache.solr.mcp.server.search.SearchResponse;
@@ -37,6 +31,17 @@ import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.context.annotation.Import;
import org.testcontainers.junit.jupiter.Testcontainers;
+import java.util.ArrayList;
+import java.util.LinkedHashMap;
+import java.util.List;
+import java.util.Map;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertFalse;
+import static org.junit.jupiter.api.Assertions.assertNotNull;
+import static org.junit.jupiter.api.Assertions.assertNull;
+import static org.junit.jupiter.api.Assertions.assertTrue;
+
@SpringBootTest
@Import(TestcontainersConfiguration.class)
@Testcontainers(disabledWithoutDocker = true)
@@ -227,8 +232,8 @@ class CollectionServiceIntegrationTest {
HandlerInfo select = handlerStats.selectHandler();
assertNotNull(select);
assertTrue(select.requests() > 0, "Select handler requests
should be positive after queries");
- assertNotNull(select.errors());
- assertNotNull(select.timeouts());
+ assertNull(select.errors());
+ assertNull(select.timeouts());
// Update handler: indexing 50 docs should have driven request
counts > 0
HandlerInfo update = handlerStats.updateHandler();