File size: 7,933 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 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
/**
* @jest-environment jsdom
*/
import config from '@automattic/calypso-config';
import { createStore } from 'redux';
import {
logmeinUrl,
attachLogmein,
logmeinOnClick,
logmeinOnRightClick,
setLogmeinReduxStore,
} from '../';
jest.mock( '@automattic/calypso-config', () => {
const fn = () => '';
fn.isEnabled = jest.fn( () => true );
return fn;
} );
const store = createStore( ( state ) => state, {
sites: {
items: [
{
URL: 'https://test.blog',
options: {
is_mapped_domain: true,
unmapped_url: 'https://example.wordpress.com',
},
},
],
},
currentUser: {
id: 'not null',
},
} );
describe( 'logmein', () => {
beforeEach( () => {
config.isEnabled.mockImplementation( () => true );
setLogmeinReduxStore( store );
} );
describe( 'logmeinUrl', () => {
it( 'appends logmein', () => {
expect( logmeinUrl( 'https://test.blog' ) ).toBe( 'https://test.blog/?logmein=direct' );
} );
it( 'respects protocol', () => {
expect( logmeinUrl( 'http://test.blog' ) ).toBe( 'http://test.blog/?logmein=direct' );
} );
it( 'works with other params', () => {
expect( logmeinUrl( 'https://test.blog/?test=1' ) ).toBe(
'https://test.blog/?test=1&logmein=direct'
);
} );
it( 'works with paths', () => {
expect( logmeinUrl( 'https://test.blog/path/abc/?test=1' ) ).toBe(
'https://test.blog/path/abc/?test=1&logmein=direct'
);
} );
it( 'overrides existing logmein', () => {
expect( logmeinUrl( 'https://test.blog/path/abc/?logmein=0&test=1' ) ).toBe(
'https://test.blog/path/abc/?logmein=direct&test=1'
);
} );
it( 'ignores domains not in the users site list', () => {
expect( logmeinUrl( 'https://not-test.blog' ) ).toBe( 'https://not-test.blog' );
} );
it( 'ignores all when allow list is empty', () => {
const emptySitesStore = createStore( ( state ) => state, {
sites: {
items: [],
},
currentUser: {
id: 'not null',
},
} );
setLogmeinReduxStore( emptySitesStore );
expect( logmeinUrl( 'https://test.blog' ) ).toBe( 'https://test.blog' );
} );
it( 'fallsback to url input when not enabled', () => {
config.isEnabled.mockImplementation( () => false );
expect( logmeinUrl( 'https://test.blog' ) ).toBe( 'https://test.blog' );
} );
it( 'fallsback to url input when not logged in', () => {
const loggedOutStore = createStore( ( state ) => state, {
sites: {
items: [
{
URL: 'https://test.blog',
options: {
is_mapped_domain: true,
unmapped_url: 'https://example.wordpress.com',
},
},
],
},
currentUser: {
id: null, // !== null under test
},
} );
setLogmeinReduxStore( loggedOutStore );
expect( logmeinUrl( 'https://test.blog' ) ).toBe( 'https://test.blog' );
} );
it( 'fallsback on url input when given invalid urls', () => {
expect( logmeinUrl( undefined ) ).toBe( undefined );
} );
it( 'unmapped url usage is not replaced with mapped urls when possible', () => {
expect( logmeinUrl( 'https://example.wordpress.com' ) ).not.toBe(
'https://test.blog/?logmein=direct'
);
expect( logmeinUrl( 'https://example.wordpress.com' ) ).toBe(
'https://example.wordpress.com'
);
} );
it( 'fallback on url input when given a nonapplicable domain', () => {
const nonapplicableStore = createStore( ( state ) => state, {
sites: {
items: [
{
URL: 'https://not.mapped',
options: {
is_mapped_domain: false,
unmapped_url: 'https://example.wordpress.com',
},
},
{
URL: 'https://is.vip',
is_vip: true,
options: {
is_mapped_domain: true,
unmapped_url: 'https://example.wordpress.com',
},
},
{
URL: 'https://jetpack.domain',
jetpack: true,
options: {
is_mapped_domain: true,
unmapped_url: 'https://example.wordpress.com',
},
},
{
URL: 'https://atomic.domain',
options: {
is_automated_transfer: true,
is_mapped_domain: true,
unmapped_url: 'https://example.wordpress.com',
},
},
{
URL: 'https://redirecting.domain',
options: {
is_redirect: true,
is_mapped_domain: true,
unmapped_url: 'https://example.wordpress.com',
},
},
{
URL: 'https://wpcom.store',
options: {
is_wpcom_store: true,
is_mapped_domain: true,
unmapped_url: 'https://example.wordpress.com',
},
},
],
},
currentUser: {
id: 'not null',
},
} );
setLogmeinReduxStore( nonapplicableStore );
expect( logmeinUrl( 'https://unknown.blog' ) ).toBe( 'https://unknown.blog' );
expect( logmeinUrl( 'https://not.mapped' ) ).toBe( 'https://not.mapped' );
expect( logmeinUrl( 'https://is.vip' ) ).toBe( 'https://is.vip' );
expect( logmeinUrl( 'https://jetpack.domain' ) ).toBe( 'https://jetpack.domain' );
expect( logmeinUrl( 'https://atomic.domain' ) ).toBe( 'https://atomic.domain' );
expect( logmeinUrl( 'https://redirecting.domain' ) ).toBe( 'https://redirecting.domain' );
expect( logmeinUrl( 'https://wpcom.store' ) ).toBe( 'https://wpcom.store' );
} );
it( 'fallsback on url input when given relative urls', () => {
expect( logmeinUrl( '/relative' ) ).toBe( '/relative' );
// Making a trade off here, protocol-less urls are treated as relative.
// Relatively safely support can be added for these if they're are prevelant but I don't think they are.
expect( logmeinUrl( 'test.blog' ) ).toBe( 'test.blog' );
} );
it( 'sets logmein=direct param', () => {
expect( logmeinUrl( 'https://test.blog' ) ).toBe( 'https://test.blog/?logmein=direct' );
} );
} );
describe( 'attachLogmein', () => {
const handlers = [];
jest.spyOn( document, 'addEventListener' ).mockImplementation( ( event ) => {
handlers.push( event );
return true;
} );
it( 'attaches logmeinOnClick methods', () => {
attachLogmein( store );
expect( handlers ).toEqual( [ 'click', 'auxclick', 'contextmenu' ] );
} );
} );
describe( 'logmeinOnClick', () => {
it( 'updates closest links href to the new url', () => {
const link = document.createElement( 'a' );
link.href = 'https://test.blog';
logmeinOnClick( { target: link } );
expect( link.href ).toEqual( 'https://test.blog/?logmein=direct' );
} );
it( 'only updates once per domain', () => {
const repeatstore = createStore( ( state ) => state, {
sites: {
items: [
{
URL: 'https://repeat.blog',
options: {
is_mapped_domain: true,
unmapped_url: 'https://example.wordpress.com',
},
},
],
},
currentUser: {
id: 'not null',
},
} );
setLogmeinReduxStore( repeatstore );
const link = document.createElement( 'a' );
link.href = 'https://repeat.blog/path/one';
logmeinOnClick( { target: link } );
expect( link.href ).toEqual( 'https://repeat.blog/path/one?logmein=direct' );
link.href = 'https://repeat.blog/path/two';
logmeinOnClick( { target: link } );
// Link should only change on the first call against a host (path is irrelevant)
expect( link.href ).toEqual( 'https://repeat.blog/path/two' );
} );
} );
describe( 'logmeinOnRightClick', () => {
it( 'updates closest links href to the new url', () => {
const link = document.createElement( 'a' );
link.href = 'https://test.blog';
logmeinOnRightClick( { target: link } );
expect( link.href ).toEqual( 'https://test.blog/?logmein=direct' );
link.href = 'https://test.blog';
logmeinOnRightClick( { target: link } );
expect( link.href ).toEqual( 'https://test.blog/?logmein=direct' );
link.href = 'https://test.blog';
logmeinOnRightClick( { target: link } );
expect( link.href ).toEqual( 'https://test.blog/?logmein=direct' );
} );
} );
} );
|