File size: 11,904 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 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 |
/*
* These tests shouldn't require the jsdom environment,
* but we're waiting for this PR to merge:
* https://github.com/WordPress/gutenberg/pull/20486
*
* @jest-environment jsdom
*/
import { dispatch, select, subscribe } from '@wordpress/data';
import wpcomRequest from 'wpcom-proxy-request';
import { AtomicSoftwareStatus, AtomicSoftwareStatusError, register } from '..';
import {
getAtomicSoftwareStatus,
getAtomicSoftwareError,
getSiteOptions,
getSiteOption,
getBundledPluginSlug,
getSiteTheme,
} from '../selectors';
import { SiteDetails } from '../types';
import type { State } from '../reducer';
jest.mock( 'wpcom-proxy-request', () => ( {
__esModule: true,
default: jest.fn(),
requestAllBlogsAccess: jest.fn( () => Promise.resolve() ),
} ) );
let store: ReturnType< typeof register >;
beforeAll( () => {
store = register( { client_id: '', client_secret: '' } );
} );
beforeEach( () => {
( wpcomRequest as jest.Mock ).mockReset();
dispatch( store ).reset();
} );
describe( 'getBundledPluginSlug', () => {
it( 'retrieves the bundled plugin slug from the store', () => {
const siteSlug = 'test.wordpress.com';
const pluginSlug = 'woocommerce';
const state: State = {
bundledPluginSlug: {
[ siteSlug ]: pluginSlug,
},
};
expect( getBundledPluginSlug( state, siteSlug ) ).toEqual( pluginSlug );
} );
} );
describe( 'getSiteTheme', () => {
it( 'retrieves the site theme from the store', () => {
const siteId = 1234;
const themeSlug = 'tazza';
const state: State = {
siteTheme: {
[ siteId ]: {
id: themeSlug,
},
},
};
expect( getSiteTheme( state, siteId ).id ).toEqual( themeSlug );
} );
} );
describe( 'getSite', () => {
it( 'resolves the state via an API call and caches the resolver on success', async () => {
const slug = 'mytestsite12345.wordpress.com';
const apiResponse = {
ID: 1,
name: 'My test site',
description: '',
URL: 'http://mytestsite12345.wordpress.com',
};
( wpcomRequest as jest.Mock ).mockResolvedValue( apiResponse );
const listenForStateUpdate = () => {
return new Promise( ( resolve ) => {
const unsubscribe = subscribe( () => {
unsubscribe();
resolve();
} );
} );
};
// First call returns undefined
expect( select( store ).getSite( slug ) ).toEqual( undefined );
// In the first state update, the resolver starts resolving
await listenForStateUpdate();
// In the second update, the resolver is finished resolving and we can read the result in state
await listenForStateUpdate();
// By the second call, the resolver will have resolved
expect( select( store ).getSite( slug ) ).toEqual( apiResponse );
await listenForStateUpdate();
// The resolver should now be cached with an `isStarting` value of false
expect( select( 'core/data' ).getIsResolving( store, 'getSite', [ slug ] ) ).toStrictEqual(
false
);
} );
it( 'resolves the state when called with ID', async () => {
const ID = 1;
const apiResponse = {
ID: 1,
name: 'My test site',
description: '',
URL: 'http://mytestsite12345.wordpress.com',
};
( wpcomRequest as jest.Mock ).mockResolvedValue( apiResponse );
const listenForStateUpdate = () => {
return new Promise( ( resolve ) => {
const unsubscribe = subscribe( () => {
unsubscribe();
resolve();
} );
} );
};
// First call returns undefined
expect( select( store ).getSite( ID ) ).toEqual( undefined );
// In first state update, the resolver starts resolving
// In the second update, the resolver is finished and we can read the result in state
await listenForStateUpdate();
await listenForStateUpdate();
expect( select( store ).getSite( ID ) ).toEqual( apiResponse );
} );
it( 'resolves the state when called with secondary wordpress domain', async () => {
const slug = 'mytestsite123456.wordpress.com';
const apiResponse = {
ID: 1,
name: 'My test site',
description: '',
URL: 'http://customdomain.com',
options: {
unmapped_url: 'http://mytestsite123456.wordpress.com',
},
};
( wpcomRequest as jest.Mock ).mockResolvedValue( apiResponse );
const listenForStateUpdate = () => {
return new Promise( ( resolve ) => {
const unsubscribe = subscribe( () => {
unsubscribe();
resolve();
} );
} );
};
// First call returns undefined
expect( select( store ).getSite( slug ) ).toEqual( undefined );
// In first state update, the resolver starts resolving
// In the second update, the resolver is finished and we can read the result in state
await listenForStateUpdate();
await listenForStateUpdate();
expect( select( store ).getSite( slug ) ).toEqual( apiResponse );
} );
it( 'resolves the state via an API call and caches the resolver on fail', async () => {
const slug = 'mytestsite12345.wordpress.com';
const apiResponse = {
status: 404,
error: 'unknown_blog',
message: 'Unknown blog',
};
( wpcomRequest as jest.Mock ).mockRejectedValue( apiResponse );
const listenForStateUpdate = () => {
// The subscribe function in wordpress/data stores only updates when state changes,
// so for this test (where state remains the same), use setTimeout instead.
return new Promise( ( resolve ) => {
setTimeout( () => {
resolve();
}, 0 );
} );
};
// After the first call, the resolver's cache will be valid
expect( select( store ).getSite( slug ) ).toEqual( undefined );
await listenForStateUpdate();
expect( select( 'core/data' ).getIsResolving( store, 'getSite', [ slug ] ) ).toStrictEqual(
false
);
// After the second call, the resolver's cache will still be valid
expect( select( store ).getSite( slug ) ).toEqual( undefined );
await listenForStateUpdate();
expect( select( 'core/data' ).getIsResolving( store, 'getSite', [ slug ] ) ).toStrictEqual(
false
);
} );
} );
describe( 'requiresUpgrade', () => {
it( 'Retrieves an available site feature from the store', async () => {
const siteId = 12345;
const apiResponse = {
URL: 'http://mytestsite12345.wordpress.com',
ID: siteId,
plan: {
features: {
active: [],
available: {
woop: 'This is a test feature',
},
},
},
};
( wpcomRequest as jest.Mock ).mockResolvedValue( apiResponse );
// First call returns undefined
expect( select( store ).getSite( 'plan' ) ).toEqual( undefined );
const listenForStateUpdate = () => {
return new Promise( ( resolve ) => {
const unsubscribe = subscribe( () => {
unsubscribe();
resolve();
} );
} );
};
// In the first state update, the resolver starts resolving
await listenForStateUpdate();
// In the second update, the resolver is finished resolving and we can read the result in state
await listenForStateUpdate();
// Site requires upgrade
expect( select( store ).requiresUpgrade( siteId ) ).toEqual( true );
} );
it( 'Does not requires upgrade', async () => {
const siteId = 12345;
const apiResponse = {
URL: 'http://mytestsite12345.wordpress.com',
ID: siteId,
plan: {
features: {
active: [ 'woop' ],
available: {
woop: 'This is a test feature',
},
},
},
};
( wpcomRequest as jest.Mock ).mockResolvedValue( apiResponse );
// First call returns undefined
expect( select( store ).getSite( 'plan' ) ).toEqual( undefined );
const listenForStateUpdate = () => {
return new Promise( ( resolve ) => {
const unsubscribe = subscribe( () => {
unsubscribe();
resolve();
} );
} );
};
// In the first state update, the resolver starts resolving
await listenForStateUpdate();
// In the second update, the resolver is finished resolving and we can read the result in state
await listenForStateUpdate();
// Site requires upgrade
expect( select( store ).requiresUpgrade( siteId ) ).toEqual( false );
} );
} );
describe( 'getAtomicSoftwareStatus', () => {
it( 'Tries to retrive the Atomic Software Status', async () => {
const siteId = 1234;
const softwareSet = 'woo-on-plans';
const status: AtomicSoftwareStatus = {
blog_id: 123,
software_set: {
test: { path: '/valid_path.php', state: 'activate' },
},
applied: false,
};
const state: State = {
atomicSoftwareStatus: {
[ siteId ]: {
[ softwareSet ]: {
status: status,
error: undefined,
},
},
},
};
// Successfuly returns the status
expect( getAtomicSoftwareStatus( state, siteId, softwareSet ) ).toEqual( status );
// Should return undefined when the software set is not found.
expect( getAtomicSoftwareStatus( state, siteId, 'unknown_software_set' ) ).toEqual( undefined );
// Should return undefined when the site ID is not found
expect( getAtomicSoftwareStatus( state, 123456, softwareSet ) ).toEqual( undefined );
} );
it( 'Fails to retrive the Atomic Software Status', async () => {
const siteId = 1234;
const softwareSet = 'non-existing-software-set';
const error: AtomicSoftwareStatusError = {
name: 'NotFoundError',
status: 404,
message: 'Transfer not found',
code: 'no_transfer_record',
};
const state: State = {
atomicSoftwareStatus: {
[ siteId ]: {
[ softwareSet ]: {
status: undefined,
error: error,
},
},
},
};
// Successfuly returns the status
expect( getAtomicSoftwareError( state, siteId, softwareSet ) ).toEqual( error );
} );
} );
describe( 'getSiteOptions', () => {
const siteId = 1234;
const adminUrl = 'https://test.wordpress.com/wp-admin';
const options = {
admin_url: adminUrl,
};
const site: SiteDetails = {
ID: siteId,
name: 'test',
description: 'test site',
URL: 'https://test.wordpress.com',
launch_status: '',
jetpack: false,
logo: { id: 'logoId', sizes: [ 'small' ], url: 'logoURL' },
options,
capabilities: {
edit_pages: true,
edit_posts: true,
edit_others_posts: true,
edit_others_pages: true,
delete_posts: true,
delete_others_posts: true,
edit_theme_options: true,
edit_users: true,
list_users: true,
manage_categories: true,
manage_options: true,
moderate_comments: true,
activate_wordads: true,
promote_users: true,
publish_posts: true,
upload_files: true,
delete_users: true,
remove_users: true,
own_site: true,
view_stats: true,
activate_plugins: true,
},
};
it( 'Tries to retrive the site options', async () => {
const state: State = {
sites: {
[ siteId ]: site,
},
};
expect( getSiteOptions( state, siteId ) ).toEqual( options );
} );
it( 'Tries to retrive a specific site option', async () => {
const state: State = {
sites: {
[ siteId ]: site,
},
};
expect( getSiteOption( state, siteId, 'admin_url' ) ).toEqual( adminUrl );
} );
} );
describe( 'siteHasFeature', () => {
it( 'Test if site has features', async () => {
const siteId = 924785;
const siteSlug = `http://mytestsite${ siteId }.wordpress.com`;
const apiResponse = {
URL: siteSlug,
ID: siteId,
plan: {
features: {
active: [ 'woop' ],
available: {
woop: 'This is a test feature',
},
},
},
};
( wpcomRequest as jest.Mock ).mockResolvedValue( apiResponse );
const listenForStateUpdate = () => {
return new Promise( ( resolve ) => {
const unsubscribe = subscribe( () => {
unsubscribe();
resolve();
} );
} );
};
// First call returns undefined
expect( select( store ).getSite( siteId ) ).toEqual( undefined );
// In the first state update, the resolver starts resolving
await listenForStateUpdate();
// In the second update, the resolver is finished resolving and we can read the result in state
await listenForStateUpdate();
expect( select( store ).siteHasFeature( siteId, 'woop' ) ).toEqual( true );
expect( select( store ).siteHasFeature( siteId, 'loop' ) ).toEqual( false );
} );
} );
|