-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ML] Adding tests for ML's field caps endpoint (#104315)
* [ML] Adding tests for ML's field caps endpoint * fixing typos
- Loading branch information
1 parent
04dbcec
commit 3de9e73
Showing
3 changed files
with
90 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
import expect from '@kbn/expect'; | ||
|
||
import { FtrProviderContext } from '../../../ftr_provider_context'; | ||
import { COMMON_REQUEST_HEADERS } from '../../../../functional/services/ml/common_api'; | ||
import { USER } from '../../../../functional/services/ml/security_common'; | ||
|
||
export default ({ getService }: FtrProviderContext) => { | ||
const supertest = getService('supertestWithoutAuth'); | ||
const esArchiver = getService('esArchiver'); | ||
const ml = getService('ml'); | ||
|
||
async function runRequest( | ||
index: string, | ||
fields?: string[] | ||
): Promise<{ indices: string[]; fields: any }> { | ||
const { body } = await supertest | ||
.post(`/api/ml/indices/field_caps`) | ||
.auth(USER.ML_POWERUSER, ml.securityCommon.getPasswordForUser(USER.ML_POWERUSER)) | ||
.set(COMMON_REQUEST_HEADERS) | ||
.send({ index, fields }) | ||
.expect(200); | ||
|
||
return body; | ||
} | ||
|
||
describe('field_caps', () => { | ||
before(async () => { | ||
await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/ml/farequote'); | ||
}); | ||
|
||
after(async () => { | ||
await ml.api.cleanMlIndices(); | ||
}); | ||
|
||
it('selected fields in index', async () => { | ||
const { indices, fields } = await runRequest('ft_farequote', ['airline', 'responsetime']); | ||
expect(indices.length).to.eql( | ||
1, | ||
`Expected number of indices to be 1, but got ${indices.length}` | ||
); | ||
const fieldsLength = Object.keys(fields).length; | ||
expect(fieldsLength).to.eql(2, `Expected number of fields to be 2, but got ${fieldsLength}`); | ||
expect(fields.airline.keyword.type).to.eql('keyword', 'Expected airline type to be keyword'); | ||
expect(fields.responsetime.float.type).to.eql( | ||
'float', | ||
'Expected responsetime type to be float' | ||
); | ||
}); | ||
|
||
it('all fields in index', async () => { | ||
const { indices, fields } = await runRequest('ft_farequote'); | ||
expect(indices.length).to.eql( | ||
1, | ||
`Expected number of indices to be 1, but got ${indices.length}` | ||
); | ||
const fieldsLength = Object.keys(fields).length; | ||
expect(fieldsLength).to.eql( | ||
21, | ||
`Expected number of fields to be 21, but got ${fieldsLength}` | ||
); | ||
}); | ||
}); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
import { FtrProviderContext } from '../../../ftr_provider_context'; | ||
|
||
export default function ({ loadTestFile }: FtrProviderContext) { | ||
describe('system', function () { | ||
loadTestFile(require.resolve('./field_caps')); | ||
}); | ||
} |