Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[7.7] [ML] Functional API test - disable mml value check (#61446) #62233

Merged
merged 1 commit into from
Apr 1, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
* you may not use this file except in compliance with the Elastic License.
*/

import expect from '@kbn/expect';

import { FtrProviderContext } from '../../ftr_provider_context';
import { USER } from '../../../functional/services/machine_learning/security_common';

Expand Down Expand Up @@ -143,13 +141,12 @@ export default ({ getService }: FtrProviderContext) => {
},
expected: {
responseCode: 200,
responseBody: { estimatedModelMemoryLimit: '12MB', modelMemoryLimit: '12MB' },
responseBody: { estimatedModelMemoryLimit: '11MB', modelMemoryLimit: '11MB' },
},
},
];

// failing test, see https://github.com/elastic/kibana/issues/61400
describe.skip('calculate model memory limit', function() {
describe('calculate model memory limit', function() {
before(async () => {
await esArchiver.load('ml/ecommerce');
});
Expand All @@ -160,14 +157,16 @@ export default ({ getService }: FtrProviderContext) => {

for (const testData of testDataList) {
it(`calculates the model memory limit ${testData.testTitleSuffix}`, async () => {
const { body } = await supertest
await supertest
.post('/api/ml/validate/calculate_model_memory_limit')
.auth(testData.user, mlSecurity.getPasswordForUser(testData.user))
.set(COMMON_HEADERS)
.send(testData.requestBody)
.expect(testData.expected.responseCode);

expect(body).to.eql(testData.expected.responseBody);
// More backend changes to the model memory calculation are planned.
// This value check will be re-enabled when the final batch of updates is in.
// expect(body).to.eql(testData.expected.responseBody);
});
}
});
Expand Down