File tree Expand file tree Collapse file tree 5 files changed +0
-10
lines changed
ingest-attachment/src/test/java/org/elasticsearch/ingest/attachment
ingest-common/src/test/java/org/elasticsearch/ingest/common Expand file tree Collapse file tree 5 files changed +0
-10
lines changed Original file line number Diff line number Diff line change 15
15
import org .elasticsearch .ingest .Processor ;
16
16
import org .elasticsearch .ingest .RandomDocumentPicks ;
17
17
import org .elasticsearch .test .ESTestCase ;
18
- import org .elasticsearch .test .ESTestCase .WithoutEntitlements ;
19
18
import org .junit .Before ;
20
19
21
20
import java .io .InputStream ;
39
38
import static org .hamcrest .Matchers .notNullValue ;
40
39
import static org .hamcrest .Matchers .nullValue ;
41
40
42
- @ WithoutEntitlements // ES-12084
43
41
public class AttachmentProcessorTests extends ESTestCase {
44
42
45
43
private Processor processor ;
Original file line number Diff line number Diff line change 14
14
import org .apache .tika .metadata .Metadata ;
15
15
import org .elasticsearch .core .PathUtils ;
16
16
import org .elasticsearch .test .ESTestCase ;
17
- import org .elasticsearch .test .ESTestCase .WithoutEntitlements ;
18
17
19
18
import java .nio .file .DirectoryStream ;
20
19
import java .nio .file .Files ;
26
25
* comes back and no exception.
27
26
*/
28
27
@ SuppressFileSystems ("ExtrasFS" ) // don't try to parse extraN
29
- @ WithoutEntitlements // ES-12084
30
28
public class TikaDocTests extends ESTestCase {
31
29
32
30
/** some test files from tika test suite, zipped up */
Original file line number Diff line number Diff line change 9
9
package org .elasticsearch .ingest .attachment ;
10
10
11
11
import org .elasticsearch .test .ESTestCase ;
12
- import org .elasticsearch .test .ESTestCase .WithoutEntitlements ;
13
12
14
- @ WithoutEntitlements // ES-12084
15
13
public class TikaImplTests extends ESTestCase {
16
14
17
15
public void testTikaLoads () throws Exception {
Original file line number Diff line number Diff line change 11
11
12
12
import org .elasticsearch .ElasticsearchParseException ;
13
13
import org .elasticsearch .test .ESTestCase ;
14
- import org .elasticsearch .test .ESTestCase .WithoutEntitlements ;
15
14
import org .junit .Before ;
16
15
17
16
import java .util .HashMap ;
18
17
import java .util .Map ;
19
18
20
19
import static org .hamcrest .Matchers .equalTo ;
21
20
22
- @ WithoutEntitlements // ES-12084
23
21
public class RegisteredDomainProcessorFactoryTests extends ESTestCase {
24
22
25
23
private RegisteredDomainProcessor .Factory factory ;
Original file line number Diff line number Diff line change 13
13
import org .elasticsearch .ingest .TestIngestDocument ;
14
14
import org .elasticsearch .ingest .common .RegisteredDomainProcessor .DomainInfo ;
15
15
import org .elasticsearch .test .ESTestCase ;
16
- import org .elasticsearch .test .ESTestCase .WithoutEntitlements ;
17
16
18
17
import java .util .Collections ;
19
18
import java .util .Map ;
31
30
* Effective TLDs (eTLDs) are not the same as DNS TLDs. Uses for eTLDs are listed here:
32
31
* https://publicsuffix.org/learn/
33
32
*/
34
- @ WithoutEntitlements // ES-12084
35
33
public class RegisteredDomainProcessorTests extends ESTestCase {
36
34
37
35
public void testGetRegisteredDomain () {
You can’t perform that action at this time.
0 commit comments