Skip to content

Commit

Permalink
[ML] Anomaly Detection: Fix test to reflect model memory limit change. (
Browse files Browse the repository at this point in the history
#65967)

Adapt jest test mocks to consider update introduced in #65652.
  • Loading branch information
walterra authored May 11, 2020
1 parent af102af commit e148eb4
Showing 1 changed file with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ const callWithRequest: APICaller = (method: string) => {
if (method === 'fieldCaps') {
resolve({ fields: [] });
return;
} else if (method === 'ml.info') {
resolve({
limits: {
effective_max_model_memory_limit: '100MB',
max_model_memory_limit: '1GB',
},
});
}
resolve({});
}) as Promise<any>;
Expand Down Expand Up @@ -291,7 +298,7 @@ describe('ML - validateJob', () => {
});

// Failing https://github.com/elastic/kibana/issues/65865
it.skip('basic validation passes, extended checks return some messages', () => {
it('basic validation passes, extended checks return some messages', () => {
const payload = getBasicPayload();
return validateJob(callWithRequest, payload).then(messages => {
const ids = messages.map(m => m.id);
Expand All @@ -305,7 +312,7 @@ describe('ML - validateJob', () => {
});

// Failing https://github.com/elastic/kibana/issues/65866
it.skip('categorization job using mlcategory passes aggregatable field check', () => {
it('categorization job using mlcategory passes aggregatable field check', () => {
const payload: any = {
job: {
job_id: 'categorization_test',
Expand Down Expand Up @@ -372,7 +379,7 @@ describe('ML - validateJob', () => {
});

// Failing https://github.com/elastic/kibana/issues/65867
it.skip('script field not reported as non aggregatable', () => {
it('script field not reported as non aggregatable', () => {
const payload: any = {
job: {
job_id: 'categorization_test',
Expand Down

0 comments on commit e148eb4

Please sign in to comment.