Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
/**
* @jest-environment jsdom
*/
// @ts-nocheck - TODO: Fix TypeScript issues
import page from '@automattic/calypso-router';
import { render, screen } from '@testing-library/react';
import React from 'react';
import { UserProfile, UserProfileProps } from '../index';
jest.mock( '@automattic/calypso-router', () => ( {
replace: jest.fn(),
current: '/reader/users/testuser',
} ) );
jest.mock( 'calypso/reader/user-profile/components/user-profile-header', () => () => (
<div data-testid="user-profile-header">User Profile Header</div>
) );
jest.mock( 'calypso/reader/user-profile/views/posts', () => () => (
<div data-testid="user-posts">User Posts</div>
) );
jest.mock( 'calypso/reader/user-profile/views/lists', () => () => (
<div data-testid="user-lists">User Lists</div>
) );
jest.mock( 'calypso/reader/user-profile/views/recommended-blogs', () => () => (
<div data-testid="user-recommended-blogs">User Recommended Blogs</div>
) );
jest.mock( 'calypso/reader/components/back-button', () => () => (
<button data-testid="back-button">Back</button>
) );
jest.mock( 'calypso/components/empty-content', () => ( { title, line, action } ) => (
<div data-testid="empty-content">
<h2>{ title }</h2>
<p>{ line }</p>
<button>{ action }</button>
</div>
) );
describe( 'UserProfile', () => {
const mockRequestUser = jest.fn().mockResolvedValue( undefined );
const defaultProps: UserProfileProps = {
userLogin: 'testuser',
userId: '',
path: '/reader/users/testuser',
requestUser: mockRequestUser,
user: undefined,
isLoading: false,
view: 'posts',
};
beforeEach( () => {
// Reset mock function calls between tests
jest.clearAllMocks();
} );
test( 'should render empty content when user is not found', () => {
render( <UserProfile { ...defaultProps } /> );
expect( screen.getByTestId( 'empty-content' ) ).toBeInTheDocument();
expect( mockRequestUser ).toHaveBeenCalledWith( 'testuser' );
} );
test( 'should render user profile when user is available', () => {
const user = {
ID: 123,
user_login: 'testuser',
display_name: 'Test User',
avatar_URL: 'https://example.com/avatar.jpg',
};
render( <UserProfile { ...defaultProps } user={ user } /> );
expect( screen.getByTestId( 'user-profile-header' ) ).toBeInTheDocument();
expect( screen.getByTestId( 'user-posts' ) ).toBeInTheDocument();
} );
test( 'should render lists view when view is lists', () => {
const user = {
ID: 123,
user_login: 'testuser',
display_name: 'Test User',
avatar_URL: 'https://example.com/avatar.jpg',
};
render(
<UserProfile
{ ...defaultProps }
user={ user }
view="lists"
path="/reader/users/testuser/lists"
/>
);
expect( screen.getByTestId( 'user-profile-header' ) ).toBeInTheDocument();
expect( screen.getByTestId( 'user-lists' ) ).toBeInTheDocument();
} );
test( 'should render recommended-blogs view when view is recommended-blogs', () => {
const user = {
ID: 123,
user_login: 'testuser',
display_name: 'Test User',
avatar_URL: 'https://example.com/avatar.jpg',
};
render(
<UserProfile
{ ...defaultProps }
user={ user }
view="recommended-blogs"
path="/reader/users/testuser/recommended-blogs"
/>
);
expect( screen.getByTestId( 'user-profile-header' ) ).toBeInTheDocument();
expect( screen.getByTestId( 'user-recommended-blogs' ) ).toBeInTheDocument();
} );
test( 'should not show content when isLoading is true', () => {
render( <UserProfile { ...defaultProps } isLoading /> );
expect( screen.queryByTestId( 'empty-content' ) ).not.toBeInTheDocument();
expect( screen.queryByTestId( 'user-profile-header' ) ).not.toBeInTheDocument();
} );
test( 'should redirect from user ID path to user login path when user is loaded', () => {
const user = {
ID: 123,
user_login: 'testuser',
display_name: 'Test User',
avatar_URL: 'https://example.com/avatar.jpg',
};
render( <UserProfile { ...defaultProps } user={ user } path="/reader/users/id/123" /> );
// Verify the redirect was called with the correct path
expect( page.replace ).toHaveBeenCalledWith( '/reader/users/testuser' );
} );
test( 'should request user data with both login and ID when provided', () => {
render( <UserProfile { ...defaultProps } userLogin="testuser" userId="123" /> );
// Verify both API calls were made
expect( mockRequestUser ).toHaveBeenCalledWith( 'testuser' );
expect( mockRequestUser ).toHaveBeenCalledWith( '123', true );
} );
} );