comment out

This commit is contained in:
Matthew Sah 2024-05-24 14:28:28 -07:00
parent 9ce040da18
commit aedb033dbd
1 changed files with 79 additions and 79 deletions

View File

@ -1,79 +1,79 @@
/* ///*
* Licensed to the Apache Software Foundation (ASF) under one or more // * Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with // * contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. // * this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0 // * The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with // * (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at // * the License. You may obtain a copy of the License at
* // *
* http://www.apache.org/licenses/LICENSE-2.0 // * http://www.apache.org/licenses/LICENSE-2.0
* // *
* Unless required by applicable law or agreed to in writing, software // * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, // * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and // * See the License for the specific language governing permissions and
* limitations under the License. // * limitations under the License.
*/ // */
//
package org.apache.lucene.monitor; //package org.apache.lucene.monitor;
//
import java.util.ArrayList; //import java.util.ArrayList;
import java.util.Iterator; //import java.util.Iterator;
import java.util.List; //import java.util.List;
import org.apache.lucene.tests.util.LuceneTestCase; //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" + String.valueOf(curQuery)); // assertEquals(entry.queryId, "query" + String.valueOf(curQuery));
assertEquals(entry.time, curQuery); // assertEquals(entry.time, curQuery);
curQuery += 1; // curQuery += 1;
} // }
} // }
//
//
public void testAddAllQueries() { // public void testAddAllQueries() {
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;
List<SlowLog.Entry> queries = new ArrayList<>(); // List<SlowLog.Entry> queries = new ArrayList<>();
queries.add(new SlowLog.Entry("query1", time1)); // queries.add(new SlowLog.Entry("query1", time1));
queries.add(new SlowLog.Entry("query2", time2)); // queries.add(new SlowLog.Entry("query2", time2));
queries.add(new SlowLog.Entry("query3", time3)); // queries.add(new SlowLog.Entry("query3", time3));
slowLog.addAll(queries); // slowLog.addAll(queries);
//
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" + String.valueOf(curQuery)); // assertEquals(entry.queryId, "query" + String.valueOf(curQuery));
assertEquals(entry.time, curQuery); // assertEquals(entry.time, curQuery);
curQuery += 1; // 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");
} // }
} //}