-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update painless_lab to use new es-js client
- Loading branch information
1 parent
e2fc156
commit 41b5f53
Showing
6 changed files
with
87 additions
and
13 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
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
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,13 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License; | ||
* you may not use this file except in compliance with the Elastic License. | ||
*/ | ||
|
||
import { FtrProviderContext } from '../../ftr_provider_context'; | ||
|
||
export default function ({ loadTestFile }: FtrProviderContext) { | ||
describe('Painless Lab', () => { | ||
loadTestFile(require.resolve('./painless_lab')); | ||
}); | ||
} |
49 changes: 49 additions & 0 deletions
49
x-pack/test/api_integration/apis/painless_lab/painless_lab.ts
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,49 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License; | ||
* you may not use this file except in compliance with the Elastic License. | ||
*/ | ||
|
||
import expect from '@kbn/expect'; | ||
import { FtrProviderContext } from '../../ftr_provider_context'; | ||
|
||
const API_BASE_PATH = '/api/painless_lab'; | ||
|
||
export default function ({ getService }: FtrProviderContext) { | ||
const supertest = getService('supertest'); | ||
|
||
describe('Painless Lab', function () { | ||
describe('Execute', () => { | ||
it('should execute a valid painless script', async () => { | ||
const script = | ||
'"{\\n \\"script\\": {\\n \\"source\\": \\"return true;\\",\\n \\"params\\": {\\n \\"string_parameter\\": \\"string value\\",\\n \\"number_parameter\\": 1.5,\\n \\"boolean_parameter\\": true\\n}\\n }\\n}"'; | ||
|
||
const { body } = await supertest | ||
.post(`${API_BASE_PATH}/execute`) | ||
.set('kbn-xsrf', 'xxx') | ||
.set('Content-Type', 'application/json;charset=UTF-8') | ||
.send(script) | ||
.expect(200); | ||
|
||
expect(body).to.eql({ | ||
result: 'true', | ||
}); | ||
}); | ||
|
||
it('should return error response for invalid painless script', async () => { | ||
const invalidScript = | ||
'"{\\n \\"script\\": {\\n \\"source\\": \\"foobar\\",\\n \\"params\\": {\\n \\"string_parameter\\": \\"string value\\",\\n \\"number_parameter\\": 1.5,\\n \\"boolean_parameter\\": true\\n}\\n }\\n}"'; | ||
|
||
const { body } = await supertest | ||
.post(`${API_BASE_PATH}/execute`) | ||
.set('kbn-xsrf', 'xxx') | ||
.set('Content-Type', 'application/json;charset=UTF-8') | ||
.send(invalidScript) | ||
.expect(200); | ||
|
||
expect(body.error).to.not.be(undefined); | ||
expect(body.error.reason).to.eql('compile error'); | ||
}); | ||
}); | ||
}); | ||
} |