Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
/**
* @jest-environment jsdom
*/
import { isEnabled } from '@automattic/calypso-config';
import pageLibrary from '@automattic/calypso-router';
import { waitFor } from '@testing-library/dom';
import initRootSection from '../root';
function initRouter( { state }: { state: any } ) {
const dispatch = jest.fn();
const getState = jest.fn( () => state );
const page = pageLibrary.create();
page( '*', ( context, next ) => {
context.store = { dispatch, getState };
next();
} );
initRootSection( null, page );
page.start();
return { dispatch, getState, page };
}
describe( 'Logged Out Landing Page', () => {
test( 'logged out goes to devdocs', async () => {
// This is the behaviour only in non-production environments
expect( isEnabled( 'devdocs/redirect-loggedout-homepage' ) ).toBeTruthy();
const state = { currentUser: { id: null } };
const { page } = initRouter( { state } );
page( '/' );
await waitFor( () => expect( page.current ).toBe( '/devdocs/start' ) );
} );
} );
describe( 'Logged In Landing Page', () => {
test( 'user with no sites goes to Sites Dashboard', async () => {
const state = { currentUser: { id: 1 }, sites: { items: {} }, ui: {} };
const { page } = initRouter( { state } );
page( '/' );
await waitFor( () => expect( page.current ).toBe( '/sites' ) );
} );
test( 'user with a primary site but no permissions goes to day stats', async () => {
const state = {
currentUser: { id: 1, capabilities: { 1: {} }, user: { primary_blog: 1 } },
ui: {},
sites: {
items: {
1: {
ID: 1,
URL: 'https://test.wordpress.com',
},
},
},
};
const { page } = initRouter( { state } );
page( '/' );
await waitFor( () => expect( page.current ).toBe( '/stats/day/test.wordpress.com' ) );
} );
test( 'user with a primary site and edit permissions goes to My Home', async () => {
const state = {
currentUser: { id: 1, capabilities: { 1: { edit_posts: true } }, user: { primary_blog: 1 } },
ui: {},
sites: {
items: {
1: {
ID: 1,
URL: 'https://test.wordpress.com',
},
},
},
};
const { page } = initRouter( { state } );
page( '/' );
await waitFor( () => expect( page.current ).toBe( '/home/test.wordpress.com' ) );
} );
test( 'user with a Jetpack site set as their primary site goes to day stats', async () => {
const state = {
currentUser: { id: 1, capabilities: { 1: { edit_posts: true } }, user: { primary_blog: 1 } },
ui: {},
sites: {
items: {
1: {
ID: 1,
URL: 'https://test.jurassic.ninja',
jetpack: true,
},
},
},
};
const { page } = initRouter( { state } );
page( '/' );
await waitFor( () => expect( page.current ).toBe( '/stats/day/test.jurassic.ninja' ) );
} );
test( 'user who opts in goes to sites page', async () => {
const state = {
currentUser: {
id: 1,
capabilities: { 1: { edit_posts: true } },
user: { primary_blog: 1, site_count: 2 },
},
preferences: {
localValues: {
'sites-landing-page': { useSitesAsLandingPage: true, updatedAt: 1111 },
'reader-landing-page': { useReaderAsLandingPage: false, updatedAt: 1111 },
},
},
ui: {},
sites: {
items: {
1: {
ID: 1,
URL: 'https://test.wordpress.com',
},
2: {
ID: 2,
URL: 'https://test.jurassic.ninja',
jetpack: true,
},
},
},
};
const { page } = initRouter( { state } );
page( '/' );
await waitFor( () => expect( page.current ).toBe( '/sites' ) );
} );
test( 'user who opts in goes to reader page', async () => {
const state = {
currentUser: {
id: 1,
capabilities: { 1: { edit_posts: true } },
user: { primary_blog: 1, site_count: 2 },
},
preferences: {
localValues: {
'sites-landing-page': { useSitesAsLandingPage: false, updatedAt: 1111 },
'reader-landing-page': { useReaderAsLandingPage: true, updatedAt: 1111 },
},
},
ui: {},
sites: {
items: {
1: {
ID: 1,
URL: 'https://test.wordpress.com',
},
2: {
ID: 2,
URL: 'https://test.jurassic.ninja',
jetpack: true,
},
},
},
};
const { page } = initRouter( { state } );
page( '/' );
await waitFor( () => expect( page.current ).toBe( '/reader' ) );
} );
test( 'user with a selected site goes to My Home for Default Style interface', async () => {
const state = {
currentUser: {
id: 1,
capabilities: { 1: { edit_posts: true }, 2: { edit_posts: true } },
user: { primary_blog: 1 },
},
ui: { selectedSiteId: 2 },
sites: {
items: {
1: {
ID: 1,
URL: 'https://test.wordpress.com',
},
2: {
ID: 2,
URL: 'https://selected.wordpress.com',
options: { wpcom_admin_interface: 'calypso' },
},
},
},
};
const { page } = initRouter( { state } );
page( '/' );
await waitFor( () => expect( page.current ).toBe( '/home/selected.wordpress.com' ) );
} );
test( 'user with a selected site goes to WP Admin Dashboard for Classic Style interface', async () => {
const state = {
currentUser: {
id: 1,
capabilities: { 1: { edit_posts: true } },
user: { primary_blog: 1 },
},
ui: { selectedSiteId: 1 },
sites: {
items: {
1: {
ID: 1,
URL: 'https://test.wordpress.com',
options: {
wpcom_admin_interface: 'wp-admin',
admin_url: 'https://test.wordpress.com/wp-admin/',
},
},
},
},
};
const { page } = initRouter( { state } );
Object.defineProperty( window, 'location', {
value: {
assign: jest.fn(),
},
} );
page( '/' );
await waitFor( () => {
expect( window.location.assign ).toHaveBeenCalledWith(
'https://test.wordpress.com/wp-admin/'
);
} );
} );
} );