summaryrefslogtreecommitdiff
path: root/core/src/test/java/org/elasticsearch/search/profile
diff options
context:
space:
mode:
authorRyan Ernst <ryan@iernst.net>2015-12-18 13:18:08 -0800
committerRyan Ernst <ryan@iernst.net>2015-12-18 13:18:08 -0800
commitbeec7ca9db656d5e7355d9ae3ddfeabc9973240b (patch)
tree9c67dd72be6ac03fd0c837ce497c5e3d5792af16 /core/src/test/java/org/elasticsearch/search/profile
parenta639b3d3e462c1a67dcc8390ce8821ffe6fc6547 (diff)
parentd0a10b337ed414eaf8ef3c60452d1a2f92be6ae8 (diff)
Merge branch 'master' into wildcard_imports
Diffstat (limited to 'core/src/test/java/org/elasticsearch/search/profile')
-rw-r--r--core/src/test/java/org/elasticsearch/search/profile/QueryProfilerIT.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/core/src/test/java/org/elasticsearch/search/profile/QueryProfilerIT.java b/core/src/test/java/org/elasticsearch/search/profile/QueryProfilerIT.java
index 271a9b5ae8..f09b18bdb8 100644
--- a/core/src/test/java/org/elasticsearch/search/profile/QueryProfilerIT.java
+++ b/core/src/test/java/org/elasticsearch/search/profile/QueryProfilerIT.java
@@ -81,6 +81,7 @@ public class QueryProfilerIT extends ESIntegTestCase {
.execute().actionGet();
assertNotNull("Profile response element should not be null", resp.getProfileResults());
+ assertThat("Profile response should not be an empty array", resp.getProfileResults().size(), not(0));
for (Map.Entry<String, List<ProfileShardResult>> shard : resp.getProfileResults().entrySet()) {
for (ProfileShardResult searchProfiles : shard.getValue()) {
for (ProfileResult result : searchProfiles.getQueryResults()) {
@@ -203,6 +204,7 @@ public class QueryProfilerIT extends ESIntegTestCase {
Map<String, List<ProfileShardResult>> p = resp.getProfileResults();
assertNotNull(p);
+ assertThat("Profile response should not be an empty array", resp.getProfileResults().size(), not(0));
for (Map.Entry<String, List<ProfileShardResult>> shardResult : resp.getProfileResults().entrySet()) {
for (ProfileShardResult searchProfiles : shardResult.getValue()) {
@@ -248,6 +250,7 @@ public class QueryProfilerIT extends ESIntegTestCase {
Map<String, List<ProfileShardResult>> p = resp.getProfileResults();
assertNotNull(p);
+ assertThat("Profile response should not be an empty array", resp.getProfileResults().size(), not(0));
for (Map.Entry<String, List<ProfileShardResult>> shardResult : resp.getProfileResults().entrySet()) {
for (ProfileShardResult searchProfiles : shardResult.getValue()) {
@@ -315,6 +318,7 @@ public class QueryProfilerIT extends ESIntegTestCase {
.execute().actionGet();
assertNotNull("Profile response element should not be null", resp.getProfileResults());
+ assertThat("Profile response should not be an empty array", resp.getProfileResults().size(), not(0));
for (Map.Entry<String, List<ProfileShardResult>> shardResult : resp.getProfileResults().entrySet()) {
for (ProfileShardResult searchProfiles : shardResult.getValue()) {
@@ -366,6 +370,7 @@ public class QueryProfilerIT extends ESIntegTestCase {
.execute().actionGet();
assertNotNull("Profile response element should not be null", resp.getProfileResults());
+ assertThat("Profile response should not be an empty array", resp.getProfileResults().size(), not(0));
for (Map.Entry<String, List<ProfileShardResult>> shardResult : resp.getProfileResults().entrySet()) {
for (ProfileShardResult searchProfiles : shardResult.getValue()) {
@@ -412,6 +417,7 @@ public class QueryProfilerIT extends ESIntegTestCase {
.execute().actionGet();
assertNotNull("Profile response element should not be null", resp.getProfileResults());
+ assertThat("Profile response should not be an empty array", resp.getProfileResults().size(), not(0));
for (Map.Entry<String, List<ProfileShardResult>> shardResult : resp.getProfileResults().entrySet()) {
for (ProfileShardResult searchProfiles : shardResult.getValue()) {
@@ -458,6 +464,7 @@ public class QueryProfilerIT extends ESIntegTestCase {
.execute().actionGet();
assertNotNull("Profile response element should not be null", resp.getProfileResults());
+ assertThat("Profile response should not be an empty array", resp.getProfileResults().size(), not(0));
for (Map.Entry<String, List<ProfileShardResult>> shardResult : resp.getProfileResults().entrySet()) {
for (ProfileShardResult searchProfiles : shardResult.getValue()) {
@@ -503,6 +510,7 @@ public class QueryProfilerIT extends ESIntegTestCase {
.execute().actionGet();
assertNotNull("Profile response element should not be null", resp.getProfileResults());
+ assertThat("Profile response should not be an empty array", resp.getProfileResults().size(), not(0));
for (Map.Entry<String, List<ProfileShardResult>> shardResult : resp.getProfileResults().entrySet()) {
for (ProfileShardResult searchProfiles : shardResult.getValue()) {
@@ -557,6 +565,7 @@ public class QueryProfilerIT extends ESIntegTestCase {
}
assertNotNull("Profile response element should not be null", resp.getProfileResults());
+ assertThat("Profile response should not be an empty array", resp.getProfileResults().size(), not(0));
for (Map.Entry<String, List<ProfileShardResult>> shardResult : resp.getProfileResults().entrySet()) {
for (ProfileShardResult searchProfiles : shardResult.getValue()) {