Skip to content

Commit

Permalink
re-enable SmokeTestWatcherWithSecurityIT (#38814)
Browse files Browse the repository at this point in the history
relates to #30777, #35361, #29877.
  • Loading branch information
talevy committed Feb 14, 2019
1 parent b76a083 commit 70b6134
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
package org.elasticsearch.smoketest;

import org.apache.http.util.EntityUtils;
import org.apache.lucene.util.LuceneTestCase;
import org.elasticsearch.client.Request;
import org.elasticsearch.client.Response;
import org.elasticsearch.common.Strings;
Expand All @@ -32,7 +31,6 @@
import static org.hamcrest.Matchers.hasEntry;
import static org.hamcrest.Matchers.is;

@LuceneTestCase.AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/35361")
public class SmokeTestWatcherWithSecurityIT extends ESRestTestCase {

private static final String TEST_ADMIN_USERNAME = "test_admin";
Expand Down Expand Up @@ -198,7 +196,6 @@ public void testSearchTransformHasPermissions() throws Exception {
.endObject().endObject().endObject();
builder.startObject("actions").startObject("index").startObject("index")
.field("index", "my_test_index")
.field("doc_type", "doc")
.field("doc_id", "my-id")
.endObject().endObject().endObject();
builder.endObject();
Expand Down Expand Up @@ -229,7 +226,6 @@ public void testSearchTransformInsufficientPermissions() throws Exception {
.endObject().endObject().endObject();
builder.startObject("actions").startObject("index").startObject("index")
.field("index", "my_test_index")
.field("doc_type", "doc")
.field("doc_id", "some-id")
.endObject().endObject().endObject();
builder.endObject();
Expand All @@ -250,7 +246,6 @@ public void testIndexActionHasPermissions() throws Exception {
builder.startObject("input").startObject("simple").field("spam", "eggs").endObject().endObject();
builder.startObject("actions").startObject("index").startObject("index")
.field("index", "my_test_index")
.field("doc_type", "doc")
.field("doc_id", "my-id")
.endObject().endObject().endObject();
builder.endObject();
Expand All @@ -274,7 +269,6 @@ public void testIndexActionInsufficientPrivileges() throws Exception {
builder.startObject("input").startObject("simple").field("spam", "eggs").endObject().endObject();
builder.startObject("actions").startObject("index").startObject("index")
.field("index", "index_not_allowed_to_read")
.field("doc_type", "doc")
.field("doc_id", "my-id")
.endObject().endObject().endObject();
builder.endObject();
Expand Down

0 comments on commit 70b6134

Please sign in to comment.