fix: gradlew check

This commit is contained in:
SuperSonicVox 2024-05-24 16:51:30 -07:00
parent 4d20fa6eae
commit a7b147a810
1 changed files with 45 additions and 46 deletions

View File

@ -24,56 +24,55 @@ import org.apache.lucene.tests.util.LuceneTestCase;
public class TestSlowLog extends LuceneTestCase { public class TestSlowLog extends LuceneTestCase {
public void testAddQuery() { public void testAddQuery() {
SlowLog slowLog = new SlowLog(); SlowLog slowLog = new SlowLog();
long time1 = 1; long time1 = 1;
long time2 = 2; long time2 = 2;
long time3 = 3; long time3 = 3;
slowLog.addQuery("query1", time1); slowLog.addQuery("query1", time1);
slowLog.addQuery("query2", time2); slowLog.addQuery("query2", time2);
slowLog.addQuery("query3", time3); slowLog.addQuery("query3", time3);
Iterator<SlowLog.Entry> iterator = slowLog.iterator(); Iterator<SlowLog.Entry> iterator = slowLog.iterator();
long curQuery = 1; long curQuery = 1;
while (iterator.hasNext()) { while (iterator.hasNext()) {
SlowLog.Entry entry = iterator.next(); SlowLog.Entry entry = iterator.next();
assertEquals(entry.queryId, "query" + curQuery); assertEquals(entry.queryId, "query" + curQuery);
assertEquals(entry.time, curQuery); assertEquals(entry.time, curQuery);
curQuery += 1; curQuery += 1;
}
} }
}
public void testAddAllQueries() {
SlowLog slowLog = new SlowLog();
long time1 = 1;
long time2 = 2;
long time3 = 3;
List<SlowLog.Entry> queries = new ArrayList<>();
queries.add(new SlowLog.Entry("query1", time1));
queries.add(new SlowLog.Entry("query2", time2));
queries.add(new SlowLog.Entry("query3", time3));
slowLog.addAll(queries);
public void testAddAllQueries() { Iterator<SlowLog.Entry> iterator = slowLog.iterator();
SlowLog slowLog = new SlowLog(); long curQuery = 1;
long time1 = 1; while (iterator.hasNext()) {
long time2 = 2; SlowLog.Entry entry = iterator.next();
long time3 = 3; assertEquals(entry.queryId, "query" + curQuery);
List<SlowLog.Entry> queries = new ArrayList<>(); assertEquals(entry.time, curQuery);
queries.add(new SlowLog.Entry("query1", time1)); curQuery += 1;
queries.add(new SlowLog.Entry("query2", time2));
queries.add(new SlowLog.Entry("query3", time3));
slowLog.addAll(queries);
Iterator<SlowLog.Entry> iterator = slowLog.iterator();
long curQuery = 1;
while (iterator.hasNext()) {
SlowLog.Entry entry = iterator.next();
assertEquals(entry.queryId, "query" + curQuery);
assertEquals(entry.time, curQuery);
curQuery += 1;
}
} }
}
public void testToString() { public void testToString() {
SlowLog slowLog = new SlowLog(); SlowLog slowLog = new SlowLog();
long time1 = 1; long time1 = 1;
long time2 = 2; long time2 = 2;
long time3 = 3; long time3 = 3;
slowLog.addQuery("query1", time1); slowLog.addQuery("query1", time1);
slowLog.addQuery("query2", time2); slowLog.addQuery("query2", time2);
slowLog.addQuery("query3", time3); slowLog.addQuery("query3", time3);
assertEquals(slowLog.toString(), "query1 [1ns]\nquery2 [2ns]\nquery3 [3ns]\n"); assertEquals(slowLog.toString(), "query1 [1ns]\nquery2 [2ns]\nquery3 [3ns]\n");
} }
} }