File size: 4,294 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | import { isItemSelected, itemLinkMatches } from '../utils';
describe( 'MySitesSidebar', () => {
describe( '#itemLinkMatches()', () => {
test( "should return false if a path's first fragment doesn't match the current path", () => {
const isSelected = itemLinkMatches(
'/pages/example.wordpress.com',
'/posts/example.wordpress.com'
);
expect( isSelected ).toBe( false );
} );
test( "should return true if a path's first fragment does match the current path", () => {
const isSelected = itemLinkMatches(
'/pages/example.wordpress.com',
'/pages/test/example.wordpress.com'
);
expect( isSelected ).toBe( true );
} );
test( 'should return true for jetpack types', () => {
const isSelected = itemLinkMatches(
'/types/jetpack-testimonial',
'/types/jetpack-testimonial/test'
);
expect( isSelected ).toBe( true );
} );
test( 'should return true if one of the paths is a prefix of the current path and separated by search query', () => {
const isSelected = itemLinkMatches( '/posts', '/posts?s=search' );
expect( isSelected ).toBe( true );
} );
test( 'should return false if a fragment matches but not in position (1)', () => {
const isSelected = itemLinkMatches(
'/pages/example.wordpress.com',
'/test/pages/example.wordpress.com'
);
expect( isSelected ).toBe( false );
} );
test( '#itemLinkMatches() compares 2 part path with 1 part path without error', () => {
const isSelected = itemLinkMatches( '/stats/day', '/plugins' );
expect( isSelected ).toBe( false );
} );
} );
describe( '#itemLinkMatches() edge cases', () => {
test( 'clicking a settings panel should not activate the posts menu', () => {
const isSelected = itemLinkMatches(
'/settings/taxonomies/category/example.wordpress.com',
'/settings/discussion/cpapfree.wordpress.com'
);
expect( isSelected ).toBe( false );
} );
test( 'clicking a marketing panel should activate the marketing/tools menu', () => {
const isSelected = itemLinkMatches(
'/marketing/tools/example.wordpress.com',
'/marketing/traffic/cpapfree.wordpress.com'
);
expect( isSelected ).toBe( true );
} );
} );
describe( '#isItemSelected()', () => {
const site = { ID: 1234 };
describe( 'Sites', () => {
const menuItem = { url: '/sites', slug: 'sites' };
const path = '/overview/test.wordpress.com';
test( 'should return false when `site` is not set', () => {
const isSelected = isItemSelected( menuItem, path, null );
expect( isSelected ).toBe( false );
} );
test( 'should not highlight Sites menu when viewing a domain', () => {
const isSelected = isItemSelected( menuItem, '/domains/manage', site );
expect( isSelected ).toBe( false );
} );
test( 'should not highlight Sites menu when the site is a P2', () => {
const isSelected = isItemSelected( menuItem, path, site, true );
expect( isSelected ).toBe( false );
} );
test( 'should highlight Sites menu when the site is not a P2', () => {
const isSelected = isItemSelected( menuItem, path, site, false );
expect( isSelected ).toBe( true );
} );
} );
describe( 'P2s', () => {
const menuItem = { url: '/p2s', slug: 'sites-p2' };
const path = '/hosting-features/test.wordpress.com/test.wordpress.com';
test( 'should not highlight P2s menu when viewing a domain', () => {
const isSelected = isItemSelected( menuItem, '/domains/manage', site );
expect( isSelected ).toBe( false );
} );
test( 'should not highlight P2s menu when the site is not a P2', () => {
const isSelected = isItemSelected( menuItem, path, site, false );
expect( isSelected ).toBe( false );
} );
test( 'should highlight P2s menu when the site is a P2', () => {
const isSelected = isItemSelected( menuItem, path, site, true );
expect( isSelected ).toBe( true );
} );
} );
describe( 'Domains', () => {
const menuItem = { url: '/domains/manage', slug: 'domains' };
const path = '/domains/manage/all/overview/test.wordpress.com/test.wordpress.com';
test( 'should highlight Domains menu when viewing a domain', () => {
const isSelected = isItemSelected( menuItem, path, site );
expect( isSelected ).toBe( true );
} );
} );
} );
} );
|