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

feat: allow checking only host elements or composite Text/TextInput (BREAKING) #143

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/__tests__/to-be-visible.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ describe('.toBeVisible', () => {
expect(() => expect(null).toBeVisible()).toThrowErrorMatchingInlineSnapshot(`
"expect(received).toBeVisible()

received value must be a React Element.
received value must be a host element or composite Text/TextInput element
Received has value: null"
`);
});
Expand Down
6 changes: 3 additions & 3 deletions src/__tests__/to-have-text-content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ describe('.toHaveTextContent', () => {
test('can handle multiple levels with no explicit children prop', () => {
const NoChildren = ({ text }: { text: string }) => <Text>{text}</Text>;
const answer = 'Answer';
const { container } = render(
<View>
const { getByTestId } = render(
<View testID="subject">
<Text>
{answer}
{': '}
Expand All @@ -86,7 +86,7 @@ describe('.toHaveTextContent', () => {
</View>,
);

expect(container).toHaveTextContent(/^Answer: 42$/);
expect(getByTestId('subject')).toHaveTextContent(/^Answer: 42$/);
});

test('throws when no match is found', () => {
Expand Down
72 changes: 57 additions & 15 deletions src/__tests__/utils.ts
Original file line number Diff line number Diff line change
@@ -1,25 +1,67 @@
import { View, Text, TextInput, Pressable, TouchableOpacity } from 'react-native';
import { checkReactElement, isEmpty } from '../utils';

describe('checkReactElement', () => {
test('it does not throw an error for valid native primitives', () => {
expect(() => {
// @ts-expect-error Argument of type '{ type: "text"; }' is not assignable to parameter of type 'ReactTestInstance'. Type '{ type: "text"; }' is missing the following properties from type 'ReactTestInstance': instance, props, parent, children, and 6 more.ts(2345)
checkReactElement({ type: 'Text' }, () => {}, null);
}).not.toThrow();
test('ReactTestInstance does not throw for host elements', () => {
expect(() =>
// @ts-expect-error Passing incorrect Jest Matcher data
checkReactElement({ type: 'View' }, () => {}, {}),
).not.toThrow();
expect(() =>
// @ts-expect-error Passing incorrect Jest Matcher data
checkReactElement({ type: 'TextInput' }, () => {}, {}),
).not.toThrow();
expect(() =>
// @ts-expect-error Passing incorrect Jest Matcher data
checkReactElement({ type: 'View' }, () => {}, {}),
).not.toThrow();
});

test('ReactTestInstance does not throw', () => {
expect(() => {
// @ts-expect-error Argument of type '{ _fiber: {}; }' is not assignable to parameter of type 'ReactTestInstance'. Object literal may only specify known properties, and '_fiber' does not exist in type 'ReactTestInstance'.ts(2345)
checkReactElement({ _fiber: {} }, () => {}, null);
}).not.toThrow();
test('ReactTestInstance does not throw for composite Text elements', () => {
expect(() =>
// @ts-expect-error Passing incorrect Jest Matcher data
checkReactElement({ type: Text }, () => {}, {}),
).not.toThrow();
});

test('it does throw an error for invalid native primitives', () => {
expect(() => {
// @ts-expect-error Argument of type '{ type: "button"; }' is not assignable to parameter of type 'ReactTestInstance'. Type '{ type: "button"; }' is missing the following properties from type 'ReactTestInstance': instance, props, parent, children, and 6 more.ts(2345)
checkReactElement({ type: 'Button' }, () => {}, null);
}).toThrow();
test('ReactTestInstance does not throw for composite TextInput elements', () => {
expect(() =>
// @ts-expect-error Passing incorrect Jest Matcher data
checkReactElement({ type: TextInput }, () => {}, {}),
).not.toThrow();
});

test('it does throw for composite elements', () => {
expect(() =>
// @ts-expect-error Incorrect Test Renderer typings
checkReactElement({ type: View }, () => {}, {}),
).toThrowErrorMatchingInlineSnapshot(`
"expect(received).()

received value must be a host element or composite Text/TextInput element
Received has type: object
Received has value: {"type": [Function Component]}"
`);
expect(() =>
// @ts-expect-error Incorrect Test Renderer typings
checkReactElement({ type: Pressable }, () => {}, {}),
).toThrowErrorMatchingInlineSnapshot(`
"expect(received).()

received value must be a host element or composite Text/TextInput element
Received has type: object
Received has value: {"type": {"$$typeof": Symbol(react.memo), "compare": null, "type": {"$$typeof": Symbol(react.forward_ref), "render": [Function Pressable]}}}"
`);
expect(() =>
// @ts-expect-error Incorrect Test Renderer typings
checkReactElement({ type: TouchableOpacity }, () => {}, {}),
).toThrowErrorMatchingInlineSnapshot(`
"expect(received).()

received value must be a host element or composite Text/TextInput element
Received has type: object
Received has value: {"type": {"$$typeof": Symbol(react.forward_ref), "render": [Function anonymous]}}"
`);
});
});

Expand Down
24 changes: 7 additions & 17 deletions src/utils.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { Text, TextInput } from 'react-native';
import type { ReactTestInstance } from 'react-test-renderer';
import redent from 'redent';
import {
RECEIVED_COLOR as receivedColor,
Expand All @@ -8,23 +10,10 @@ import {
stringify,
} from 'jest-matcher-utils';
import prettyFormat, { plugins } from 'pretty-format';
import type { ReactTestInstance } from 'react-test-renderer';
import { isHostElement } from './component-tree';

const { ReactTestComponent, ReactElement } = plugins;

const VALID_ELEMENTS = [
'Image',
'Text',
'TextInput',
'Modal',
'View',
'RefreshControl',
'ScrollView',
'ActivityIndicator',
'ListView',
'ListViewDataSource',
];

class ReactElementTypeError extends Error {
constructor(received: unknown, matcherFn: jest.CustomMatcher, context: jest.MatcherContext) {
super();
Expand All @@ -44,7 +33,9 @@ class ReactElementTypeError extends Error {
this.message = [
matcherHint(`${context.isNot ? '.not' : ''}.${matcherFn.name}`, 'received', ''),
'',
`${receivedColor('received')} value must be a React Element.`,
`${receivedColor(
'received',
)} value must be a host element or composite Text/TextInput element`,
withType,
].join('\n');
}
Expand All @@ -59,8 +50,7 @@ function checkReactElement(
throw new ReactElementTypeError(element, matcherFn, context);
}

// @ts-expect-error internal _fiber property of ReactTestInstance
if (!element._fiber && !VALID_ELEMENTS.includes(element.type.toString())) {
if (!isHostElement(element) && element.type !== Text && element.type !== TextInput) {
throw new ReactElementTypeError(element, matcherFn, context);
}
}
Expand Down