mirror of https://github.com/apache/lucene.git
SEARCH-8593: Add tests from the HavingStream
This commit is contained in:
parent
6c0cafedac
commit
1c2eabd4e9
|
@ -31,9 +31,17 @@ import org.apache.solr.client.solrj.io.Tuple;
|
||||||
import org.apache.solr.client.solrj.io.comp.StreamComparator;
|
import org.apache.solr.client.solrj.io.comp.StreamComparator;
|
||||||
import org.apache.solr.client.solrj.io.graph.GatherNodesStream;
|
import org.apache.solr.client.solrj.io.graph.GatherNodesStream;
|
||||||
import org.apache.solr.client.solrj.io.graph.ShortestPathStream;
|
import org.apache.solr.client.solrj.io.graph.ShortestPathStream;
|
||||||
|
import org.apache.solr.client.solrj.io.ops.AndOperation;
|
||||||
import org.apache.solr.client.solrj.io.ops.ConcatOperation;
|
import org.apache.solr.client.solrj.io.ops.ConcatOperation;
|
||||||
import org.apache.solr.client.solrj.io.ops.DistinctOperation;
|
import org.apache.solr.client.solrj.io.ops.DistinctOperation;
|
||||||
|
import org.apache.solr.client.solrj.io.ops.EqualsOperation;
|
||||||
|
import org.apache.solr.client.solrj.io.ops.GreaterThanEqualToOperation;
|
||||||
|
import org.apache.solr.client.solrj.io.ops.GreaterThanOperation;
|
||||||
import org.apache.solr.client.solrj.io.ops.GroupOperation;
|
import org.apache.solr.client.solrj.io.ops.GroupOperation;
|
||||||
|
import org.apache.solr.client.solrj.io.ops.LessThanEqualToOperation;
|
||||||
|
import org.apache.solr.client.solrj.io.ops.LessThanOperation;
|
||||||
|
import org.apache.solr.client.solrj.io.ops.NotOperation;
|
||||||
|
import org.apache.solr.client.solrj.io.ops.OrOperation;
|
||||||
import org.apache.solr.client.solrj.io.ops.ReplaceOperation;
|
import org.apache.solr.client.solrj.io.ops.ReplaceOperation;
|
||||||
import org.apache.solr.client.solrj.io.stream.*;
|
import org.apache.solr.client.solrj.io.stream.*;
|
||||||
import org.apache.solr.client.solrj.io.stream.expr.Explanation;
|
import org.apache.solr.client.solrj.io.stream.expr.Explanation;
|
||||||
|
@ -153,7 +161,16 @@ public class StreamHandler extends RequestHandlerBase implements SolrCoreAware,
|
||||||
|
|
||||||
// stream reduction operations
|
// stream reduction operations
|
||||||
.withFunctionName("group", GroupOperation.class)
|
.withFunctionName("group", GroupOperation.class)
|
||||||
.withFunctionName("distinct", DistinctOperation.class);
|
.withFunctionName("distinct", DistinctOperation.class)
|
||||||
|
.withFunctionName("having", HavingStream.class)
|
||||||
|
.withFunctionName("and", AndOperation.class)
|
||||||
|
.withFunctionName("or", OrOperation.class)
|
||||||
|
.withFunctionName("not", NotOperation.class)
|
||||||
|
.withFunctionName("gt", GreaterThanOperation.class)
|
||||||
|
.withFunctionName("lt", LessThanOperation.class)
|
||||||
|
.withFunctionName("eq", EqualsOperation.class)
|
||||||
|
.withFunctionName("lteq", LessThanEqualToOperation.class)
|
||||||
|
.withFunctionName("gteq", GreaterThanEqualToOperation.class);
|
||||||
|
|
||||||
// This pulls all the overrides and additions from the config
|
// This pulls all the overrides and additions from the config
|
||||||
List<PluginInfo> pluginInfos = core.getSolrConfig().getPluginInfos(Expressible.class.getName());
|
List<PluginInfo> pluginInfos = core.getSolrConfig().getPluginInfos(Expressible.class.getName());
|
||||||
|
|
|
@ -49,7 +49,7 @@ public class EqualsOperation extends LeafOperation {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return d == val;
|
return d.doubleValue() == val;
|
||||||
}
|
}
|
||||||
|
|
||||||
public StreamExpression toExpression(StreamFactory factory) throws IOException {
|
public StreamExpression toExpression(StreamFactory factory) throws IOException {
|
||||||
|
|
|
@ -49,7 +49,7 @@ public class GreaterThanEqualToOperation extends LeafOperation {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return d >= val;
|
return d.doubleValue() >= val;
|
||||||
}
|
}
|
||||||
|
|
||||||
public StreamExpression toExpression(StreamFactory factory) throws IOException {
|
public StreamExpression toExpression(StreamFactory factory) throws IOException {
|
||||||
|
|
|
@ -49,7 +49,7 @@ public class GreaterThanOperation extends LeafOperation {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return d > val;
|
return d.doubleValue() > val;
|
||||||
}
|
}
|
||||||
|
|
||||||
public StreamExpression toExpression(StreamFactory factory) throws IOException {
|
public StreamExpression toExpression(StreamFactory factory) throws IOException {
|
||||||
|
|
|
@ -45,7 +45,7 @@ public abstract class LeafOperation implements BooleanOperation {
|
||||||
|
|
||||||
public LeafOperation(StreamExpression expression, StreamFactory factory) throws IOException {
|
public LeafOperation(StreamExpression expression, StreamFactory factory) throws IOException {
|
||||||
this.field = factory.getValueOperand(expression, 0);
|
this.field = factory.getValueOperand(expression, 0);
|
||||||
this.val = Double.parseDouble(factory.getValueOperand(expression, 0));
|
this.val = Double.parseDouble(factory.getValueOperand(expression, 1));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -49,7 +49,7 @@ public class LessThanEqualToOperation extends LeafOperation {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return d <= val;
|
return d.doubleValue() <= val;
|
||||||
}
|
}
|
||||||
|
|
||||||
public StreamExpression toExpression(StreamFactory factory) throws IOException {
|
public StreamExpression toExpression(StreamFactory factory) throws IOException {
|
||||||
|
|
|
@ -49,7 +49,7 @@ public class LessThanOperation extends LeafOperation {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return d < val;
|
return d.doubleValue() < val;
|
||||||
}
|
}
|
||||||
|
|
||||||
public StreamExpression toExpression(StreamFactory factory) throws IOException {
|
public StreamExpression toExpression(StreamFactory factory) throws IOException {
|
||||||
|
|
|
@ -49,7 +49,7 @@ public class NotOperation implements BooleanOperation {
|
||||||
if(operationExpressions != null && operationExpressions.size() == 1) {
|
if(operationExpressions != null && operationExpressions.size() == 1) {
|
||||||
StreamExpression op = operationExpressions.get(0);
|
StreamExpression op = operationExpressions.get(0);
|
||||||
StreamOperation streamOp = factory.constructOperation(op);
|
StreamOperation streamOp = factory.constructOperation(op);
|
||||||
if(op instanceof BooleanOperation) {
|
if(streamOp instanceof BooleanOperation) {
|
||||||
operand = (BooleanOperation) streamOp;
|
operand = (BooleanOperation) streamOp;
|
||||||
} else {
|
} else {
|
||||||
throw new IOException("The NotOperation requires a BooleanOperation.");
|
throw new IOException("The NotOperation requires a BooleanOperation.");
|
||||||
|
|
|
@ -74,7 +74,7 @@ public class HavingStream extends TupleStream implements Expressible {
|
||||||
List<StreamExpression> operationExpressions = factory.getExpressionOperandsRepresentingTypes(expression, BooleanOperation.class);
|
List<StreamExpression> operationExpressions = factory.getExpressionOperandsRepresentingTypes(expression, BooleanOperation.class);
|
||||||
|
|
||||||
// validate expression contains only what we want.
|
// validate expression contains only what we want.
|
||||||
if(expression.getParameters().size() != streamExpressions.size() + 2){
|
if(expression.getParameters().size() != streamExpressions.size() + 1){
|
||||||
throw new IOException(String.format(Locale.ROOT,"Invalid expression %s - unknown operands found", expression));
|
throw new IOException(String.format(Locale.ROOT,"Invalid expression %s - unknown operands found", expression));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -33,8 +33,16 @@ import org.apache.solr.client.solrj.io.SolrClientCache;
|
||||||
import org.apache.solr.client.solrj.io.Tuple;
|
import org.apache.solr.client.solrj.io.Tuple;
|
||||||
import org.apache.solr.client.solrj.io.comp.ComparatorOrder;
|
import org.apache.solr.client.solrj.io.comp.ComparatorOrder;
|
||||||
import org.apache.solr.client.solrj.io.comp.FieldComparator;
|
import org.apache.solr.client.solrj.io.comp.FieldComparator;
|
||||||
|
import org.apache.solr.client.solrj.io.ops.AndOperation;
|
||||||
import org.apache.solr.client.solrj.io.ops.ConcatOperation;
|
import org.apache.solr.client.solrj.io.ops.ConcatOperation;
|
||||||
|
import org.apache.solr.client.solrj.io.ops.EqualsOperation;
|
||||||
|
import org.apache.solr.client.solrj.io.ops.GreaterThanEqualToOperation;
|
||||||
|
import org.apache.solr.client.solrj.io.ops.GreaterThanOperation;
|
||||||
import org.apache.solr.client.solrj.io.ops.GroupOperation;
|
import org.apache.solr.client.solrj.io.ops.GroupOperation;
|
||||||
|
import org.apache.solr.client.solrj.io.ops.LessThanEqualToOperation;
|
||||||
|
import org.apache.solr.client.solrj.io.ops.LessThanOperation;
|
||||||
|
import org.apache.solr.client.solrj.io.ops.NotOperation;
|
||||||
|
import org.apache.solr.client.solrj.io.ops.OrOperation;
|
||||||
import org.apache.solr.client.solrj.io.ops.ReplaceOperation;
|
import org.apache.solr.client.solrj.io.ops.ReplaceOperation;
|
||||||
import org.apache.solr.client.solrj.io.stream.expr.StreamExpression;
|
import org.apache.solr.client.solrj.io.stream.expr.StreamExpression;
|
||||||
import org.apache.solr.client.solrj.io.stream.expr.StreamExpressionParser;
|
import org.apache.solr.client.solrj.io.stream.expr.StreamExpressionParser;
|
||||||
|
@ -727,6 +735,199 @@ public class StreamExpressionTest extends SolrCloudTestCase {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testHavingStream() throws Exception {
|
||||||
|
|
||||||
|
SolrClientCache solrClientCache = new SolrClientCache();
|
||||||
|
|
||||||
|
new UpdateRequest()
|
||||||
|
.add(id, "0", "a_s", "hello0", "a_i", "0", "a_f", "1", "subject", "blah blah blah 0")
|
||||||
|
.add(id, "2", "a_s", "hello0", "a_i", "2", "a_f", "2", "subject", "blah blah blah 2")
|
||||||
|
.add(id, "3", "a_s", "hello3", "a_i", "3", "a_f", "3", "subject", "blah blah blah 3")
|
||||||
|
.add(id, "4", "a_s", "hello4", "a_i", "4", "a_f", "4", "subject", "blah blah blah 4")
|
||||||
|
.add(id, "1", "a_s", "hello0", "a_i", "1", "a_f", "5", "subject", "blah blah blah 1")
|
||||||
|
.add(id, "5", "a_s", "hello3", "a_i", "5", "a_f", "6", "subject", "blah blah blah 5")
|
||||||
|
.add(id, "6", "a_s", "hello4", "a_i", "6", "a_f", "7", "subject", "blah blah blah 6")
|
||||||
|
.add(id, "7", "a_s", "hello3", "a_i", "7", "a_f", "8", "subject", "blah blah blah 7")
|
||||||
|
.add(id, "8", "a_s", "hello3", "a_i", "8", "a_f", "9", "subject", "blah blah blah 8")
|
||||||
|
.add(id, "9", "a_s", "hello0", "a_i", "9", "a_f", "10", "subject", "blah blah blah 9")
|
||||||
|
.commit(cluster.getSolrClient(), COLLECTIONORALIAS);
|
||||||
|
|
||||||
|
TupleStream stream;
|
||||||
|
List<Tuple> tuples;
|
||||||
|
|
||||||
|
StreamFactory factory = new StreamFactory()
|
||||||
|
.withCollectionZkHost(COLLECTIONORALIAS, cluster.getZkServer().getZkAddress())
|
||||||
|
.withFunctionName("search", CloudSolrStream.class)
|
||||||
|
.withFunctionName("having", HavingStream.class)
|
||||||
|
.withFunctionName("and", AndOperation.class)
|
||||||
|
.withFunctionName("or", OrOperation.class)
|
||||||
|
.withFunctionName("not", NotOperation.class)
|
||||||
|
.withFunctionName("gt", GreaterThanOperation.class)
|
||||||
|
.withFunctionName("lt", LessThanOperation.class)
|
||||||
|
.withFunctionName("eq", EqualsOperation.class)
|
||||||
|
.withFunctionName("lteq", LessThanEqualToOperation.class)
|
||||||
|
.withFunctionName("gteq", GreaterThanEqualToOperation.class);
|
||||||
|
|
||||||
|
stream = factory.constructStream("having(search(" + COLLECTIONORALIAS + ", q=*:*, fl=\"id,a_s,a_i,a_f\", sort=\"a_f asc\"), eq(a_i, 9))");
|
||||||
|
StreamContext context = new StreamContext();
|
||||||
|
context.setSolrClientCache(solrClientCache);
|
||||||
|
stream.setStreamContext(context);
|
||||||
|
tuples = getTuples(stream);
|
||||||
|
|
||||||
|
assert(tuples.size() == 1);
|
||||||
|
Tuple t = tuples.get(0);
|
||||||
|
assertTrue(t.getString("id").equals("9"));
|
||||||
|
|
||||||
|
stream = factory.constructStream("having(search(" + COLLECTIONORALIAS + ", q=*:*, fl=\"id,a_s,a_i,a_f\", sort=\"a_f asc\"), and(eq(a_i, 9),lt(a_i, 10)))");
|
||||||
|
context = new StreamContext();
|
||||||
|
context.setSolrClientCache(solrClientCache);
|
||||||
|
stream.setStreamContext(context);
|
||||||
|
tuples = getTuples(stream);
|
||||||
|
|
||||||
|
assert(tuples.size() == 1);
|
||||||
|
t = tuples.get(0);
|
||||||
|
assertTrue(t.getString("id").equals("9"));
|
||||||
|
|
||||||
|
stream = factory.constructStream("having(search(" + COLLECTIONORALIAS + ", q=*:*, fl=\"id,a_s,a_i,a_f\", sort=\"a_f asc\"), or(eq(a_i, 9),eq(a_i, 8)))");
|
||||||
|
context = new StreamContext();
|
||||||
|
context.setSolrClientCache(solrClientCache);
|
||||||
|
stream.setStreamContext(context);
|
||||||
|
tuples = getTuples(stream);
|
||||||
|
|
||||||
|
assert(tuples.size() == 2);
|
||||||
|
t = tuples.get(0);
|
||||||
|
assertTrue(t.getString("id").equals("8"));
|
||||||
|
|
||||||
|
t = tuples.get(1);
|
||||||
|
assertTrue(t.getString("id").equals("9"));
|
||||||
|
|
||||||
|
|
||||||
|
stream = factory.constructStream("having(search(" + COLLECTIONORALIAS + ", q=*:*, fl=\"id,a_s,a_i,a_f\", sort=\"a_f asc\"), and(eq(a_i, 9),not(eq(a_i, 9))))");
|
||||||
|
context = new StreamContext();
|
||||||
|
context.setSolrClientCache(solrClientCache);
|
||||||
|
stream.setStreamContext(context);
|
||||||
|
tuples = getTuples(stream);
|
||||||
|
|
||||||
|
assert(tuples.size() == 0);
|
||||||
|
|
||||||
|
|
||||||
|
stream = factory.constructStream("having(search(" + COLLECTIONORALIAS + ", q=*:*, fl=\"id,a_s,a_i,a_f\", sort=\"a_f asc\"), and(lteq(a_i, 9), gteq(a_i, 8)))");
|
||||||
|
context = new StreamContext();
|
||||||
|
context.setSolrClientCache(solrClientCache);
|
||||||
|
stream.setStreamContext(context);
|
||||||
|
tuples = getTuples(stream);
|
||||||
|
|
||||||
|
System.out.println("####Tuples:"+tuples.size());
|
||||||
|
assert(tuples.size() == 2);
|
||||||
|
|
||||||
|
t = tuples.get(0);
|
||||||
|
assertTrue(t.getString("id").equals("8"));
|
||||||
|
|
||||||
|
t = tuples.get(1);
|
||||||
|
assertTrue(t.getString("id").equals("9"));
|
||||||
|
|
||||||
|
solrClientCache.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testParallelHavingStream() throws Exception {
|
||||||
|
|
||||||
|
SolrClientCache solrClientCache = new SolrClientCache();
|
||||||
|
|
||||||
|
new UpdateRequest()
|
||||||
|
.add(id, "0", "a_s", "hello0", "a_i", "0", "a_f", "1", "subject", "blah blah blah 0")
|
||||||
|
.add(id, "2", "a_s", "hello0", "a_i", "2", "a_f", "2", "subject", "blah blah blah 2")
|
||||||
|
.add(id, "3", "a_s", "hello3", "a_i", "3", "a_f", "3", "subject", "blah blah blah 3")
|
||||||
|
.add(id, "4", "a_s", "hello4", "a_i", "4", "a_f", "4", "subject", "blah blah blah 4")
|
||||||
|
.add(id, "1", "a_s", "hello0", "a_i", "1", "a_f", "5", "subject", "blah blah blah 1")
|
||||||
|
.add(id, "5", "a_s", "hello3", "a_i", "5", "a_f", "6", "subject", "blah blah blah 5")
|
||||||
|
.add(id, "6", "a_s", "hello4", "a_i", "6", "a_f", "7", "subject", "blah blah blah 6")
|
||||||
|
.add(id, "7", "a_s", "hello3", "a_i", "7", "a_f", "8", "subject", "blah blah blah 7")
|
||||||
|
.add(id, "8", "a_s", "hello3", "a_i", "8", "a_f", "9", "subject", "blah blah blah 8")
|
||||||
|
.add(id, "9", "a_s", "hello0", "a_i", "9", "a_f", "10", "subject", "blah blah blah 9")
|
||||||
|
.commit(cluster.getSolrClient(), COLLECTIONORALIAS);
|
||||||
|
|
||||||
|
TupleStream stream;
|
||||||
|
List<Tuple> tuples;
|
||||||
|
|
||||||
|
StreamFactory factory = new StreamFactory()
|
||||||
|
.withCollectionZkHost(COLLECTIONORALIAS, cluster.getZkServer().getZkAddress())
|
||||||
|
.withFunctionName("search", CloudSolrStream.class)
|
||||||
|
.withFunctionName("having", HavingStream.class)
|
||||||
|
.withFunctionName("and", AndOperation.class)
|
||||||
|
.withFunctionName("or", OrOperation.class)
|
||||||
|
.withFunctionName("not", NotOperation.class)
|
||||||
|
.withFunctionName("gt", GreaterThanOperation.class)
|
||||||
|
.withFunctionName("lt", LessThanOperation.class)
|
||||||
|
.withFunctionName("eq", EqualsOperation.class)
|
||||||
|
.withFunctionName("lteq", LessThanEqualToOperation.class)
|
||||||
|
.withFunctionName("gteq", GreaterThanEqualToOperation.class)
|
||||||
|
.withFunctionName("parallel", ParallelStream.class);
|
||||||
|
|
||||||
|
stream = factory.constructStream("parallel(" + COLLECTIONORALIAS + ", workers=2, sort=\"a_f asc\", having(search(" + COLLECTIONORALIAS + ", q=*:*, fl=\"id,a_s,a_i,a_f\", sort=\"a_f asc\", partitionKeys=id), eq(a_i, 9)))");
|
||||||
|
StreamContext context = new StreamContext();
|
||||||
|
context.setSolrClientCache(solrClientCache);
|
||||||
|
stream.setStreamContext(context);
|
||||||
|
tuples = getTuples(stream);
|
||||||
|
|
||||||
|
assert(tuples.size() == 1);
|
||||||
|
Tuple t = tuples.get(0);
|
||||||
|
assertTrue(t.getString("id").equals("9"));
|
||||||
|
|
||||||
|
stream = factory.constructStream("parallel(" + COLLECTIONORALIAS + ", workers=2, sort=\"a_f asc\", having(search(" + COLLECTIONORALIAS + ", q=*:*, fl=\"id,a_s,a_i,a_f\", sort=\"a_f asc\", partitionKeys=id), and(eq(a_i, 9),lt(a_i, 10))))");
|
||||||
|
context = new StreamContext();
|
||||||
|
context.setSolrClientCache(solrClientCache);
|
||||||
|
stream.setStreamContext(context);
|
||||||
|
tuples = getTuples(stream);
|
||||||
|
|
||||||
|
assert(tuples.size() == 1);
|
||||||
|
t = tuples.get(0);
|
||||||
|
assertTrue(t.getString("id").equals("9"));
|
||||||
|
|
||||||
|
stream = factory.constructStream("parallel(" + COLLECTIONORALIAS + ", workers=2, sort=\"a_f asc\",having(search(" + COLLECTIONORALIAS + ", q=*:*, fl=\"id,a_s,a_i,a_f\", sort=\"a_f asc\", partitionKeys=id), or(eq(a_i, 9),eq(a_i, 8))))");
|
||||||
|
context = new StreamContext();
|
||||||
|
context.setSolrClientCache(solrClientCache);
|
||||||
|
stream.setStreamContext(context);
|
||||||
|
tuples = getTuples(stream);
|
||||||
|
|
||||||
|
assert(tuples.size() == 2);
|
||||||
|
t = tuples.get(0);
|
||||||
|
assertTrue(t.getString("id").equals("8"));
|
||||||
|
|
||||||
|
t = tuples.get(1);
|
||||||
|
assertTrue(t.getString("id").equals("9"));
|
||||||
|
|
||||||
|
|
||||||
|
stream = factory.constructStream("parallel(" + COLLECTIONORALIAS + ", workers=2, sort=\"a_f asc\", having(search(" + COLLECTIONORALIAS + ", q=*:*, fl=\"id,a_s,a_i,a_f\", sort=\"a_f asc\", partitionKeys=id), and(eq(a_i, 9),not(eq(a_i, 9)))))");
|
||||||
|
context = new StreamContext();
|
||||||
|
context.setSolrClientCache(solrClientCache);
|
||||||
|
stream.setStreamContext(context);
|
||||||
|
tuples = getTuples(stream);
|
||||||
|
|
||||||
|
assert(tuples.size() == 0);
|
||||||
|
|
||||||
|
|
||||||
|
stream = factory.constructStream("parallel(" + COLLECTIONORALIAS + ", workers=2, sort=\"a_f asc\",having(search(" + COLLECTIONORALIAS + ", q=*:*, fl=\"id,a_s,a_i,a_f\", sort=\"a_f asc\", partitionKeys=id), and(lteq(a_i, 9), gteq(a_i, 8))))");
|
||||||
|
context = new StreamContext();
|
||||||
|
context.setSolrClientCache(solrClientCache);
|
||||||
|
stream.setStreamContext(context);
|
||||||
|
tuples = getTuples(stream);
|
||||||
|
|
||||||
|
System.out.println("####Tuples:"+tuples.size());
|
||||||
|
assert(tuples.size() == 2);
|
||||||
|
|
||||||
|
t = tuples.get(0);
|
||||||
|
assertTrue(t.getString("id").equals("8"));
|
||||||
|
|
||||||
|
t = tuples.get(1);
|
||||||
|
assertTrue(t.getString("id").equals("9"));
|
||||||
|
|
||||||
|
solrClientCache.close();
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testFetchStream() throws Exception {
|
public void testFetchStream() throws Exception {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue