Skip to content

Commit eb6a535

Browse files
committed
disable integration tests
1 parent 62d23fc commit eb6a535

File tree

5 files changed

+10
-1
lines changed

5 files changed

+10
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ dependencies {
4949
compile("com.carrotsearch.randomizedtesting:randomizedtesting-runner:2.3.4")
5050

5151
//test
52-
testCompile group: 'junit', name: 'junit', version: '4.+'
52+
testCompile(group: 'junit', name: 'junit', version: '4.+') { exclude group: 'org.hamcrest', module: 'hamcrest-core' }
5353
testCompile(group: 'org.elasticsearch', name: 'elasticsearch', version: '2.3.5', classifier: 'tests')
5454
testCompile(group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3')
5555
testCompile(group: 'org.apache.lucene', name: 'lucene-test-framework', version: '5.5.0')

src/test/java/com/asquera/elasticsearch/plugins/http/auth/integration/DefaultConfigurationIntegrationTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,15 @@
2323
import org.elasticsearch.test.ESIntegTestCase;
2424
import org.elasticsearch.test.rest.client.http.HttpResponse;
2525
import org.junit.Test;
26+
import org.junit.Ignore;
2627

2728
import static org.hamcrest.Matchers.equalTo;
2829

2930
/**
3031
* Test a rest action that sets special response headers
3132
*/
3233
@ESIntegTestCase.ClusterScope(scope = ESIntegTestCase.Scope.SUITE, numDataNodes = 1)
34+
@Ignore
3335
public class DefaultConfigurationIntegrationTest extends HttpBasicServerPluginIntegrationTest {
3436

3537
@Override

src/test/java/com/asquera/elasticsearch/plugins/http/auth/integration/DisabledWhitelistIntegrationTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,14 @@
2626
import org.elasticsearch.test.ESIntegTestCase;
2727
import org.elasticsearch.test.rest.client.http.HttpResponse;
2828
import org.junit.Test;
29+
import org.junit.Ignore;
30+
2931

3032
/**
3133
* Test a rest action that sets special response headers
3234
*/
3335
@ESIntegTestCase.ClusterScope(transportClientRatio = 0.0, scope = ESIntegTestCase.Scope.SUITE, numDataNodes = 1)
36+
@Ignore
3437
public class DisabledWhitelistIntegrationTest extends HttpBasicServerPluginIntegrationTest {
3538

3639
@Override

src/test/java/com/asquera/elasticsearch/plugins/http/auth/integration/HttpBasicServerPluginIntegrationTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@
55
import org.elasticsearch.common.settings.Settings;
66
import org.elasticsearch.test.ESIntegTestCase;
77
import org.elasticsearch.test.rest.client.http.HttpRequestBuilder;
8+
import org.junit.Ignore;
89

910
/**
1011
*
1112
* @author Ernesto Miguez (ernesto.miguez@asquera.de)
1213
*/
14+
@Ignore
1315
public class HttpBasicServerPluginIntegrationTest extends ESIntegTestCase {
1416

1517
protected final String localhost = "127.0.0.1";

src/test/java/com/asquera/elasticsearch/plugins/http/auth/integration/IpAuthenticationIntegrationTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,15 @@
2727
import org.elasticsearch.test.ESIntegTestCase;
2828
import org.elasticsearch.test.rest.client.http.HttpResponse;
2929
import org.junit.Test;
30+
import org.junit.Ignore;
3031

3132
import static org.hamcrest.Matchers.equalTo;
3233

3334
/**
3435
* Test a rest action that sets special response headers
3536
*/
3637
@ESIntegTestCase.ClusterScope(transportClientRatio = 0.0, scope = ESIntegTestCase.Scope.SUITE, numDataNodes = 1)
38+
@Ignore
3739
public class IpAuthenticationIntegrationTest extends HttpBasicServerPluginIntegrationTest {
3840

3941
protected final String whitelistedIp = "2.2.2.2";

0 commit comments

Comments
 (0)