Files
react-native/Libraries/NativeComponent/__tests__/StaticViewConfigValidator-test.js
T
Ramanpreet Nara 73b243acbc Refactor: Make StaticViewConfigValidator.validate() output objects
Summary:
## Changes
- StaticViewConfigValidator.validate() now outputs a ValidationOutput object, that contains a Array<Differences>, if invalid
- The Difference type now contains the nativeValue and the staticValue. This makes the validate() function more useful in reconciling ViewConfigs.
- Nothing should change in NativeComponentRegistry.

Changelog: [Internal]

Reviewed By: yungsters

Differential Revision: D32139973

fbshipit-source-id: a9556fa370d2c14f9e5d0540b44824cd61773958
2021-11-09 00:29:13 -08:00

234 lines
4.8 KiB
JavaScript

/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @emails oncall+react_native
* @flow strict
* @format
*/
import * as StaticViewConfigValidator from '../StaticViewConfigValidator';
test('passes for identical configs', () => {
const name = 'RCTView';
const nativeViewConfig = {
bubblingEventTypes: {
topBlur: {
phasedRegistrationNames: {
bubbled: 'onBlur',
captured: 'onBlurCapture',
},
},
topFocus: {
phasedRegistrationNames: {
bubbled: 'onFocus',
captured: 'onFocusCapture',
},
},
},
directEventTypes: {
topLayout: {
registrationName: 'onLayout',
},
},
uiViewClassName: 'RCTView',
validAttributes: {
collapsable: true,
nativeID: true,
style: {
height: true,
width: true,
},
},
};
const staticViewConfig = {
bubblingEventTypes: {
topBlur: {
phasedRegistrationNames: {
bubbled: 'onBlur',
captured: 'onBlurCapture',
},
},
topFocus: {
phasedRegistrationNames: {
bubbled: 'onFocus',
captured: 'onFocusCapture',
},
},
},
directEventTypes: {
topLayout: {
registrationName: 'onLayout',
},
},
uiViewClassName: 'RCTView',
validAttributes: {
collapsable: true,
nativeID: true,
style: {
height: true,
width: true,
},
},
};
const validationResult = StaticViewConfigValidator.validate(
name,
nativeViewConfig,
staticViewConfig,
);
expect(validationResult.type).toBe('valid');
});
test('fails for mismatched names', () => {
const name = 'RCTView';
const nativeViewConfig = {
uiViewClassName: 'RCTView',
validAttributes: {
style: {},
},
};
const staticViewConfig = {
uiViewClassName: 'RCTImage',
validAttributes: {
style: {},
},
};
expectSVCToNotMatchNVC(
name,
nativeViewConfig,
staticViewConfig,
`
StaticViewConfigValidator: Invalid static view config for 'RCTView'.
- 'uiViewClassName' is the wrong value.
`.trimStart(),
);
});
test('fails for unequal attributes', () => {
const name = 'RCTView';
const nativeViewConfig = {
uiViewClassName: 'RCTView',
validAttributes: {
nativeID: true,
style: {},
},
};
const staticViewConfig = {
uiViewClassName: 'RCTView',
validAttributes: {
nativeID: {},
style: {},
},
};
expectSVCToNotMatchNVC(
name,
nativeViewConfig,
staticViewConfig,
`
StaticViewConfigValidator: Invalid static view config for 'RCTView'.
- 'validAttributes.nativeID' is the wrong value.
`.trimStart(),
);
});
test('fails for missing attributes', () => {
const name = 'RCTView';
const nativeViewConfig = {
uiViewClassName: 'RCTView',
validAttributes: {
collapsable: true,
nativeID: true,
style: {
height: true,
width: true,
},
},
};
const staticViewConfig = {
uiViewClassName: 'RCTView',
validAttributes: {
style: {},
},
};
expectSVCToNotMatchNVC(
name,
nativeViewConfig,
staticViewConfig,
`
StaticViewConfigValidator: Invalid static view config for 'RCTView'.
- 'validAttributes.collapsable' is missing.
- 'validAttributes.nativeID' is missing.
- 'validAttributes.style.height' is missing.
- 'validAttributes.style.width' is missing.
`.trimStart(),
);
});
test('fails for unexpected attributes', () => {
const name = 'RCTView';
const nativeViewConfig = {
uiViewClassName: 'RCTView',
validAttributes: {
style: {},
},
};
const staticViewConfig = {
uiViewClassName: 'RCTView',
validAttributes: {
collapsable: true,
nativeID: true,
style: {
height: true,
width: true,
},
},
};
expectSVCToNotMatchNVC(
name,
nativeViewConfig,
staticViewConfig,
`
StaticViewConfigValidator: Invalid static view config for 'RCTView'.
- 'validAttributes.style.height' is present but not expected to be.
- 'validAttributes.style.width' is present but not expected to be.
- 'validAttributes.collapsable' is present but not expected to be.
- 'validAttributes.nativeID' is present but not expected to be.
`.trimStart(),
);
});
function expectSVCToNotMatchNVC(
name,
nativeViewConfig,
staticViewConfig,
message,
) {
const validationResult = StaticViewConfigValidator.validate(
name,
nativeViewConfig,
staticViewConfig,
);
expect(validationResult.type).toBe('invalid');
if (validationResult.type === 'invalid') {
expect(
StaticViewConfigValidator.stringifyValidationResult(
name,
validationResult,
),
).toBe(message);
}
}