* Use more inclusive language * Don't bail on failing tests without --bail * Skip a few more free suite tests * Default to https when running platinum tests * Add make targets for local integration testing * Linter cleanup * Skip some platinum integration tests * Improvements to integration test README * Another free test to skip for now * Continue on non-bail test failure * Output cleanup
479 lines
16 KiB
JavaScript
479 lines
16 KiB
JavaScript
/*
|
|
* Licensed to Elasticsearch B.V. under one or more contributor
|
|
* license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright
|
|
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
* the Apache License, Version 2.0 (the "License"); you may
|
|
* not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing,
|
|
* software distributed under the License is distributed on an
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
* KIND, either express or implied. See the License for the
|
|
* specific language governing permissions and limitations
|
|
* under the License.
|
|
*/
|
|
|
|
'use strict'
|
|
|
|
process.on('unhandledRejection', function (err) {
|
|
console.error(err)
|
|
process.exit(1)
|
|
})
|
|
|
|
const { writeFileSync, readFileSync, readdirSync, statSync } = require('fs')
|
|
const { join, sep } = require('path')
|
|
const yaml = require('js-yaml')
|
|
const minimist = require('minimist')
|
|
const ms = require('ms')
|
|
const { Client } = require('../../index')
|
|
const { kProductCheck } = require('@elastic/transport/lib/symbols')
|
|
const build = require('./test-runner')
|
|
const { sleep } = require('./helper')
|
|
const createJunitReporter = require('./reporter')
|
|
const downloadArtifacts = require('../../scripts/download-artifacts')
|
|
|
|
const yamlFolder = downloadArtifacts.locations.freeTestFolder
|
|
const xPackYamlFolder = downloadArtifacts.locations.xPackTestFolder
|
|
|
|
const MAX_API_TIME = 1000 * 90
|
|
const MAX_FILE_TIME = 1000 * 30
|
|
const MAX_TEST_TIME = 1000 * 3
|
|
|
|
const options = minimist(process.argv.slice(2), {
|
|
boolean: ['bail']
|
|
})
|
|
|
|
const freeSkips = {
|
|
// not supported yet
|
|
'/free/cluster.desired_nodes/10_basic.yml': ['*'],
|
|
|
|
// Cannot find methods on `Internal` object
|
|
'/free/cluster.desired_balance/10_basic.yml': ['*'],
|
|
'/free/cluster.desired_nodes/20_dry_run.yml': ['*'],
|
|
'/free/cluster.prevalidate_node_removal/10_basic.yml': ['*'],
|
|
|
|
'/free/health/30_feature.yml': ['*'],
|
|
'/free/health/40_useractions.yml': ['*'],
|
|
'/free/health/40_diagnosis.yml': ['Diagnosis'],
|
|
|
|
// the v8 client never sends the scroll_id in querystring,
|
|
// the way the test is structured causes a security exception
|
|
'free/scroll/10_basic.yml': ['Body params override query string'],
|
|
'free/scroll/11_clear.yml': [
|
|
'Body params with array param override query string',
|
|
'Body params with string param scroll id override query string'
|
|
],
|
|
'free/cat.allocation/10_basic.yml': ['*'],
|
|
'free/cat.snapshots/10_basic.yml': ['Test cat snapshots output'],
|
|
|
|
// TODO: remove this once 'arbitrary_key' is implemented
|
|
// https://github.com/elastic/elasticsearch/pull/41492
|
|
'indices.split/30_copy_settings.yml': ['*'],
|
|
'indices.stats/50_disk_usage.yml': ['Disk usage stats'],
|
|
'indices.stats/60_field_usage.yml': ['Field usage stats'],
|
|
|
|
// skipping because we are booting ES with `discovery.type=single-node`
|
|
// and this test will fail because of this configuration
|
|
'nodes.stats/30_discovery.yml': ['*'],
|
|
|
|
// the expected error is returning a 503,
|
|
// which triggers a retry and the node to be marked as dead
|
|
'search.aggregation/240_max_buckets.yml': ['*'],
|
|
|
|
// long values and json do not play nicely together
|
|
'search.aggregation/40_range.yml': ['Min and max long range bounds'],
|
|
|
|
// the yaml runner assumes that null means "does not exists",
|
|
// while null is a valid json value, so the check will fail
|
|
'search/320_disallow_queries.yml': ['Test disallow expensive queries'],
|
|
'free/tsdb/90_unsupported_operations.yml': ['noop update'],
|
|
}
|
|
|
|
const platinumDenyList = {
|
|
'api_key/10_basic.yml': ['Test get api key'],
|
|
'api_key/20_query.yml': ['*'],
|
|
'api_key/11_invalidation.yml': ['Test invalidate api key by realm name'],
|
|
'analytics/histogram.yml': ['Histogram requires values in increasing order'],
|
|
|
|
// this two test cases are broken, we should
|
|
// return on those in the future.
|
|
'analytics/top_metrics.yml': [
|
|
'sort by keyword field fails',
|
|
'sort by string script fails'
|
|
],
|
|
|
|
'cat.aliases/10_basic.yml': ['Empty cluster'],
|
|
'index/10_with_id.yml': ['Index with ID'],
|
|
'indices.get_alias/10_basic.yml': ['Get alias against closed indices'],
|
|
'indices.get_alias/20_empty.yml': ['Check empty aliases when getting all aliases via /_alias'],
|
|
'text_structure/find_structure.yml': ['*'],
|
|
|
|
// https://github.com/elastic/elasticsearch/pull/39400
|
|
'ml/jobs_crud.yml': ['Test put job with id that is already taken'],
|
|
|
|
// object keys must me strings, and `0.0.toString()` is `0`
|
|
'ml/evaluate_data_frame.yml': [
|
|
'Test binary_soft_classifition precision',
|
|
'Test binary_soft_classifition recall',
|
|
'Test binary_soft_classifition confusion_matrix'
|
|
],
|
|
|
|
// it gets random failures on CI, must investigate
|
|
'ml/set_upgrade_mode.yml': [
|
|
'Attempt to open job when upgrade_mode is enabled',
|
|
'Setting upgrade mode to disabled from enabled'
|
|
],
|
|
|
|
// The cleanup fails with a index not found when retrieving the jobs
|
|
'ml/get_datafeed_stats.yml': ['Test get datafeed stats when total_search_time_ms mapping is missing'],
|
|
'ml/bucket_correlation_agg.yml': ['Test correlation bucket agg simple'],
|
|
|
|
// start should be a string
|
|
'ml/jobs_get_result_overall_buckets.yml': ['Test overall buckets given epoch start and end params'],
|
|
|
|
// this can't happen with the client
|
|
'ml/start_data_frame_analytics.yml': ['Test start with inconsistent body/param ids'],
|
|
'ml/stop_data_frame_analytics.yml': ['Test stop with inconsistent body/param ids'],
|
|
'ml/preview_datafeed.yml': ['*'],
|
|
|
|
// Investigate why is failing
|
|
'ml/inference_crud.yml': ['*'],
|
|
'ml/categorization_agg.yml': ['Test categorization aggregation with poor settings'],
|
|
'ml/filter_crud.yml': ['*'],
|
|
|
|
// investigate why this is failing
|
|
'monitoring/bulk/10_basic.yml': ['*'],
|
|
'monitoring/bulk/20_privileges.yml': ['*'],
|
|
'license/20_put_license.yml': ['*'],
|
|
'snapshot/10_basic.yml': ['*'],
|
|
'snapshot/20_operator_privileges_disabled.yml': ['*'],
|
|
|
|
// the body is correct, but the regex is failing
|
|
'sql/sql.yml': ['Getting textual representation'],
|
|
'searchable_snapshots/10_usage.yml': ['*'],
|
|
'service_accounts/10_basic.yml': ['*'],
|
|
|
|
// we are setting two certificates in the docker config
|
|
'ssl/10_basic.yml': ['*'],
|
|
'token/10_basic.yml': ['*'],
|
|
'token/11_invalidation.yml': ['*'],
|
|
|
|
// very likely, the index template has not been loaded yet.
|
|
// we should run a indices.existsTemplate, but the name of the
|
|
// template may vary during time.
|
|
'transforms_crud.yml': [
|
|
'Test basic transform crud',
|
|
'Test transform with query and array of indices in source',
|
|
'Test PUT continuous transform',
|
|
'Test PUT continuous transform without delay set'
|
|
],
|
|
'transforms_force_delete.yml': [
|
|
'Test force deleting a running transform'
|
|
],
|
|
'transforms_cat_apis.yml': ['*'],
|
|
'transforms_start_stop.yml': ['*'],
|
|
'transforms_stats.yml': ['*'],
|
|
'transforms_stats_continuous.yml': ['*'],
|
|
'transforms_update.yml': ['*'],
|
|
|
|
// js does not support ulongs
|
|
'unsigned_long/10_basic.yml': ['*'],
|
|
'unsigned_long/20_null_value.yml': ['*'],
|
|
'unsigned_long/30_multi_fields.yml': ['*'],
|
|
'unsigned_long/40_different_numeric.yml': ['*'],
|
|
'unsigned_long/50_script_values.yml': ['*'],
|
|
|
|
// the v8 client flattens the body into the parent object
|
|
'platinum/users/10_basic.yml': ['Test put user with different username in body'],
|
|
|
|
// docker issue?
|
|
'watcher/execute_watch/60_http_input.yml': ['*'],
|
|
|
|
// the checks are correct, but for some reason the test is failing on js side
|
|
// I bet is because the backslashes in the rg
|
|
'watcher/execute_watch/70_invalid.yml': ['*'],
|
|
'watcher/put_watch/10_basic.yml': ['*'],
|
|
'xpack/15_basic.yml': ['*'],
|
|
|
|
// test that are failing that needs to be investigated
|
|
// the error cause can either be in the yaml test or in the specification
|
|
|
|
// start should be a string in the yaml test
|
|
'platinum/ml/delete_job_force.yml': ['Test force delete an open job that is referred by a started datafeed'],
|
|
'platinum/ml/evaluate_data_frame.yml': ['*'],
|
|
'platinum/ml/get_datafeed_stats.yml': ['*'],
|
|
|
|
// start should be a string in the yaml test
|
|
'platinum/ml/start_stop_datafeed.yml': ['*'],
|
|
|
|
// health API not yet supported
|
|
'/platinum/health/10_usage.yml': ['*'],
|
|
|
|
// ML update_trained_model_deployment not supported yet
|
|
'/platinum/ml/3rd_party_deployment.yml': ['Test update deployment'],
|
|
'/platinum/ml/update_trained_model_deployment.yml': ['Test with unknown model id']
|
|
}
|
|
|
|
function runner (opts = {}) {
|
|
const options = { node: opts.node }
|
|
if (opts.isXPack) {
|
|
options.tls = {
|
|
ca: readFileSync(join(__dirname, '..', '..', '.ci', 'certs', 'ca.crt'), 'utf8'),
|
|
rejectUnauthorized: false
|
|
}
|
|
}
|
|
const client = new Client(options)
|
|
// TODO: remove the following line once https://github.com/elastic/elasticsearch/issues/82358 is fixed
|
|
client.transport[kProductCheck] = null
|
|
log('Loading yaml suite')
|
|
start({ client, isXPack: opts.isXPack })
|
|
.catch(err => {
|
|
if (err.name === 'ResponseError') {
|
|
console.error(err)
|
|
console.log(JSON.stringify(err.meta, null, 2))
|
|
} else {
|
|
console.error(err)
|
|
}
|
|
process.exit(1)
|
|
})
|
|
}
|
|
|
|
async function waitCluster (client, times = 0) {
|
|
try {
|
|
await client.cluster.health({ wait_for_status: 'green', timeout: '50s' })
|
|
} catch (err) {
|
|
if (++times < 10) {
|
|
await sleep(5000)
|
|
return waitCluster(client, times)
|
|
}
|
|
console.error(err)
|
|
process.exit(1)
|
|
}
|
|
}
|
|
|
|
async function start ({ client, isXPack }) {
|
|
log('Waiting for Elasticsearch')
|
|
await waitCluster(client)
|
|
|
|
const body = await client.info()
|
|
const { number: version, build_hash: hash } = body.version
|
|
|
|
log(`Downloading artifacts for hash ${hash}...`)
|
|
await downloadArtifacts({ hash, version })
|
|
|
|
log(`Testing ${isXPack ? 'Platinum' : 'Free'} api...`)
|
|
const junit = createJunitReporter()
|
|
const junitTestSuites = junit.testsuites(`Integration test for ${isXPack ? 'Platinum' : 'Free'} api`)
|
|
|
|
const stats = {
|
|
total: 0,
|
|
skip: 0,
|
|
pass: 0,
|
|
assertions: 0
|
|
}
|
|
const folders = getAllFiles(isXPack ? xPackYamlFolder : yamlFolder)
|
|
.filter(t => !/(README|TODO)/g.test(t))
|
|
// we cluster the array based on the folder names,
|
|
// to provide a better test log output
|
|
.reduce((arr, file) => {
|
|
const path = file.slice(file.indexOf('/rest-api-spec/test'), file.lastIndexOf('/'))
|
|
let inserted = false
|
|
for (let i = 0; i < arr.length; i++) {
|
|
if (arr[i][0].includes(path)) {
|
|
inserted = true
|
|
arr[i].push(file)
|
|
break
|
|
}
|
|
}
|
|
if (!inserted) arr.push([file])
|
|
return arr
|
|
}, [])
|
|
|
|
const totalTime = now()
|
|
for (const folder of folders) {
|
|
// pretty name
|
|
const apiName = folder[0].slice(
|
|
folder[0].indexOf(`${sep}rest-api-spec${sep}test`) + 19,
|
|
folder[0].lastIndexOf(sep)
|
|
)
|
|
|
|
log('Testing ' + apiName.slice(1))
|
|
const apiTime = now()
|
|
|
|
for (const file of folder) {
|
|
const testRunner = build({
|
|
client,
|
|
version,
|
|
isXPack: file.includes('platinum')
|
|
})
|
|
const fileTime = now()
|
|
const data = readFileSync(file, 'utf8')
|
|
// get the test yaml (as object), some file has multiple yaml documents inside,
|
|
// every document is separated by '---', so we split on the separator
|
|
// and then we remove the empty strings, finally we parse them
|
|
const tests = data
|
|
.split('\n---\n')
|
|
.map(s => s.trim())
|
|
// empty strings
|
|
.filter(Boolean)
|
|
.map(parse)
|
|
// null values
|
|
.filter(Boolean)
|
|
|
|
// get setup and teardown if present
|
|
let setupTest = null
|
|
let teardownTest = null
|
|
for (const test of tests) {
|
|
if (test.setup) setupTest = test.setup
|
|
if (test.teardown) teardownTest = test.teardown
|
|
}
|
|
|
|
const cleanPath = file.slice(file.lastIndexOf(apiName))
|
|
log(' ' + cleanPath)
|
|
const junitTestSuite = junitTestSuites.testsuite(apiName.slice(1) + ' - ' + cleanPath)
|
|
|
|
for (const test of tests) {
|
|
const testTime = now()
|
|
const name = Object.keys(test)[0]
|
|
if (name === 'setup' || name === 'teardown') continue
|
|
const junitTestCase = junitTestSuite.testcase(name)
|
|
|
|
stats.total += 1
|
|
if (shouldSkip(isXPack, file, name)) {
|
|
stats.skip += 1
|
|
junitTestCase.skip('This test is in the skip list of the client')
|
|
junitTestCase.end()
|
|
continue
|
|
}
|
|
log(' - ' + name)
|
|
try {
|
|
await testRunner.run(setupTest, test[name], teardownTest, stats, junitTestCase)
|
|
stats.pass += 1
|
|
} catch (err) {
|
|
junitTestCase.failure(err)
|
|
junitTestCase.end()
|
|
junitTestSuite.end()
|
|
junitTestSuites.end()
|
|
generateJunitXmlReport(junit, isXPack ? 'platinum' : 'free')
|
|
console.error(err)
|
|
|
|
if (options.bail) {
|
|
process.exit(1)
|
|
} else {
|
|
continue
|
|
}
|
|
}
|
|
const totalTestTime = now() - testTime
|
|
junitTestCase.end()
|
|
if (totalTestTime > MAX_TEST_TIME) {
|
|
log(' took too long: ' + ms(totalTestTime))
|
|
} else {
|
|
log(' took: ' + ms(totalTestTime))
|
|
}
|
|
}
|
|
junitTestSuite.end()
|
|
const totalFileTime = now() - fileTime
|
|
if (totalFileTime > MAX_FILE_TIME) {
|
|
log(` ${cleanPath} took too long: ` + ms(totalFileTime))
|
|
} else {
|
|
log(` ${cleanPath} took: ` + ms(totalFileTime))
|
|
}
|
|
}
|
|
const totalApiTime = now() - apiTime
|
|
if (totalApiTime > MAX_API_TIME) {
|
|
log(`${apiName} took too long: ` + ms(totalApiTime))
|
|
} else {
|
|
log(`${apiName} took: ` + ms(totalApiTime))
|
|
}
|
|
}
|
|
junitTestSuites.end()
|
|
generateJunitXmlReport(junit, isXPack ? 'platinum' : 'free')
|
|
log(`Total testing time: ${ms(now() - totalTime)}`)
|
|
log(`Test stats:
|
|
- Total: ${stats.total}
|
|
- Skip: ${stats.skip}
|
|
- Pass: ${stats.pass}
|
|
- Assertions: ${stats.assertions}
|
|
`)
|
|
}
|
|
|
|
function log (text) {
|
|
process.stdout.write(text + '\n')
|
|
}
|
|
|
|
function now () {
|
|
const ts = process.hrtime()
|
|
return (ts[0] * 1e3) + (ts[1] / 1e6)
|
|
}
|
|
|
|
function parse (data) {
|
|
let doc
|
|
try {
|
|
doc = yaml.load(data, { schema: yaml.CORE_SCHEMA })
|
|
} catch (err) {
|
|
console.error(err)
|
|
return
|
|
}
|
|
return doc
|
|
}
|
|
|
|
function generateJunitXmlReport (junit, suite) {
|
|
writeFileSync(
|
|
join(__dirname, '..', '..', `${suite}-report-junit.xml`),
|
|
junit.prettyPrint()
|
|
)
|
|
}
|
|
|
|
if (require.main === module) {
|
|
const scheme = process.env.TEST_SUITE === 'platinum' ? 'https' : 'http'
|
|
const node = process.env.TEST_ES_SERVER || `${scheme}://elastic:changeme@localhost:9200`
|
|
const opts = {
|
|
node,
|
|
isXPack: process.env.TEST_SUITE !== 'free'
|
|
}
|
|
runner(opts)
|
|
}
|
|
|
|
const shouldSkip = (isXPack, file, name) => {
|
|
let list = Object.keys(freeSkips)
|
|
for (let i = 0; i < list.length; i++) {
|
|
const freeTest = freeSkips[list[i]]
|
|
for (let j = 0; j < freeTest.length; j++) {
|
|
if (file.endsWith(list[i]) && (name === freeTest[j] || freeTest[j] === '*')) {
|
|
const testName = file.slice(file.indexOf(`${sep}elasticsearch${sep}`)) + ' / ' + name
|
|
log(`Skipping test ${testName} because it is denylisted in the free test suite`)
|
|
return true
|
|
}
|
|
}
|
|
}
|
|
|
|
if (file.includes('x-pack') || isXPack) {
|
|
list = Object.keys(platinumDenyList)
|
|
for (let i = 0; i < list.length; i++) {
|
|
const platTest = platinumDenyList[list[i]]
|
|
for (let j = 0; j < platTest.length; j++) {
|
|
if (file.endsWith(list[i]) && (name === platTest[j] || platTest[j] === '*')) {
|
|
const testName = file.slice(file.indexOf(`${sep}elasticsearch${sep}`)) + ' / ' + name
|
|
log(`Skipping test ${testName} because it is denylisted in the platinum test suite`)
|
|
return true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
const getAllFiles = dir =>
|
|
readdirSync(dir).reduce((files, file) => {
|
|
const name = join(dir, file)
|
|
const isDirectory = statSync(name).isDirectory()
|
|
return isDirectory ? [...files, ...getAllFiles(name)] : [...files, name]
|
|
}, [])
|
|
|
|
module.exports = runner
|