Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
/**
* @jest-environment jsdom
*/
// @ts-nocheck - TODO: Fix TypeScript issues
import { render, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import React from 'react';
import { MemoryRouter } from 'react-router';
import CaptureInput from '../capture-input';
const mockedRecordTracksEvent = jest.fn();
jest.mock( '@automattic/calypso-analytics', () => ( {
recordTracksEvent: ( ...args ) => mockedRecordTracksEvent( ...args ),
} ) );
describe( 'CaptureInput', () => {
beforeEach( () => jest.resetAllMocks() );
it( 'captures the site url', async () => {
const onInputEnter = jest.fn();
render(
<MemoryRouter>
<CaptureInput onInputEnter={ onInputEnter } />
</MemoryRouter>
);
await userEvent.type(
screen.getByLabelText( /Enter the URL of the site/ ),
'https://example.wordpress.com'
);
await userEvent.click( screen.getByRole( 'button', { name: /Continue/ } ) );
expect( onInputEnter ).toHaveBeenCalledWith( 'https://example.wordpress.com' );
} );
it( 'shows an custom input label', async () => {
render(
<MemoryRouter>
<CaptureInput onInputEnter={ jest.fn() } label="A custom label text" />
</MemoryRouter>
);
await userEvent.click( screen.getByRole( 'button', { name: /Continue/ } ) );
expect( screen.getByLabelText( /A custom label text/ ) ).toBeInTheDocument();
} );
it( 'only records invalid urls once', async () => {
const onInputEnter = jest.fn();
render(
<MemoryRouter>
<CaptureInput onInputEnter={ onInputEnter } />
</MemoryRouter>
);
// enter an invalid URL
await userEvent.type( screen.getByLabelText( /Enter the URL of the site/ ), 'not a url' );
// try to submit the same value twice
await userEvent.click( screen.getByRole( 'button', { name: /Continue/ } ) );
await userEvent.click( screen.getByRole( 'button', { name: /Continue/ } ) );
// Now, enter a valid URL and confirm we can submit ok
await userEvent.clear( screen.getByLabelText( /Enter the URL of the site/ ) );
await userEvent.type(
screen.getByLabelText( /Enter the URL of the site/ ),
'https://example.wordpress.com'
);
await userEvent.click( screen.getByRole( 'button', { name: /Continue/ } ) );
expect( onInputEnter ).toHaveBeenCalledWith( 'https://example.wordpress.com' );
expect( mockedRecordTracksEvent.mock.calls.length ).toBe( 1 );
} );
it( 'shows a custom CTA label', async () => {
render(
<MemoryRouter>
<CaptureInput onInputEnter={ jest.fn() } label="A custom label text" nextLabelText="XYZ" />
</MemoryRouter>
);
expect( screen.getByRole( 'button', { name: /XYZ/ } ) ).toBeInTheDocument();
} );
} );
describe( 'URL Validation', () => {
it.each( [
{
input: 'myblog',
error:
"Looks like your site address is missing its domain extension. Please try again with something like 'example.com' or 'example.net'.",
},
{
input: 'https://myblog',
error:
"Looks like your site address is missing its domain extension. Please try again with something like 'example.com' or 'example.net'.",
},
{
input: 'user@example.com',
error:
"Looks like you might have added an email address. Please use a URL instead, like 'example.com'.",
},
{
input: 'http://my^blog.com',
error:
'Looks like your URL has some invalid characters (like ~ or ^). Please delete them and try again.',
},
{
input: 'ftp://example.com',
error:
"URLs usually start with http:// or https:// (rather than file:/, ftp://, or similar). Please try again with a URL like 'https://example.com'.",
},
{
input: 'file:///C:/DEVELOPER/index.html',
error:
"URLs usually start with http:// or https:// (rather than file:/, ftp://, or similar). Please try again with a URL like 'https://example.com'.",
},
{
input: 'https://xn--example.com',
error:
"Looks like you’ve added an internationalized domain name. Please try a standard URL instead (like 'example.com').",
},
{
input: 'www.例子.测试',
error:
"Looks like you’ve added an internationalized domain name. Please try a standard URL instead (like 'example.com').",
},
{
input: 'example.com-',
error:
"Please add a valid website address (like 'example.com'). Feel free to copy and paste it in if that helps.",
},
] )( 'shows error message "$error" when input URL is "$input"', async ( { input, error } ) => {
const onInputEnter = jest.fn();
render(
<MemoryRouter>
<CaptureInput onInputEnter={ onInputEnter } />
</MemoryRouter>
);
await userEvent.type( screen.getByLabelText( /Enter the URL of the site/ ), input );
await userEvent.click( screen.getByRole( 'button', { name: /Continue/ } ) );
expect( screen.getByText( error ) ).toBeInTheDocument();
} );
} );