|
| 1 | +/** |
| 2 | + * Copyright (c) Meta Platforms, Inc. and affiliates. |
| 3 | + * |
| 4 | + * This source code is licensed under the MIT license found in the |
| 5 | + * LICENSE file in the root directory of this source tree. |
| 6 | + * |
| 7 | + * @format |
| 8 | + */ |
| 9 | + |
| 10 | +import * as assert from 'assert'; |
| 11 | +import type {SchemaType} from '@react-native/codegen/lib/CodegenSchema'; |
| 12 | +import {TypeScriptParser} from '@react-native/codegen/lib/parsers/typescript/parser'; |
| 13 | + |
| 14 | +test(`@rn/codegen should parse an empty TypeScript module`, () => { |
| 15 | + const tsInput = ` |
| 16 | +import type {TurboModule} from 'react-native/Libraries/TurboModule/RCTExport'; |
| 17 | +import * as TurboModuleRegistry from 'react-native/Libraries/TurboModule/TurboModuleRegistry'; |
| 18 | +
|
| 19 | +export interface Spec extends TurboModule {} |
| 20 | +export default TurboModuleRegistry.getEnforcing<Spec>('SampleTurboModule'); |
| 21 | +`; |
| 22 | + const parser = new TypeScriptParser(); |
| 23 | + const actual = parser.parseString(tsInput, 'SampleTurboModule.ts'); |
| 24 | + const expected: SchemaType = { |
| 25 | + modules: { |
| 26 | + SampleTurboModule: { |
| 27 | + aliasMap: {}, |
| 28 | + enumMap: {}, |
| 29 | + excludedPlatforms: undefined, |
| 30 | + moduleName: 'SampleTurboModule', |
| 31 | + spec: { |
| 32 | + properties: [], |
| 33 | + }, |
| 34 | + type: 'NativeModule', |
| 35 | + }, |
| 36 | + }, |
| 37 | + }; |
| 38 | + assert.deepStrictEqual(actual, expected); |
| 39 | +}); |
| 40 | + |
| 41 | +test(`@rn/codegen should parse an empty TypeScript component`, () => { |
| 42 | + const tsInput = ` |
| 43 | +import type {ViewProps} from 'ViewPropTypes'; |
| 44 | +import type {HostComponent} from 'react-native'; |
| 45 | +
|
| 46 | +const codegenNativeComponent = require('codegenNativeComponent'); |
| 47 | +
|
| 48 | +export interface ModuleProps extends ViewProps {} |
| 49 | +export default codegenNativeComponent<ModuleProps>('Module', { |
| 50 | + interfaceOnly: true, |
| 51 | + paperComponentName: 'RCTModule', |
| 52 | +}) as HostComponent<ModuleProps>; |
| 53 | +`; |
| 54 | + const parser = new TypeScriptParser(); |
| 55 | + const actual = parser.parseString(tsInput, 'SampleNativeComponent.ts'); |
| 56 | + const expected: SchemaType = { |
| 57 | + modules: { |
| 58 | + Module: { |
| 59 | + components: { |
| 60 | + Module: { |
| 61 | + commands: [], |
| 62 | + events: [], |
| 63 | + extendsProps: [ |
| 64 | + { |
| 65 | + knownTypeName: 'ReactNativeCoreViewProps', |
| 66 | + type: 'ReactNativeBuiltInType', |
| 67 | + }, |
| 68 | + ], |
| 69 | + interfaceOnly: true, |
| 70 | + paperComponentName: 'RCTModule', |
| 71 | + props: [], |
| 72 | + }, |
| 73 | + }, |
| 74 | + type: 'Component', |
| 75 | + }, |
| 76 | + }, |
| 77 | + }; |
| 78 | + assert.deepStrictEqual(actual, expected); |
| 79 | +}); |
0 commit comments