Package org.elasticsearch.test
Class ESTestCase
java.lang.Object
org.junit.Assert
org.apache.lucene.tests.util.LuceneTestCase
org.elasticsearch.test.ESTestCase
- Direct Known Subclasses:
AbstractAsyncBulkByScrollActionTestCase
,AbstractBlobContainerRetriesTestCase
,AbstractBootstrapCheckTestCase
,AbstractBuilderTestCase
,AbstractBytesReferenceTestCase
,AbstractCoordinatorTestCase
,AbstractFilteringTestCase
,AbstractHttpServerTransportTestCase
,AbstractIndicesClusterStateServiceTestCase
,AbstractMultiClustersTestCase
,AbstractScriptFieldQueryTestCase
,AbstractScriptFieldQueryTests
,AbstractSignificanceHeuristicTestCase
,AbstractSimpleTransportTestCase
,AbstractWireTestCase
,AbstractXContentTestCase
,AggregatorTestCase
,AnalysisFactoryTestCase
,BasePipelineAggregationTestCase
,CommandTestCase
,EngineTestCase
,ESAllocationTestCase
,ESIndexInputTestCase
,ESIntegTestCase
,ESRestTestCase
,ESSingleNodeTestCase
,ESTokenStreamTestCase
,FieldScriptTestCase
,FieldTypeTestCase
,IndexShardTestCase
,ModuleTestCase
,RestActionTestCase
,RestClientBuilderTestCase
@Listeners({ReproduceInfoPrinter.class,LoggingListener.class})
@SuppressSysoutChecks(bugUrl="we log a lot on purpose")
@SuppressCodecs({"SimpleText","Memory","CheapBastard","Direct","Compressing","FST50","FSTOrd50","TestBloomFilteredLucenePostings","MockRandom","BlockTreeOrds","LuceneFixedGap","LuceneVarGapFixedInterval","LuceneVarGapDocFreqInterval","Lucene50"})
@SuppressReproduceLine
public abstract class ESTestCase
extends org.apache.lucene.tests.util.LuceneTestCase
Base testcase for randomized unit testing with Elasticsearch
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final class
static class
static final class
This cute helper class just holds all analysis building blocks that are used to build IndexAnalyzers.static @interface
Marks a test suite or a test method that should run without security manager enabled.Nested classes/interfaces inherited from class org.apache.lucene.tests.util.LuceneTestCase
org.apache.lucene.tests.util.LuceneTestCase.AwaitsFix, org.apache.lucene.tests.util.LuceneTestCase.Concurrency, org.apache.lucene.tests.util.LuceneTestCase.Monster, org.apache.lucene.tests.util.LuceneTestCase.Nightly, org.apache.lucene.tests.util.LuceneTestCase.SuppressCodecs, org.apache.lucene.tests.util.LuceneTestCase.SuppressFileSystems, org.apache.lucene.tests.util.LuceneTestCase.SuppressFsync, org.apache.lucene.tests.util.LuceneTestCase.SuppressReproduceLine, org.apache.lucene.tests.util.LuceneTestCase.SuppressSysoutChecks, org.apache.lucene.tests.util.LuceneTestCase.SuppressTempFileChecks, org.apache.lucene.tests.util.LuceneTestCase.ThrowingConsumer<T>, org.apache.lucene.tests.util.LuceneTestCase.ThrowingRunnable, org.apache.lucene.tests.util.LuceneTestCase.Weekly
-
Field Summary
FieldsModifier and TypeFieldDescriptionMockFSDirectoryService sets this:static final String
org.junit.rules.RuleChain
static final String
protected final org.apache.logging.log4j.Logger
protected static final int
Defines the minimum port that test workers should use.static final org.elasticsearch.core.TimeValue
The timeout used for the various "safe" wait methods such assafeAwait(java.util.concurrent.CyclicBarrier)
andsafeAcquire(java.util.concurrent.Semaphore)
.static final org.elasticsearch.core.TimeValue
Various timeouts in various REST APIs default to 30s, and many tests do not care about such timeouts, but must specify some value anyway when constructing the corresponding transport/action request instance since we would prefer to avoid having implicit defaults in these requests.static final String
static final String
static final BigInteger
The maximum value that can be represented as an unsigned long.Fields inherited from class org.apache.lucene.tests.util.LuceneTestCase
assertsAreEnabled, classRules, DEFAULT_LINE_DOCS_FILE, INFOSTREAM, JENKINS_LARGE_LINE_DOCS_FILE, LEAVE_TEMPORARY, MAYBE_CACHE_POLICY, RANDOM_MULTIPLIER, ruleChain, suiteFailureMarker, SYSPROP_AWAITSFIX, SYSPROP_FAILFAST, SYSPROP_MAXFAILURES, SYSPROP_MONSTER, SYSPROP_NIGHTLY, SYSPROP_WEEKLY, TEST_ASSERTS_ENABLED, TEST_AWAITSFIX, TEST_CODEC, TEST_DIRECTORY, TEST_DOCVALUESFORMAT, TEST_LINE_DOCS_FILE, TEST_MONSTER, TEST_NIGHTLY, TEST_POSTINGSFORMAT, TEST_THROTTLING, TEST_WEEKLY, VERBOSE
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal void
after()
protected void
afterIfFailed
(List<Throwable> errors) Called when a test fails, supplying the errors it generated.protected void
called after a test is finished, but only if successfulfinal void
static <T> T
asInstanceOf
(Class<T> clazz, Object o) static void
assertArrayEquals
(StackTraceElement[] expected, StackTraceElement[] actual) Compares two stack traces, ignoring module (which is not yet serialized)static void
assertBusy
(org.elasticsearch.core.CheckedRunnable<Exception> codeBlock) Runs the code block for 10 seconds waiting for no assertion to trip.static void
assertBusy
(org.elasticsearch.core.CheckedRunnable<Exception> codeBlock, long maxWaitTime, TimeUnit unit) Runs the code block for the provided interval, waiting for no assertions to trip.protected final void
assertCriticalWarnings
(String... expectedWarnings) Convenience method to assert warnings for settings deprecations and general deprecation warnings.static void
assertEquals
(StackTraceElement expected, StackTraceElement actual) Compares two stack trace elements, ignoring module (which is not yet serialized)protected static void
Assert that at least one leak was detected, also clear the list of detected leaks so the test won't fail for leaks detected up until this point.protected final void
assertSettingDeprecationsAndWarnings
(Setting<?>[] settings, ESTestCase.DeprecationWarning... warnings) Convenience method to assert warnings for settings deprecations and general deprecation warnings.static <T> void
assertThat
(String reason, T actual, org.hamcrest.Matcher<? super T> matcher) static <T> void
assertThat
(T actual, org.hamcrest.Matcher<? super T> matcher) protected final void
assertWarnings
(boolean stripXContentPosition, ESTestCase.DeprecationWarning... expectedWarnings) protected final void
assertWarnings
(String... expectedWarnings) Convenience method to assert warnings for settings deprecations and general deprecation warnings.final void
before()
static int
between
(int min, int max) An alias forrandomIntBetween(int, int)
.buildEnvSettings
(Settings settings) static TransportAddress
Generates a new transport address usingTransportAddress.META_ADDRESS
with an incrementing port number.protected static void
compatibleMediaType
(org.elasticsearch.xcontent.XContentType type, org.elasticsearch.core.RestApiVersion version) protected static <T extends Writeable>
TcopyInstance
(T original, NamedWriteableRegistry namedWriteableRegistry, Writeable.Writer<T> writer, Writeable.Reader<T> reader, TransportVersion version) static <C extends NamedWriteable,
T extends C>
CcopyNamedWriteable
(T original, NamedWriteableRegistry namedWriteableRegistry, Class<C> categoryClass) Create a copy of an originalNamedWriteable
object by running it through aBytesStreamOutput
and reading it in again using a providedWriteable.Reader
.static <C extends NamedWriteable,
T extends C>
CcopyNamedWriteable
(T original, NamedWriteableRegistry namedWriteableRegistry, Class<C> categoryClass, TransportVersion version) Same ascopyNamedWriteable(NamedWriteable, NamedWriteableRegistry, Class)
but also allows to provide aTransportVersion
argument which will be used to write and read back the object.static <T extends Writeable>
TcopyWriteable
(T original, NamedWriteableRegistry namedWriteableRegistry, Writeable.Reader<T> reader) Create a copy of an originalWriteable
object by running it through aBytesStreamOutput
and reading it in again using a providedWriteable.Reader
.static <T extends Writeable>
TcopyWriteable
(T original, NamedWriteableRegistry namedWriteableRegistry, Writeable.Reader<T> reader, TransportVersion version) Same ascopyWriteable(Writeable, NamedWriteableRegistry, Writeable.Reader)
but also allows to provide aTransportVersion
argument which will be used to write and read back the object.protected IndexAnalyzers
Creates an IndexAnalyzers with a single default analyzerprotected final org.elasticsearch.xcontent.XContentParser
createParser
(org.elasticsearch.xcontent.XContentBuilder builder) Create a newXContentParser
.protected final org.elasticsearch.xcontent.XContentParser
createParser
(org.elasticsearch.xcontent.XContentParserConfiguration config, org.elasticsearch.xcontent.XContent xContent, BytesReference data) Create a newXContentParser
.protected final org.elasticsearch.xcontent.XContentParser
createParser
(org.elasticsearch.xcontent.XContent xContent, byte[] data) Create a newXContentParser
.protected final org.elasticsearch.xcontent.XContentParser
createParser
(org.elasticsearch.xcontent.XContent xContent, InputStream data) Create a newXContentParser
.protected final org.elasticsearch.xcontent.XContentParser
createParser
(org.elasticsearch.xcontent.XContent xContent, String data) Create a newXContentParser
.protected final org.elasticsearch.xcontent.XContentParser
createParser
(org.elasticsearch.xcontent.XContent xContent, BytesReference data) Create a newXContentParser
.protected final org.elasticsearch.xcontent.XContentParser
createParserWithCompatibilityFor
(org.elasticsearch.xcontent.XContent xContent, String data, org.elasticsearch.core.RestApiVersion restApiVersion) static ESTestCase.TestAnalysis
createTestAnalysis
(Index index, Settings nodeSettings, Settings settings, AnalysisPlugin... analysisPlugins) Creates an TestAnalysis with all the default analyzers configured.static ESTestCase.TestAnalysis
createTestAnalysis
(Index index, Settings settings, AnalysisPlugin... analysisPlugins) Creates an TestAnalysis with all the default analyzers configured.static ESTestCase.TestAnalysis
createTestAnalysis
(IndexSettings indexSettings, Settings nodeSettings, AnalysisPlugin... analysisPlugins) Creates an TestAnalysis with all the default analyzers configured.protected TestThreadPool
createThreadPool
(ExecutorBuilder<?>... executorBuilders) protected boolean
protected boolean
Whether or not we check after each test whether it has left warnings behind.static void
ensureAllContextsReleased
(SearchService searchService) final void
final void
void
static void
static <T extends Throwable>
TexpectThrows
(Class<T> expectedType, ActionFuture<? extends org.elasticsearch.core.RefCounted> future) static <T extends Throwable>
TexpectThrows
(Class<T> expectedType, RequestBuilder<?, ?> builder) static <T> T
static <T> T
static void
flushThreadPoolExecutor
(ThreadPool threadPool, String executorName) Wait for all tasks currently running or enqueued on the given executor to complete.static boolean
The exact opposite ofLuceneTestCase.rarely()
.static String[]
generateRandomStringArray
(int maxArraySize, int stringSize, boolean allowNull) static String[]
generateRandomStringArray
(int maxArraySize, int stringSize, boolean allowNull, boolean allowEmpty) getDataPath
(String relativePath) Returns aPath
pointing to the class path relative resource given as the first argument.static String
Returns a port range for this JVM according to its Gradle worker ID.static Path
getResourceDataPath
(Class<?> clazz, String relativePath) static org.apache.lucene.tests.util.TestRuleMarkFailure
Returns the suite failure marker: internal use only!static String
protected static int
Returns the start of the port range for this JVM according to its Gradle worker ID.static Settings.Builder
indexSettings
(int shards, int replicas) Return consistent index settings for the provided shard- and replica-count.static Settings.Builder
indexSettings
(IndexVersion indexVersionCreated, int shards, int replicas) Return consistent index settings for the provided index version, shard- and replica-count.static boolean
protected static Random
protected static boolean
static int
iterations
(int min, int max) Returns a "scaled" number of iterations for loops which can have a variable iteration count.static void
static <T> void
helper to randomly perform onconsumer
withvalue
static void
static Script
mockScript
(String id) Create a "mock" script for use either withMockScriptEngine
or anywhere where you need a script but don't really care about its contents.newEnvironment
(Settings settings) protected static CircuitBreaker
newNodeEnvironment
(Settings settings) static org.apache.lucene.search.IndexSearcher
newSearcher
(org.apache.lucene.index.IndexReader r) Create a new searcher over the reader.static org.apache.lucene.search.IndexSearcher
newSearcher
(org.apache.lucene.index.IndexReader r, boolean maybeWrap) Create a new searcher over the reader.static org.apache.lucene.search.IndexSearcher
newSearcher
(org.apache.lucene.index.IndexReader r, boolean maybeWrap, boolean wrapWithAssertions) Create a new searcher over the reader.static org.apache.lucene.search.IndexSearcher
newSearcher
(org.apache.lucene.index.IndexReader r, boolean maybeWrap, boolean wrapWithAssertions, boolean useThreads) Create a new searcher over the reader.protected final org.elasticsearch.xcontent.XContentParserConfiguration
static String
randomAlphanumericOfLength
(int length) Generate a random string containing only alphanumeric characters.static String
randomAlphaOfLength
(int codeUnits) static String
randomAlphaOfLengthBetween
(int minCodeUnits, int maxCodeUnits) static String
randomAlphaOfLengthOrNull
(int codeUnits) static <T> T[]
randomArray
(int minArraySize, int maxArraySize, IntFunction<T[]> arrayConstructor, Supplier<T> valueConstructor) static <T> T[]
randomArray
(int maxArraySize, IntFunction<T[]> arrayConstructor, Supplier<T> valueConstructor) static BigInteger
Returns a random BigInteger uniformly distributed over the range 0 to (2^64 - 1) inclusive Currently BigIntegers are only used for unsigned_long field type, where the max value is 2^64 - 1.static boolean
static byte
static byte[]
randomByteArrayOfLength
(int size) Helper method to create a byte array of a given length populated with random byte valuesstatic byte
randomByteBetween
(byte minInclusive, byte maxInclusive) static void
randomBytesBetween
(byte[] bytes, byte minInclusive, byte maxInclusive) static ByteSizeValue
A random byte size value.static BytesReference
randomBytesReference
(int length) randomCompatibleMediaType
(org.elasticsearch.core.RestApiVersion version) static String
Generate a random valid date formatter pattern.static double
static double
randomDoubleBetween
(double start, double end, boolean lowerInclusive) Returns a double value in the interval [start, end) if lowerInclusive is set to true, (start, end) otherwise.static DoubleStream
static DoubleStream
randomDoubles
(long streamSize) static Executor
randomExecutor
(ThreadPool threadPool, String... otherExecutorNames) Randomly choose betweenEsExecutors.DIRECT_EXECUTOR_SERVICE
(which does not fork),ThreadPool.generic()
, and one of the other named threadpool executors.static float
static float
randomFloatBetween
(float start, float end, boolean lowerInclusive) Returns a float value in the interval [start, end) if lowerInclusive is set to true, (start, end) otherwise.static Float
static <T> T
randomFrom
(Collection<T> collection) Pick a random object from the given collection.static <T> T
randomFrom
(List<T> list) Pick a random object from the given list.static <T> T
randomFrom
(Random random, Collection<T> collection) Pick a random object from the given collection.static <T> T
randomFrom
(Random random, Supplier<T>... array) Pick a random object from the given array of suppliers.static <T> T
randomFrom
(Random random, T... array) Pick a random object from the given array.static <T> T
randomFrom
(T... array) Pick a random object from the given array.static String
randomGeohash
(int minPrecision, int maxPrecision) static String
Creates a valid random identifier such as node id or index namestatic Instant
randomInstantBetween
(Instant minInstant, Instant maxInstant) static int
static int
randomInt
(int max) A random integer from 0..max (inclusive).static int
randomIntBetween
(int min, int max) A random integer frommin
tomax
(inclusive).static Integer
static IntStream
static IntStream
randomInts
(long streamSize) static InetAddress
randomIp
(boolean v4) static <T> List
<T> randomList
(int minListSize, int maxListSize, Supplier<T> valueConstructor) static <T> List
<T> randomList
(int maxListSize, Supplier<T> valueConstructor) static long
static long
randomLongBetween
(long min, long max) A random long number between min (inclusive) and max (inclusive).static Long
static LongStream
static LongStream
randomLongs
(long streamSize) static <K,
V> Map <K, V> randomMap
(int minMapSize, int maxMapSize, Supplier<org.elasticsearch.core.Tuple<K, V>> entryConstructor) static long
generate a random epoch millis in a range 1 to 9999-12-31T23:59:59.999static int
static long
static <T> List
<T> randomNonEmptySubsetOf
(Collection<T> collection) static byte
static int
static Integer
static long
static Long
static Boolean
static org.elasticsearch.core.TimeValue
static String
randomRealisticUnicodeOfCodepointLength
(int codePoints) static String
randomRealisticUnicodeOfCodepointLengthBetween
(int minCodePoints, int maxCodePoints) static String
randomRealisticUnicodeOfLength
(int codeUnits) static String
randomRealisticUnicodeOfLengthBetween
(int minCodeUnits, int maxCodeUnits) static String
Generate a random string of at least 112 bits to satisfy minimum entropy requirement when running in FIPS mode.static SecureString
randomSecureStringOfLength
(int codeUnits) static <T> Set
<T> static short
static <T> List
<T> randomSubsetOf
(int size, Collection<T> collection) Returns size random valuesstatic <T> List
<T> randomSubsetOf
(int size, T... values) Returns size random valuesstatic <T> List
<T> randomSubsetOf
(Collection<T> collection) Returns a random subset of values (including a potential empty list, or the full original list)static org.elasticsearch.core.TimeValue
static org.elasticsearch.core.TimeValue
randomTimeValue
(int lower, int upper) static org.elasticsearch.core.TimeValue
randomTimeValue
(int lower, int upper, TimeUnit... units) static TimeZone
generate a random TimeZone from the ones available in java.utilstatic String
randomUnicodeOfCodepointLength
(int codePoints) static String
randomUnicodeOfCodepointLengthBetween
(int minCodePoints, int maxCodePoints) static String
randomUnicodeOfLength
(int codeUnits) static String
randomUnicodeOfLengthBetween
(int minCodeUnits, int maxCodeUnits) static <T> Set
<T> randomUnique
(Supplier<T> supplier, int targetCount) Builds a set of unique items.static BigInteger
randomUnsignedLongBetween
(BigInteger min, BigInteger max) A unsigned long in aBigInteger
between min (inclusive) and max (inclusive).static String
static <T> T
randomValueOtherThan
(T input, Supplier<T> randomSupplier) helper to get a random value in a certain range that's different from the inputstatic <T> T
randomValueOtherThanMany
(Predicate<T> input, Supplier<T> randomSupplier) helper to get a random value in a certain range that's different from the inputorg.elasticsearch.xcontent.XContentType
static ZoneId
generate a random TimeZone from the ones available in java.timevoid
final void
static void
static void
static void
static void
runInParallel
(int numberOfTasks, IntConsumer taskFactory) RunnumberOfTasks
parallel tasks that were created by the giventaskFactory
.static void
safeAcquire
(int permits, Semaphore semaphore) Acquire the specified number of permits from the givenSemaphore
, with a timeout ofSAFE_AWAIT_TIMEOUT
, preserving the thread's interrupt status flag and asserting that the permits were all successfully acquired.static void
safeAcquire
(Semaphore semaphore) Acquire a single permit from the givenSemaphore
, with a timeout ofSAFE_AWAIT_TIMEOUT
, preserving the thread's interrupt status flag and asserting that the permit was successfully acquired.static void
safeAwait
(CountDownLatch countDownLatch) Await on the givenCountDownLatch
with a timeout ofSAFE_AWAIT_TIMEOUT
, preserving the thread's interrupt status flag and asserting that the latch is indeed completed before the timeout.static void
safeAwait
(CountDownLatch countDownLatch, org.elasticsearch.core.TimeValue timeout) Await on the givenCountDownLatch
with a supplied timeout, preserving the thread's interrupt status flag and asserting that the latch is indeed completed before the timeout.static void
safeAwait
(CyclicBarrier barrier) Await on the givenCyclicBarrier
with a timeout ofSAFE_AWAIT_TIMEOUT
, preserving the thread's interrupt status flag and converting all exceptions into anAssertionError
to trigger a test failure.static <T> T
safeAwait
(SubscribableListener<T> listener) Wait for the successful completion of the givenSubscribableListener
, with a timeout ofSAFE_AWAIT_TIMEOUT
, preserving the thread's interrupt status flag and converting all exceptions into anAssertionError
to trigger a test failure.static <T> T
safeAwait
(org.elasticsearch.core.CheckedConsumer<ActionListener<T>, ?> consumer) Call an async action (aConsumer
of anActionListener
), wait for it to complete the listener, and then return the result.static <Response,
ExpectedException extends Exception>
ExpectedExceptionsafeAwaitAndUnwrapFailure
(Class<ExpectedException> exceptionType, Class<Response> responseType, Consumer<ActionListener<Response>> consumer) Wait for the exceptional completion of the given async action, with a timeout ofSAFE_AWAIT_TIMEOUT
, preserving the thread's interrupt status flag and converting a successful completion, interrupt or timeout into anAssertionError
to trigger a test failure.static <Response,
ExpectedException extends Exception>
ExpectedExceptionsafeAwaitFailure
(Class<ExpectedException> exceptionType, Class<Response> responseType, Consumer<ActionListener<Response>> consumer) Wait for the exceptional completion of the given async action, with a timeout ofSAFE_AWAIT_TIMEOUT
, preserving the thread's interrupt status flag and converting a successful completion, interrupt or timeout into anAssertionError
to trigger a test failure.static <T> Exception
safeAwaitFailure
(Class<T> responseType, Consumer<ActionListener<T>> consumer) Wait for the exceptional completion of the given async action, with a timeout ofSAFE_AWAIT_TIMEOUT
, preserving the thread's interrupt status flag and converting a successful completion, interrupt or timeout into anAssertionError
to trigger a test failure.static <T> Exception
safeAwaitFailure
(Consumer<ActionListener<T>> consumer) Wait for the exceptional completion of the given async action, with a timeout ofSAFE_AWAIT_TIMEOUT
, preserving the thread's interrupt status flag and converting a successful completion, interrupt or timeout into anAssertionError
to trigger a test failure.static Exception
safeAwaitFailure
(SubscribableListener<?> listener) Wait for the exceptional completion of the givenSubscribableListener
, with a timeout ofSAFE_AWAIT_TIMEOUT
, preserving the thread's interrupt status flag and converting a successful completion, interrupt or timeout into anAssertionError
to trigger a test failure.static <T extends ActionResponse>
TsafeExecute
(ElasticsearchClient client, ActionType<T> action, ActionRequest request) Execute the givenActionRequest
using the givenActionType
and the givenElasticsearchClient
, wait for it to complete with a timeout ofSAFE_AWAIT_TIMEOUT
, and then return the result.static <T> T
Wait for the successful completion of the givenFuture
, with a timeout ofSAFE_AWAIT_TIMEOUT
, preserving the thread's interrupt status flag and converting all exceptions into anAssertionError
to trigger a test failure.static <T> T
safeGet
(CheckedSupplier<T, ?> supplier) Call aCheckedSupplier
, converting all exceptions into anAssertionError
.static void
safeSleep
(long millis) Send the current thread to sleep for the given number of milliseconds, asserting that the sleep is not interrupted but preserving the thread's interrupt status flag in any case.static void
safeSleep
(org.elasticsearch.core.TimeValue timeValue) Send the current thread to sleep for the given duration, asserting that the sleep is not interrupted but preserving the thread's interrupt status flag in any case.static int
scaledRandomIntBetween
(int min, int max) Returns a "scaled" random number between min and max (inclusive).static SecureRandom
In non-FIPS mode, get a deterministic SecureRandom SHA1PRNG/SUN instance seeded by deterministic LuceneTestCase.random().static SecureRandom
secureRandom
(byte[] seed) In non-FIPS mode, get a deterministic SecureRandom SHA1PRNG/SUN instance seeded by the input value.protected static SecureRandom
Returns non-deterministic FIPS SecureRandom DEFAULT/BCFIPS instance.protected static SecureRandom
secureRandomFips
(byte[] seed) Returns non-deterministic FIPS SecureRandom DEFAULT/BCFIPS instance.protected static SecureRandom
Returns deterministic non-FIPS SecureRandom SHA1PRNG/SUN instance seeded by deterministic LuceneTestCase.random().protected static SecureRandom
secureRandomNonFips
(byte[] seed) Returns deterministic non-FIPS SecureRandom SHA1PRNG/SUN instance seeded by deterministic LuceneTestCase.random().static void
static void
void
static Settings.Builder
settings
(IndexVersion version) Return consistent index settings for the provided index version.static <T> List
<T> shuffledList
(List<T> list) static LinkedHashMap
<String, Object> shuffleMap
(LinkedHashMap<String, Object> map, Set<String> exceptFields) protected final org.elasticsearch.xcontent.XContentBuilder
shuffleXContent
(org.elasticsearch.xcontent.XContentBuilder builder, String... exceptFieldNames) Randomly shuffles the fields inside objects in theXContentBuilder
passed in.static org.elasticsearch.xcontent.XContentBuilder
shuffleXContent
(org.elasticsearch.xcontent.XContentParser parser, boolean prettyPrint, String... exceptFieldNames) Randomly shuffles the fields inside objects parsed using theXContentParser
passed in.protected void
skipTestWaitingForLuceneFix
(org.apache.lucene.util.Version luceneVersionWithFix, String message) Call method at the beginning of a test to disable its execution until a given Lucene version is released and integrated into Elasticsearchprotected static long
spinForAtLeastNMilliseconds
(long ms) protected static long
static void
startInParallel
(int numberOfTasks, IntConsumer taskFactory) Same asrunInParallel(int, IntConsumer)
but also attempts to start all tasks at the same time by blocking execution on a barrier until all threads are started and ready to execute their task.static boolean
terminate
(ExecutorService... services) static boolean
terminate
(ThreadPool threadPool) String[]
tmpPaths()
Returns a random number of temporary paths.protected final BytesReference
toShuffledXContent
(org.elasticsearch.xcontent.ToXContent toXContent, org.elasticsearch.xcontent.XContentType xContentType, org.elasticsearch.core.RestApiVersion restApiVersion, org.elasticsearch.xcontent.ToXContent.Params params, boolean humanReadable, String... exceptFieldNames) Returns the bytes that represent the XContent output of the providedToXContent
object, using the providedXContentType
.protected final BytesReference
toShuffledXContent
(org.elasticsearch.xcontent.ToXContent toXContent, org.elasticsearch.xcontent.XContentType xContentType, org.elasticsearch.xcontent.ToXContent.Params params, boolean humanReadable, String... exceptFieldNames) Returns the bytes that represent the XContent output of the providedToXContent
object, using the providedXContentType
.static boolean
waitUntil
(BooleanSupplier breakSupplier) Periodically execute the supplied function until it returns true, or a timeout is reached.static boolean
waitUntil
(BooleanSupplier breakSupplier, long maxWaitTime, TimeUnit unit) Periodically execute the supplied function until it returns true, or until the specified maximum wait time has elapsed.protected NamedWriteableRegistry
TheNamedWriteableRegistry
to use for this test.protected org.elasticsearch.xcontent.NamedXContentRegistry
TheNamedXContentRegistry
to use for this test.Methods inherited from class org.apache.lucene.tests.util.LuceneTestCase
addVirusChecker, assertDeletedDocsEquals, assertDocsAndPositionsEnumEquals, assertDocsEnumEquals, assertDocsSkippingEquals, assertDocValuesEquals, assertDocValuesEquals, assertDoubleUlpEquals, assertFieldInfosEquals, assertFloatUlpEquals, assertNormsEquals, assertPointsEquals, assertPositionsSkippingEquals, assertReaderEquals, assertReaderStatisticsEquals, assertStoredFieldEquals, assertStoredFieldsEquals, assertTermsEnumEquals, assertTermsEquals, assertTermsEquals, assertTermsStatisticsEquals, assertTermStatsEquals, assertTermVectorsEquals, asSet, assumeFalse, assumeNoException, assumeTrue, atLeast, atLeast, callStackContains, callStackContains, callStackContainsAnyOf, closeAfterSuite, closeAfterTest, collate, createTempDir, createTempDir, createTempFile, createTempFile, dumpArray, dumpIterator, ensureSaneIWCOnNightly, expectThrows, expectThrows, expectThrows, expectThrowsAnyOf, expectThrowsAnyOf, getDataInputStream, getJvmForkArguments, getOnlyLeafReader, getTestClass, getTestName, isTestThread, localeForLanguageTag, maybeChangeLiveIndexWriterConfig, maybeWrapReader, newAlcoholicMergePolicy, newAlcoholicMergePolicy, newBytesRef, newBytesRef, newBytesRef, newBytesRef, newBytesRef, newBytesRef, newDirectory, newDirectory, newDirectory, newDirectory, newDirectory, newField, newField, newFSDirectory, newFSDirectory, newIndexWriterConfig, newIndexWriterConfig, newIndexWriterConfig, newIOContext, newIOContext, newLogMergePolicy, newLogMergePolicy, newLogMergePolicy, newLogMergePolicy, newLogMergePolicy, newMaybeVirusCheckingDirectory, newMaybeVirusCheckingFSDirectory, newMergePolicy, newMergePolicy, newMergePolicy, newMockDirectory, newMockDirectory, newMockDirectory, newMockFSDirectory, newMockFSDirectory, newSearcher, newSnapshotIndexWriterConfig, newStringField, newStringField, newStringField, newStringField, newTextField, newTextField, newTieredMergePolicy, newTieredMergePolicy, overrideDefaultQueryCache, overrideTestDefaultQueryCache, random, randomLocale, randomTimeZone, randomVectorFormat, rarely, rarely, replaceMaxFailureRule, resetDefaultQueryCache, restoreCPUCoreCount, restoreIndexWriterMaxDocs, runWithRestrictedPermissions, setIndexWriterMaxDocs, setUp, setupCPUCoreCount, setUpExecutorService, shutdownExecutorService, slowFileExists, tearDown, usually, usually, wrapReader
Methods inherited from class org.junit.Assert
assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotEquals, assertNotEquals, assertNotEquals, assertNotEquals, assertNotEquals, assertNotEquals, assertNotEquals, assertNotEquals, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertThrows, assertThrows, assertTrue, assertTrue, fail, fail
-
Field Details
-
JAVA_TIMEZONE_IDS
-
JAVA_ZONE_IDS
-
TEST_WORKER_VM_ID
-
TEST_WORKER_SYS_PROPERTY
- See Also:
-
DEFAULT_TEST_WORKER_ID
- See Also:
-
FIPS_SYSPROP
- See Also:
-
logger
protected final org.apache.logging.log4j.Logger logger -
failureAndSuccessEvents
public org.junit.rules.RuleChain failureAndSuccessEvents -
checkIndexFailures
MockFSDirectoryService sets this: -
UNSIGNED_LONG_MAX
The maximum value that can be represented as an unsigned long. -
MIN_PRIVATE_PORT
protected static final int MIN_PRIVATE_PORTDefines the minimum port that test workers should use. See also [NOTE: Port ranges for tests].- See Also:
-
TEST_REQUEST_TIMEOUT
public static final org.elasticsearch.core.TimeValue TEST_REQUEST_TIMEOUTVarious timeouts in various REST APIs default to 30s, and many tests do not care about such timeouts, but must specify some value anyway when constructing the corresponding transport/action request instance since we would prefer to avoid having implicit defaults in these requests. This constant can be used as a slightly more meaningful way to refer to the 30s default value in tests. -
SAFE_AWAIT_TIMEOUT
public static final org.elasticsearch.core.TimeValue SAFE_AWAIT_TIMEOUTThe timeout used for the various "safe" wait methods such assafeAwait(java.util.concurrent.CyclicBarrier)
andsafeAcquire(java.util.concurrent.Semaphore)
. In tests we generally want these things to complete almost immediately, but sometimes the CI runner executes things rather slowly so we use10s
as a fairly relaxed definition of "immediately".A well-designed test should not need to wait for anything close to this duration when run in isolation. If you think you need to do so, instead seek a better way to write the test such that it does not need to wait for so long. Tests that take multiple seconds to complete are a big drag on CI times which slows everyone down.
For instance, tests which verify things that require the passage of time ought to simulate this (e.g. using a
DeterministicTaskQueue
). Excessive busy-waits ought to be replaced by blocking waits (e.g. using aCountDownLatch
) which release as soon as the condition is satisfied.
-
-
Constructor Details
-
ESTestCase
public ESTestCase()
-
-
Method Details
-
resetPortCounter
public static void resetPortCounter() -
initTestSeed
-
buildNewFakeTransportAddress
Generates a new transport address usingTransportAddress.META_ADDRESS
with an incrementing port number. The port number starts at 0 and is reset after each test suite run. -
afterIfFailed
Called when a test fails, supplying the errors it generated. Not called when the test fails because assumptions are violated. -
afterIfSuccessful
called after a test is finished, but only if successful- Throws:
Exception
-
maybeStashClassSecurityManager
public static void maybeStashClassSecurityManager() -
maybeRestoreClassSecurityManager
- Throws:
IOException
-
setFileSystem
- Throws:
Exception
-
restoreFileSystem
- Throws:
Exception
-
setContentType
- Throws:
Exception
-
restoreContentType
public static void restoreContentType() -
ensureSupportedLocale
public static void ensureSupportedLocale() -
setHeaderWarningAppender
public void setHeaderWarningAppender() -
removeHeaderWarningAppender
public void removeHeaderWarningAppender() -
before
public final void before() -
newLimitedBreaker
-
allBreakersMemoryReleased
public final void allBreakersMemoryReleased() -
enableWarningsCheck
protected boolean enableWarningsCheck()Whether or not we check after each test whether it has left warnings behind. That happens if any deprecated feature or syntax was used by the test and the test didn't assert on it usingassertWarnings(String...)
. -
enableBigArraysReleasedCheck
protected boolean enableBigArraysReleasedCheck() -
after
- Throws:
Exception
-
ensureNoWarnings
public void ensureNoWarnings() -
filteredWarnings
-
assertSettingDeprecationsAndWarnings
protected final void assertSettingDeprecationsAndWarnings(Setting<?>[] settings, ESTestCase.DeprecationWarning... warnings) Convenience method to assert warnings for settings deprecations and general deprecation warnings.- Parameters:
settings
- the settings that are expected to be deprecatedwarnings
- other expected general deprecation warnings
-
assertWarnings
Convenience method to assert warnings for settings deprecations and general deprecation warnings. All warnings passed to this method are assumed to be at WARNING level.- Parameters:
expectedWarnings
- expected general deprecation warning messages.
-
assertCriticalWarnings
Convenience method to assert warnings for settings deprecations and general deprecation warnings. All warnings passed to this method are assumed to be at CRITICAL level.- Parameters:
expectedWarnings
- expected general deprecation warning messages.
-
assertWarnings
protected final void assertWarnings(boolean stripXContentPosition, ESTestCase.DeprecationWarning... expectedWarnings) -
checkStaticState
- Throws:
Exception
-
assertLeakDetected
protected static void assertLeakDetected()Assert that at least one leak was detected, also clear the list of detected leaks so the test won't fail for leaks detected up until this point. -
ensureAllSearchContextsReleased
- Throws:
Exception
-
resetCheckIndexStatus
- Throws:
Exception
-
ensureCheckIndexPassed
public final void ensureCheckIndexPassed() -
scaledRandomIntBetween
public static int scaledRandomIntBetween(int min, int max) Returns a "scaled" random number between min and max (inclusive).- See Also:
-
randomIntBetween
public static int randomIntBetween(int min, int max) A random integer frommin
tomax
(inclusive).- See Also:
-
randomLongBetween
public static long randomLongBetween(long min, long max) A random long number between min (inclusive) and max (inclusive). -
randomInstantBetween
- Returns:
- a random instant between a min and a max value with a random nanosecond precision
-
randomUnsignedLongBetween
A unsigned long in aBigInteger
between min (inclusive) and max (inclusive). -
iterations
public static int iterations(int min, int max) Returns a "scaled" number of iterations for loops which can have a variable iteration count. This method is effectively an alias toscaledRandomIntBetween(int, int)
. -
between
public static int between(int min, int max) An alias forrandomIntBetween(int, int)
.- See Also:
-
frequently
public static boolean frequently()The exact opposite ofLuceneTestCase.rarely()
. -
randomBoolean
public static boolean randomBoolean() -
randomOptionalBoolean
-
randomByte
public static byte randomByte() -
randomNonNegativeByte
public static byte randomNonNegativeByte() -
randomByteArrayOfLength
public static byte[] randomByteArrayOfLength(int size) Helper method to create a byte array of a given length populated with random byte values- See Also:
-
randomByteBetween
public static byte randomByteBetween(byte minInclusive, byte maxInclusive) -
randomBytesBetween
public static void randomBytesBetween(byte[] bytes, byte minInclusive, byte maxInclusive) -
randomBytesReference
-
randomShort
public static short randomShort() -
randomInt
public static int randomInt() -
randomInts
-
randomInts
-
randomNonNegativeLong
public static long randomNonNegativeLong()- Returns:
- a
long
between0
andLong.MAX_VALUE
(inclusive) chosen uniformly at random.
-
randomNegativeLong
public static long randomNegativeLong()- Returns:
- a
long
betweenLong.MIN_VALUE
and-1
(inclusive) chosen uniformly at random.
-
randomNonNegativeInt
public static int randomNonNegativeInt()- Returns:
- an
int
between0
andInteger.MAX_VALUE
(inclusive) chosen uniformly at random.
-
randomNegativeInt
public static int randomNegativeInt()- Returns:
- an
int
betweenInteger.MIN_VALUE
and-1
(inclusive) chosen uniformly at random.
-
randomFloat
public static float randomFloat() -
randomFloatBetween
public static float randomFloatBetween(float start, float end, boolean lowerInclusive) Returns a float value in the interval [start, end) if lowerInclusive is set to true, (start, end) otherwise.- Parameters:
start
- lower bound of interval to draw uniformly distributed random numbers fromend
- upper boundlowerInclusive
- whether or not to include lower end of the interval
-
randomDouble
public static double randomDouble() -
randomDoubles
-
randomDoubles
-
randomDoubleBetween
public static double randomDoubleBetween(double start, double end, boolean lowerInclusive) Returns a double value in the interval [start, end) if lowerInclusive is set to true, (start, end) otherwise.- Parameters:
start
- lower bound of interval to draw uniformly distributed random numbers fromend
- upper boundlowerInclusive
- whether or not to include lower end of the interval
-
randomLong
public static long randomLong() -
randomLongs
-
randomLongs
-
randomBigInteger
Returns a random BigInteger uniformly distributed over the range 0 to (2^64 - 1) inclusive Currently BigIntegers are only used for unsigned_long field type, where the max value is 2^64 - 1. Modify this random generator if a wider range for BigIntegers is necessary.- Returns:
- a random bigInteger in the range [0 ; 2^64 - 1]
-
randomInt
public static int randomInt(int max) A random integer from 0..max (inclusive). -
randomByteSizeValue
A random byte size value. -
randomFrom
Pick a random object from the given array. The array must not be empty. -
randomFrom
Pick a random object from the given array. The array must not be empty. -
randomFrom
Pick a random object from the given array of suppliers. The array must not be empty. -
randomFrom
Pick a random object from the given list. -
randomFrom
Pick a random object from the given collection. -
randomFrom
Pick a random object from the given collection. -
randomAlphaOfLengthBetween
-
randomAlphaOfLength
-
randomAlphanumericOfLength
Generate a random string containing only alphanumeric characters. The locale for the string isLocale.ROOT
.- Parameters:
length
- the length of the string to generate- Returns:
- the generated string
-
randomSecureStringOfLength
-
randomAlphaOfLengthOrNull
-
randomLongOrNull
-
randomNonNegativeLongOrNull
-
randomIntOrNull
-
randomNonNegativeIntOrNull
-
randomFloatOrNull
-
randomIdentifier
Creates a valid random identifier such as node id or index name -
randomUUID
-
randomUnicodeOfLengthBetween
-
randomUnicodeOfLength
-
randomUnicodeOfCodepointLengthBetween
-
randomUnicodeOfCodepointLength
-
randomRealisticUnicodeOfLengthBetween
-
randomRealisticUnicodeOfLength
-
randomRealisticUnicodeOfCodepointLengthBetween
public static String randomRealisticUnicodeOfCodepointLengthBetween(int minCodePoints, int maxCodePoints) -
randomRealisticUnicodeOfCodepointLength
-
generateRandomStringArray
public static String[] generateRandomStringArray(int maxArraySize, int stringSize, boolean allowNull, boolean allowEmpty) - Parameters:
maxArraySize
- The maximum number of elements in the random arraystringSize
- The length of each String in the arrayallowNull
- Whether the returned array may be nullallowEmpty
- Whether the returned array may be empty (have zero elements)
-
generateRandomStringArray
public static String[] generateRandomStringArray(int maxArraySize, int stringSize, boolean allowNull) -
randomArray
public static <T> T[] randomArray(int maxArraySize, IntFunction<T[]> arrayConstructor, Supplier<T> valueConstructor) -
randomArray
public static <T> T[] randomArray(int minArraySize, int maxArraySize, IntFunction<T[]> arrayConstructor, Supplier<T> valueConstructor) -
randomList
-
randomList
-
randomMap
-
randomSet
-
randomTimeValue
public static org.elasticsearch.core.TimeValue randomTimeValue(int lower, int upper, TimeUnit... units) -
randomTimeValue
public static org.elasticsearch.core.TimeValue randomTimeValue(int lower, int upper) -
randomTimeValue
public static org.elasticsearch.core.TimeValue randomTimeValue() -
randomPositiveTimeValue
public static org.elasticsearch.core.TimeValue randomPositiveTimeValue() -
randomMillisUpToYear9999
public static long randomMillisUpToYear9999()generate a random epoch millis in a range 1 to 9999-12-31T23:59:59.999 -
randomTimeZone
generate a random TimeZone from the ones available in java.util -
randomZone
generate a random TimeZone from the ones available in java.time -
randomDateFormatterPattern
Generate a random valid date formatter pattern. -
randomSecretKey
Generate a random string of at least 112 bits to satisfy minimum entropy requirement when running in FIPS mode. -
randomExecutor
Randomly choose betweenEsExecutors.DIRECT_EXECUTOR_SERVICE
(which does not fork),ThreadPool.generic()
, and one of the other named threadpool executors. -
maybeSet
helper to randomly perform onconsumer
withvalue
-
randomValueOtherThan
helper to get a random value in a certain range that's different from the input -
randomValueOtherThanMany
helper to get a random value in a certain range that's different from the input -
assertBusy
public static void assertBusy(org.elasticsearch.core.CheckedRunnable<Exception> codeBlock) throws Exception Runs the code block for 10 seconds waiting for no assertion to trip.- Throws:
Exception
-
assertBusy
public static void assertBusy(org.elasticsearch.core.CheckedRunnable<Exception> codeBlock, long maxWaitTime, TimeUnit unit) throws Exception Runs the code block for the provided interval, waiting for no assertions to trip.- Throws:
Exception
-
waitUntil
Periodically execute the supplied function until it returns true, or a timeout is reached. This version uses a timeout of 10 seconds. If at all possible, useassertBusy(CheckedRunnable)
instead.- Parameters:
breakSupplier
- determines whether to return immediately or continue waiting.- Returns:
- the last value returned by
breakSupplier
-
waitUntil
Periodically execute the supplied function until it returns true, or until the specified maximum wait time has elapsed. If at all possible, useassertBusy(CheckedRunnable)
instead.- Parameters:
breakSupplier
- determines whether to return immediately or continue waiting.maxWaitTime
- the maximum amount of time to waitunit
- the unit of tie formaxWaitTime
- Returns:
- the last value returned by
breakSupplier
-
createThreadPool
-
terminate
-
terminate
-
getDataPath
Returns aPath
pointing to the class path relative resource given as the first argument. In contrast togetClass().getResource(...).getFile()
this method will not return URL encoded paths if the parent path contains spaces or other non-standard characters.- Overrides:
getDataPath
in classorg.apache.lucene.tests.util.LuceneTestCase
-
getResourceDataPath
-
tmpPaths
Returns a random number of temporary paths. -
newNodeEnvironment
- Throws:
IOException
-
buildEnvSettings
-
newNodeEnvironment
- Throws:
IOException
-
newEnvironment
-
newEnvironment
-
settings
Return consistent index settings for the provided index version. -
indexSettings
public static Settings.Builder indexSettings(IndexVersion indexVersionCreated, int shards, int replicas) Return consistent index settings for the provided index version, shard- and replica-count. -
indexSettings
Return consistent index settings for the provided shard- and replica-count. -
randomSubsetOf
Returns size random values -
randomSubsetOf
Returns a random subset of values (including a potential empty list, or the full original list) -
randomNonEmptySubsetOf
-
randomSubsetOf
Returns size random values -
shuffledList
-
randomUnique
Builds a set of unique items. Usually you'll get the requested count but you might get less than that number if the supplier returns lots of repeats. Make sure that the items properly implement equals and hashcode. -
randomGeohash
-
getTestTransportType
-
getTestTransportPlugin
-
randomCompatibleMediaType
-
compatibleMediaType
public String compatibleMediaType(org.elasticsearch.xcontent.XContentType type, org.elasticsearch.core.RestApiVersion version) -
randomVendorType
public org.elasticsearch.xcontent.XContentType randomVendorType() -
toShuffledXContent
protected final BytesReference toShuffledXContent(org.elasticsearch.xcontent.ToXContent toXContent, org.elasticsearch.xcontent.XContentType xContentType, org.elasticsearch.xcontent.ToXContent.Params params, boolean humanReadable, String... exceptFieldNames) throws IOException Returns the bytes that represent the XContent output of the providedToXContent
object, using the providedXContentType
. Wraps the output into a new anonymous object according to the value returned by theToXContent.isFragment()
method returns. Shuffles the keys to make sure that parsing never relies on keys ordering.- Throws:
IOException
-
toShuffledXContent
protected final BytesReference toShuffledXContent(org.elasticsearch.xcontent.ToXContent toXContent, org.elasticsearch.xcontent.XContentType xContentType, org.elasticsearch.core.RestApiVersion restApiVersion, org.elasticsearch.xcontent.ToXContent.Params params, boolean humanReadable, String... exceptFieldNames) throws IOException Returns the bytes that represent the XContent output of the providedToXContent
object, using the providedXContentType
. Wraps the output into a new anonymous object according to the value returned by theToXContent.isFragment()
method returns. Shuffles the keys to make sure that parsing never relies on keys ordering.- Throws:
IOException
-
shuffleXContent
protected final org.elasticsearch.xcontent.XContentBuilder shuffleXContent(org.elasticsearch.xcontent.XContentBuilder builder, String... exceptFieldNames) throws IOException Randomly shuffles the fields inside objects in theXContentBuilder
passed in. Recursively goes through inner objects and also shuffles them. Exceptions for this recursive shuffling behavior can be made by passing in the names of fields which internally should stay untouched.- Throws:
IOException
-
shuffleXContent
public static org.elasticsearch.xcontent.XContentBuilder shuffleXContent(org.elasticsearch.xcontent.XContentParser parser, boolean prettyPrint, String... exceptFieldNames) throws IOException Randomly shuffles the fields inside objects parsed using theXContentParser
passed in. Recursively goes through inner objects and also shuffles them. Exceptions for this recursive shuffling behavior can be made by passing in the names of fields which internally should stay untouched.- Throws:
IOException
-
shuffleMap
public static LinkedHashMap<String,Object> shuffleMap(LinkedHashMap<String, Object> map, Set<String> exceptFields) -
copyWriteable
public static <T extends Writeable> T copyWriteable(T original, NamedWriteableRegistry namedWriteableRegistry, Writeable.Reader<T> reader) throws IOException Create a copy of an originalWriteable
object by running it through aBytesStreamOutput
and reading it in again using a providedWriteable.Reader
. The stream that is wrapped around theStreamInput
potentially need to use aNamedWriteableRegistry
, so this needs to be provided too (although it can be empty if the object that is streamed doesn't contain anyNamedWriteable
objects itself.- Throws:
IOException
-
copyWriteable
public static <T extends Writeable> T copyWriteable(T original, NamedWriteableRegistry namedWriteableRegistry, Writeable.Reader<T> reader, TransportVersion version) throws IOException Same ascopyWriteable(Writeable, NamedWriteableRegistry, Writeable.Reader)
but also allows to provide aTransportVersion
argument which will be used to write and read back the object.- Throws:
IOException
-
copyNamedWriteable
public static <C extends NamedWriteable,T extends C> C copyNamedWriteable(T original, NamedWriteableRegistry namedWriteableRegistry, Class<C> categoryClass) throws IOException Create a copy of an originalNamedWriteable
object by running it through aBytesStreamOutput
and reading it in again using a providedWriteable.Reader
.- Throws:
IOException
-
copyNamedWriteable
public static <C extends NamedWriteable,T extends C> C copyNamedWriteable(T original, NamedWriteableRegistry namedWriteableRegistry, Class<C> categoryClass, TransportVersion version) throws IOException Same ascopyNamedWriteable(NamedWriteable, NamedWriteableRegistry, Class)
but also allows to provide aTransportVersion
argument which will be used to write and read back the object.- Returns:
- Throws:
IOException
-
copyInstance
protected static <T extends Writeable> T copyInstance(T original, NamedWriteableRegistry namedWriteableRegistry, Writeable.Writer<T> writer, Writeable.Reader<T> reader, TransportVersion version) throws IOException - Throws:
IOException
-
parserConfig
protected final org.elasticsearch.xcontent.XContentParserConfiguration parserConfig() -
createParser
protected final org.elasticsearch.xcontent.XContentParser createParser(org.elasticsearch.xcontent.XContentBuilder builder) throws IOException Create a newXContentParser
.- Throws:
IOException
-
createParser
protected final org.elasticsearch.xcontent.XContentParser createParser(org.elasticsearch.xcontent.XContent xContent, String data) throws IOException Create a newXContentParser
.- Throws:
IOException
-
createParser
protected final org.elasticsearch.xcontent.XContentParser createParser(org.elasticsearch.xcontent.XContent xContent, InputStream data) throws IOException Create a newXContentParser
.- Throws:
IOException
-
createParser
protected final org.elasticsearch.xcontent.XContentParser createParser(org.elasticsearch.xcontent.XContent xContent, byte[] data) throws IOException Create a newXContentParser
.- Throws:
IOException
-
createParser
protected final org.elasticsearch.xcontent.XContentParser createParser(org.elasticsearch.xcontent.XContent xContent, BytesReference data) throws IOException Create a newXContentParser
.- Throws:
IOException
-
createParser
protected final org.elasticsearch.xcontent.XContentParser createParser(org.elasticsearch.xcontent.XContentParserConfiguration config, org.elasticsearch.xcontent.XContent xContent, BytesReference data) throws IOException Create a newXContentParser
.- Throws:
IOException
-
createParserWithCompatibilityFor
protected final org.elasticsearch.xcontent.XContentParser createParserWithCompatibilityFor(org.elasticsearch.xcontent.XContent xContent, String data, org.elasticsearch.core.RestApiVersion restApiVersion) throws IOException - Throws:
IOException
-
xContentRegistry
protected org.elasticsearch.xcontent.NamedXContentRegistry xContentRegistry()TheNamedXContentRegistry
to use for this test. Subclasses should override and use liberally. -
writableRegistry
TheNamedWriteableRegistry
to use for this test. Subclasses should override and use liberally. -
mockScript
Create a "mock" script for use either withMockScriptEngine
or anywhere where you need a script but don't really care about its contents. -
getSuiteFailureMarker
public static org.apache.lucene.tests.util.TestRuleMarkFailure getSuiteFailureMarker()Returns the suite failure marker: internal use only! -
assertArrayEquals
Compares two stack traces, ignoring module (which is not yet serialized) -
assertEquals
Compares two stack trace elements, ignoring module (which is not yet serialized) -
spinForAtLeastOneMillisecond
protected static long spinForAtLeastOneMillisecond() -
spinForAtLeastNMilliseconds
protected static long spinForAtLeastNMilliseconds(long ms) -
createDefaultIndexAnalyzers
Creates an IndexAnalyzers with a single default analyzer -
createTestAnalysis
public static ESTestCase.TestAnalysis createTestAnalysis(Index index, Settings settings, AnalysisPlugin... analysisPlugins) throws IOException Creates an TestAnalysis with all the default analyzers configured.- Throws:
IOException
-
createTestAnalysis
public static ESTestCase.TestAnalysis createTestAnalysis(Index index, Settings nodeSettings, Settings settings, AnalysisPlugin... analysisPlugins) throws IOException Creates an TestAnalysis with all the default analyzers configured.- Throws:
IOException
-
createTestAnalysis
public static ESTestCase.TestAnalysis createTestAnalysis(IndexSettings indexSettings, Settings nodeSettings, AnalysisPlugin... analysisPlugins) throws IOException Creates an TestAnalysis with all the default analyzers configured.- Throws:
IOException
-
inFipsJvm
public static boolean inFipsJvm() -
getPortRange
Returns a port range for this JVM according to its Gradle worker ID. See also [NOTE: Port ranges for tests]. -
getWorkerBasePort
protected static int getWorkerBasePort()Returns the start of the port range for this JVM according to its Gradle worker ID. See also [NOTE: Port ranges for tests]. -
randomIp
-
skipTestWaitingForLuceneFix
protected void skipTestWaitingForLuceneFix(org.apache.lucene.util.Version luceneVersionWithFix, String message) Call method at the beginning of a test to disable its execution until a given Lucene version is released and integrated into Elasticsearch- Parameters:
luceneVersionWithFix
- the lucene release to wait formessage
- an additional message or link with information on the fix
-
secureRandom
In non-FIPS mode, get a deterministic SecureRandom SHA1PRNG/SUN instance seeded by deterministic LuceneTestCase.random(). In FIPS mode, get a non-deterministic SecureRandom DEFAULT/BCFIPS instance seeded by deterministic LuceneTestCase.random().- Returns:
- SecureRandom SHA1PRNG instance.
- Throws:
NoSuchAlgorithmException
- SHA1PRNG or DEFAULT algorithm not found.NoSuchProviderException
- BCFIPS algorithm not found.
-
secureRandom
public static SecureRandom secureRandom(byte[] seed) throws NoSuchAlgorithmException, NoSuchProviderException In non-FIPS mode, get a deterministic SecureRandom SHA1PRNG/SUN instance seeded by the input value. In FIPS mode, get a non-deterministic SecureRandom DEFAULT/BCFIPS instance seeded by the input value.- Parameters:
seed
- Byte array to use for seeding the SecureRandom instance.- Returns:
- SecureRandom SHA1PRNG or DEFAULT/BCFIPS instance, depending on FIPS mode.
- Throws:
NoSuchAlgorithmException
- SHA1PRNG or DEFAULT algorithm not found.NoSuchProviderException
- BCFIPS algorithm not found.
-
secureRandomNonFips
Returns deterministic non-FIPS SecureRandom SHA1PRNG/SUN instance seeded by deterministic LuceneTestCase.random().- Returns:
- Deterministic non-FIPS SecureRandom SHA1PRNG/SUN instance seeded by deterministic LuceneTestCase.random().
- Throws:
NoSuchAlgorithmException
- Exception if SHA1PRNG algorithm not found, such as missing SUN provider (unlikely).
-
secureRandomFips
Returns non-deterministic FIPS SecureRandom DEFAULT/BCFIPS instance. Seeded.- Returns:
- Non-deterministic FIPS SecureRandom DEFAULT/BCFIPS instance. Seeded.
- Throws:
NoSuchAlgorithmException
- Exception if DEFAULT algorithm not found, such as missing BCFIPS provider.
-
secureRandomNonFips
Returns deterministic non-FIPS SecureRandom SHA1PRNG/SUN instance seeded by deterministic LuceneTestCase.random().- Returns:
- Deterministic non-FIPS SecureRandom SHA1PRNG/SUN instance seeded by deterministic LuceneTestCase.random().
- Throws:
NoSuchAlgorithmException
- Exception if SHA1PRNG algorithm not found, such as missing SUN provider (unlikely).
-
secureRandomFips
Returns non-deterministic FIPS SecureRandom DEFAULT/BCFIPS instance. Seeded.- Returns:
- Non-deterministic FIPS SecureRandom DEFAULT/BCFIPS instance. Seeded.
- Throws:
NoSuchAlgorithmException
- Exception if DEFAULT algorithm not found, such as missing BCFIPS provider.
-
safeAwait
Await on the givenCyclicBarrier
with a timeout ofSAFE_AWAIT_TIMEOUT
, preserving the thread's interrupt status flag and converting all exceptions into anAssertionError
to trigger a test failure. -
safeAwait
Await on the givenCountDownLatch
with a timeout ofSAFE_AWAIT_TIMEOUT
, preserving the thread's interrupt status flag and asserting that the latch is indeed completed before the timeout. -
safeAwait
public static void safeAwait(CountDownLatch countDownLatch, org.elasticsearch.core.TimeValue timeout) Await on the givenCountDownLatch
with a supplied timeout, preserving the thread's interrupt status flag and asserting that the latch is indeed completed before the timeout. -
safeAcquire
Acquire a single permit from the givenSemaphore
, with a timeout ofSAFE_AWAIT_TIMEOUT
, preserving the thread's interrupt status flag and asserting that the permit was successfully acquired. -
safeAcquire
Acquire the specified number of permits from the givenSemaphore
, with a timeout ofSAFE_AWAIT_TIMEOUT
, preserving the thread's interrupt status flag and asserting that the permits were all successfully acquired. -
safeAwait
Wait for the successful completion of the givenSubscribableListener
, with a timeout ofSAFE_AWAIT_TIMEOUT
, preserving the thread's interrupt status flag and converting all exceptions into anAssertionError
to trigger a test failure.- Returns:
- The value with which the
listener
was completed.
-
safeAwait
Call an async action (aConsumer
of anActionListener
), wait for it to complete the listener, and then return the result. Preserves the thread's interrupt status flag and converts all exceptions into anAssertionError
to trigger a test failure.- Returns:
- The value with which the consumed listener was completed.
-
safeExecute
public static <T extends ActionResponse> T safeExecute(ElasticsearchClient client, ActionType<T> action, ActionRequest request) Execute the givenActionRequest
using the givenActionType
and the givenElasticsearchClient
, wait for it to complete with a timeout ofSAFE_AWAIT_TIMEOUT
, and then return the result. An exceptional response, timeout or interrupt triggers a test failure. -
safeGet
Wait for the successful completion of the givenFuture
, with a timeout ofSAFE_AWAIT_TIMEOUT
, preserving the thread's interrupt status flag and converting all exceptions into anAssertionError
to trigger a test failure.- Returns:
- The value with which the
future
was completed.
-
safeGet
Call aCheckedSupplier
, converting all exceptions into anAssertionError
. Useful for avoiding try/catch boilerplate or cumbersome propagation of checked exceptions around something that should never throw.- Returns:
- The value returned by the
supplier
.
-
safeAwaitFailure
Wait for the exceptional completion of the givenSubscribableListener
, with a timeout ofSAFE_AWAIT_TIMEOUT
, preserving the thread's interrupt status flag and converting a successful completion, interrupt or timeout into anAssertionError
to trigger a test failure.- Returns:
- The exception with which the
listener
was completed exceptionally.
-
safeAwaitFailure
Wait for the exceptional completion of the given async action, with a timeout ofSAFE_AWAIT_TIMEOUT
, preserving the thread's interrupt status flag and converting a successful completion, interrupt or timeout into anAssertionError
to trigger a test failure.- Returns:
- The exception with which the
listener
was completed exceptionally.
-
safeAwaitFailure
public static <T> Exception safeAwaitFailure(Class<T> responseType, Consumer<ActionListener<T>> consumer) Wait for the exceptional completion of the given async action, with a timeout ofSAFE_AWAIT_TIMEOUT
, preserving the thread's interrupt status flag and converting a successful completion, interrupt or timeout into anAssertionError
to trigger a test failure.- Parameters:
responseType
- Class of listener response type, to aid type inference but otherwise ignored.- Returns:
- The exception with which the
listener
was completed exceptionally.
-
safeAwaitFailure
public static <Response,ExpectedException extends Exception> ExpectedException safeAwaitFailure(Class<ExpectedException> exceptionType, Class<Response> responseType, Consumer<ActionListener<Response>> consumer) Wait for the exceptional completion of the given async action, with a timeout ofSAFE_AWAIT_TIMEOUT
, preserving the thread's interrupt status flag and converting a successful completion, interrupt or timeout into anAssertionError
to trigger a test failure.- Parameters:
exceptionType
- Expected exception type. This method throws anAssertionError
if a different type of exception is seen.responseType
- Class of listener response type, to aid type inference but otherwise ignored.- Returns:
- The exception with which the
listener
was completed exceptionally.
-
safeAwaitAndUnwrapFailure
public static <Response,ExpectedException extends Exception> ExpectedException safeAwaitAndUnwrapFailure(Class<ExpectedException> exceptionType, Class<Response> responseType, Consumer<ActionListener<Response>> consumer) Wait for the exceptional completion of the given async action, with a timeout ofSAFE_AWAIT_TIMEOUT
, preserving the thread's interrupt status flag and converting a successful completion, interrupt or timeout into anAssertionError
to trigger a test failure. Any layers ofElasticsearchWrapperException
are removed from the thrown exception usingExceptionsHelper.unwrapCause(java.lang.Throwable)
.- Parameters:
exceptionType
- Expected unwrapped exception type. This method throws anAssertionError
if a different type of exception is seen.responseType
- Class of listener response type, to aid type inference but otherwise ignored.- Returns:
- The unwrapped exception with which the
listener
was completed exceptionally.
-
safeSleep
public static void safeSleep(org.elasticsearch.core.TimeValue timeValue) Send the current thread to sleep for the given duration, asserting that the sleep is not interrupted but preserving the thread's interrupt status flag in any case. -
safeSleep
public static void safeSleep(long millis) Send the current thread to sleep for the given number of milliseconds, asserting that the sleep is not interrupted but preserving the thread's interrupt status flag in any case. -
flushThreadPoolExecutor
Wait for all tasks currently running or enqueued on the given executor to complete. -
isTurkishLocale
protected static boolean isTurkishLocale() -
assertThat
public static <T> void assertThat(T actual, org.hamcrest.Matcher<? super T> matcher) -
assertThat
-
fail
-
fail
-
asInstanceOf
-
expectThrows
public static <T extends Throwable> T expectThrows(Class<T> expectedType, ActionFuture<? extends org.elasticsearch.core.RefCounted> future) -
expectThrows
public static <T extends Throwable> T expectThrows(Class<T> expectedType, RequestBuilder<?, ?> builder) -
startInParallel
Same asrunInParallel(int, IntConsumer)
but also attempts to start all tasks at the same time by blocking execution on a barrier until all threads are started and ready to execute their task. -
runInParallel
RunnumberOfTasks
parallel tasks that were created by the giventaskFactory
. On of the tasks will be run on the calling thread, the rest will be run on a new thread.- Parameters:
numberOfTasks
- number of tasks to run in paralleltaskFactory
- task factory
-
ensureAllContextsReleased
-
newSearcher
public static org.apache.lucene.search.IndexSearcher newSearcher(org.apache.lucene.index.IndexReader r) Create a new searcher over the reader. This searcher might randomly use threads. Provides the same functionality asLuceneTestCase.newSearcher(IndexReader)
, with the only difference that concurrency will only ever be inter-segment and never intra-segment. -
newSearcher
public static org.apache.lucene.search.IndexSearcher newSearcher(org.apache.lucene.index.IndexReader r, boolean maybeWrap) Create a new searcher over the reader. This searcher might randomly use threads. Provides the same functionality asLuceneTestCase.newSearcher(IndexReader, boolean)
, with the only difference that concurrency will only ever be inter-segment and never intra-segment. -
newSearcher
public static org.apache.lucene.search.IndexSearcher newSearcher(org.apache.lucene.index.IndexReader r, boolean maybeWrap, boolean wrapWithAssertions) Create a new searcher over the reader. This searcher might randomly use threads. Provides the same functionality asLuceneTestCase.newSearcher(IndexReader, boolean, boolean)
, with the only difference that concurrency will only ever be inter-segment and never intra-segment. -
newSearcher
public static org.apache.lucene.search.IndexSearcher newSearcher(org.apache.lucene.index.IndexReader r, boolean maybeWrap, boolean wrapWithAssertions, boolean useThreads) Create a new searcher over the reader. Provides the same functionality asLuceneTestCase.newSearcher(IndexReader, boolean, boolean, boolean)
, with the only difference that concurrency will only ever be inter-segment and never intra-segment.
-