kallestenflo
7 years ago
committed by
GitHub
10 changed files with 1453 additions and 17 deletions
@ -0,0 +1,67 @@ |
|||||||
|
package com.jayway.jsonpath.internal.function; |
||||||
|
|
||||||
|
import com.jayway.jsonpath.Configuration; |
||||||
|
import com.jayway.jsonpath.Configurations; |
||||||
|
import com.jayway.jsonpath.JsonPath; |
||||||
|
import org.junit.Test; |
||||||
|
|
||||||
|
import java.io.InputStream; |
||||||
|
|
||||||
|
import static org.junit.Assert.assertEquals; |
||||||
|
|
||||||
|
/** |
||||||
|
* TDD for Issue 191 |
||||||
|
* |
||||||
|
* Shows aggregation across fields rather than within a single entity. |
||||||
|
* |
||||||
|
*/ |
||||||
|
public class Issue191 { |
||||||
|
|
||||||
|
private Configuration conf = Configurations.GSON_CONFIGURATION; |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testResultSetNumericComputation() { |
||||||
|
InputStream stream = ClassLoader.getSystemResourceAsStream("issue_191.json"); |
||||||
|
Long value = JsonPath.parse(stream).read("$.sum($..timestamp)", Long.class); |
||||||
|
assertEquals("Expected the max function to consume the aggregation parameters and calculate the max over the result set", |
||||||
|
Long.valueOf(35679716813L), value); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testResultSetNumericComputationTail() { |
||||||
|
InputStream stream = ClassLoader.getSystemResourceAsStream("issue_191.json"); |
||||||
|
Long value = JsonPath.parse(stream).read("$..timestamp.sum()", Long.class); |
||||||
|
assertEquals("Expected the max function to consume the aggregation parameters and calculate the max over the result set", |
||||||
|
Long.valueOf(35679716813L), value); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testResultSetNumericComputationRecursiveReplacement() { |
||||||
|
InputStream stream = ClassLoader.getSystemResourceAsStream("issue_191.json"); |
||||||
|
Long value = JsonPath.parse(stream).read("$.max($..timestamp.avg(), $..timestamp.stddev())", Long.class); |
||||||
|
assertEquals("Expected the max function to consume the aggregation parameters and calculate the max over the result set", |
||||||
|
Long.valueOf(1427188672L), value); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testMultipleResultSetSums() { |
||||||
|
InputStream stream = ClassLoader.getSystemResourceAsStream("issue_191.json"); |
||||||
|
Long value = JsonPath.parse(stream).read("$.sum($..timestamp, $..cpus)", Long.class); |
||||||
|
assertEquals("Expected the max function to consume the aggregation parameters and calculate the max over the result set", |
||||||
|
Long.valueOf(35679716835L), value); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testConcatResultSet() { |
||||||
|
InputStream stream = ClassLoader.getSystemResourceAsStream("issue_191.json"); |
||||||
|
String concatResult = JsonPath.parse(stream).read("$.concat($..state)", String.class); |
||||||
|
assertEquals("Expected a string length to be a concat of all of the states", concatResult.length(), 806); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testConcatWithNumericValueAsString() { |
||||||
|
InputStream stream = ClassLoader.getSystemResourceAsStream("issue_191.json"); |
||||||
|
String concatResult = JsonPath.parse(stream).read("$.concat($..cpus)", String.class); |
||||||
|
assertEquals("Expected a string length to be a concat of all of the cpus", concatResult.length(), 489); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue