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

[Security Solution][Rules] Require all fields to be accounted for in internal schema to response conversion #137628

Merged
Merged
Show file tree
Hide file tree
Changes from 4 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 @@ -5,8 +5,9 @@
* 2.0.
*/

import * as t from 'io-ts';
import type { CreateRulesSchema, SavedQueryCreateSchema } from './rule_schemas';
import { createRulesSchema } from './rule_schemas';
import { createRulesSchema, responseSchema } from './rule_schemas';
import { exactCheck, foldLeftRight, getPaths } from '@kbn/securitysolution-io-ts-utils';
import { pipe } from 'fp-ts/lib/pipeable';
import { left } from 'fp-ts/lib/Either';
Expand All @@ -20,7 +21,7 @@ import {
} from './rule_schemas.mock';
import { getListArrayMock } from '../types/lists.mock';

describe('create rules schema', () => {
describe('rules schema', () => {
test('empty objects do not validate', () => {
const payload = {};

Expand Down Expand Up @@ -1287,4 +1288,208 @@ describe('create rules schema', () => {
expect(getPaths(left(message.errors))).toEqual(['invalid keys "data_view_id"']);
});
});

describe('response', () => {
const testSchema = {
required: {
testRequiredString: t.string,
},
optional: {
testOptionalString: t.string,
},
defaultable: {
testDefaultableString: t.string,
},
};
const schema = responseSchema(testSchema.required, testSchema.optional, testSchema.defaultable);

describe('required fields', () => {
test('should allow required fields with the correct type', () => {
const payload = {
testRequiredString: 'required_string',
testDefaultableString: 'defaultable_string',
};

const decoded = schema.decode(payload);
const checked = exactCheck(payload, decoded);
const message = pipe(checked, foldLeftRight);

expect(getPaths(left(message.errors))).toEqual([]);
expect(message.schema).toEqual(payload);
});

test('should not allow required fields to be undefined', () => {
const payload = {
testRequiredString: undefined,
testDefaultableString: 'defaultable_string',
};

const decoded = schema.decode(payload);
const checked = exactCheck(payload, decoded);
const message = pipe(checked, foldLeftRight);

expect(getPaths(left(message.errors))).toEqual([
'Invalid value "undefined" supplied to "testRequiredString"',
]);
expect(message.schema).toEqual({});
});

test('should not allow required fields to be omitted entirely', () => {
const payload = {
testDefaultableString: 'defaultable_string',
};

const decoded = schema.decode(payload);
const checked = exactCheck(payload, decoded);
const message = pipe(checked, foldLeftRight);

expect(getPaths(left(message.errors))).toEqual([
'Invalid value "undefined" supplied to "testRequiredString"',
]);
expect(message.schema).toEqual({});
});

test('should not allow required fields with an incorrect type', () => {
const payload = {
testRequiredString: 5,
testDefaultableString: 'defaultable_string',
};

const decoded = schema.decode(payload);
const checked = exactCheck(payload, decoded);
const message = pipe(checked, foldLeftRight);

expect(getPaths(left(message.errors))).toEqual([
'Invalid value "5" supplied to "testRequiredString"',
]);
expect(message.schema).toEqual({});
});
});

describe('optional fields', () => {
test('should allow optional fields with the correct type', () => {
const payload: t.TypeOf<typeof schema> = {
testRequiredString: 'required_string',
testOptionalString: 'optional_string',
testDefaultableString: 'defaultable_string',
};

const decoded = schema.decode(payload);
const checked = exactCheck(payload, decoded);
const message = pipe(checked, foldLeftRight);

expect(getPaths(left(message.errors))).toEqual([]);
expect(message.schema).toEqual(payload);
});

test('should allow optional fields to be undefined', () => {
const payload: t.TypeOf<typeof schema> = {
testRequiredString: 'required_string',
testOptionalString: undefined,
testDefaultableString: 'defaultable_string',
};

const decoded = schema.decode(payload);
const checked = exactCheck(payload, decoded);
const message = pipe(checked, foldLeftRight);

expect(getPaths(left(message.errors))).toEqual([]);
expect(message.schema).toEqual(payload);
});

test('should allow optional fields to be omitted entirely', () => {
const payload = {
testRequiredString: 'required_string',
testDefaultableString: 'defaultable_string',
};

const decoded = schema.decode(payload);
const checked = exactCheck(payload, decoded);
const message = pipe(checked, foldLeftRight);

expect(getPaths(left(message.errors))).toEqual([]);
expect(message.schema).toEqual(payload);
});

test('should not allow optional fields with an incorrect type', () => {
const payload = {
testRequiredString: 'required_string',
testOptionalString: 5,
testDefaultableString: 'defaultable_string',
};

const decoded = schema.decode(payload);
const checked = exactCheck(payload, decoded);
const message = pipe(checked, foldLeftRight);

expect(getPaths(left(message.errors))).toEqual([
'Invalid value "5" supplied to "testOptionalString"',
]);
expect(message.schema).toEqual({});
});
});

describe('defaultable fields', () => {
test('should allow defaultable fields with the correct type', () => {
const payload = {
testRequiredString: 'required_string',
testDefaultableString: 'defaultable_string',
};

const decoded = schema.decode(payload);
const checked = exactCheck(payload, decoded);
const message = pipe(checked, foldLeftRight);

expect(getPaths(left(message.errors))).toEqual([]);
expect(message.schema).toEqual(payload);
});

test('should not allow defaultable fields to be undefined', () => {
const payload = {
testRequiredString: 'required_string',
testDefaultableString: undefined,
};

const decoded = schema.decode(payload);
const checked = exactCheck(payload, decoded);
const message = pipe(checked, foldLeftRight);

expect(getPaths(left(message.errors))).toEqual([
'Invalid value "undefined" supplied to "testDefaultableString"',
]);
expect(message.schema).toEqual({});
});

test('should allow defaultable fields to be omitted entirely', () => {
const payload = {
testRequiredString: 'required_string',
};

const decoded = schema.decode(payload);
const checked = exactCheck(payload, decoded);
const message = pipe(checked, foldLeftRight);

expect(getPaths(left(message.errors))).toEqual([
'Invalid value "undefined" supplied to "testDefaultableString"',
]);
expect(message.schema).toEqual({});
});

test('should not allow defaultable fields with an incorrect type', () => {
const payload = {
testRequiredString: 'required_string',
testDefaultableString: 5,
};

const decoded = schema.decode(payload);
const checked = exactCheck(payload, decoded);
const message = pipe(checked, foldLeftRight);

expect(getPaths(left(message.errors))).toEqual([
'Invalid value "5" supplied to "testDefaultableString"',
]);
expect(message.schema).toEqual({});
});
});
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,11 @@ const patchSchema = <
]);
};

const responseSchema = <
type OrUndefined<P extends t.Props> = {
[K in keyof P]: P[K] | t.UndefinedC;
};

export const responseSchema = <
Required extends t.Props,
Optional extends t.Props,
Defaultable extends t.Props
Expand All @@ -119,9 +123,19 @@ const responseSchema = <
optionalFields: Optional,
defaultableFields: Defaultable
) => {
// This bit of logic is to force all fields to be accounted for in conversions from the internal
// rule schema to the response schema. Rather than use `t.partial`, which makes each field optional,
// we make each field required but possibly undefined. The result is that if a field is forgotten in
// the conversion from internal schema to response schema TS will report an error. If we just used t.partial
// instead, then optional fields can be accidentally omitted from the conversion - and any actual values
// in those fields internally will be stripped in the response.
const optionalWithUndefined = Object.keys(optionalFields).reduce<t.Props>((acc, key) => {
acc[key] = t.union([optionalFields[key], t.undefined]);
return acc;
}, {}) as OrUndefined<Optional>;
return t.intersection([
t.exact(t.type(requiredFields)),
t.exact(t.partial(optionalFields)),
t.exact(t.type(optionalWithUndefined)),
t.exact(t.type(defaultableFields)),
]);
};
Expand Down