Skip to content

Commit

Permalink
Fix escaping in action error URL
Browse files Browse the repository at this point in the history
  • Loading branch information
sebmarkbage committed Aug 22, 2023
1 parent 31034b6 commit a3d31b1
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions packages/react-dom/src/__tests__/ReactDOMForm-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -922,4 +922,51 @@ describe('ReactDOMForm', () => {
await act(() => resolveText('Wait'));
assertLog(['Async action finished', 'No pending action']);
});

// @gate enableFormActions
it('should error if submitting a form manually', async () => {
const ref = React.createRef();

let error = null;
let result = null;

function emulateForceSubmit(submitter) {
const form = submitter.form || submitter;
const action =
(submitter && submitter.getAttribute('formaction')) || form.action;
try {
if (!/\s*javascript:/i.test(action)) {
throw new Error('Navigate to: ' + action);
} else {
// eslint-disable-next-line no-new-func
result = Function(action.slice(11))();
}
} catch (x) {
error = x;
}
}

const root = ReactDOMClient.createRoot(container);
await act(async () => {
root.render(
<form
action={() => {}}
ref={ref}
onSubmit={e => {
e.preventDefault();
emulateForceSubmit(e.target);
}}>
<input type="text" name="foo" defaultValue="bar" />
</form>,
);
});

// This submits the form, which gets blocked and then resubmitted. It's a somewhat
// common idiom but we don't support this pattern unless it uses requestSubmit().
await submit(ref.current);
expect(result).toBe(null);
expect(error.message).toContain(
'A React form was unexpectedly submitted. If you called form.submit()',
);
});
});

0 comments on commit a3d31b1

Please sign in to comment.