403Webshell
Server IP : 172.67.158.161  /  Your IP : 3.144.95.36
Web Server : LiteSpeed
System : Linux business53.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : giankuin ( 1871)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/giankuin/www/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/test/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/giankuin/www/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/test/products.js
/**
 * Internal dependencies
 */
import { getImageSrcFromProduct, getImageIdFromProduct } from '../products';

describe( 'getImageSrcFromProduct', () => {
	test( 'returns first image src', () => {
		const imageSrc = getImageSrcFromProduct( {
			images: [ { src: 'foo.jpg' } ],
		} );

		expect( imageSrc ).toBe( 'foo.jpg' );
	} );

	test( 'returns empty string if no product was provided', () => {
		const imageSrc = getImageSrcFromProduct();

		expect( imageSrc ).toBe( '' );
	} );

	test( 'returns empty string if product is empty', () => {
		const imageSrc = getImageSrcFromProduct( {} );

		expect( imageSrc ).toBe( '' );
	} );

	test( 'returns empty string if product has no images', () => {
		const imageSrc = getImageSrcFromProduct( { images: null } );

		expect( imageSrc ).toBe( '' );
	} );

	test( 'returns empty string if product has 0 images', () => {
		const imageSrc = getImageSrcFromProduct( { images: [] } );

		expect( imageSrc ).toBe( '' );
	} );

	test( 'returns empty string if product image has no src attribute', () => {
		const imageSrc = getImageSrcFromProduct( { images: [ {} ] } );

		expect( imageSrc ).toBe( '' );
	} );
} );

describe( 'getImageIdFromProduct', () => {
	test( 'returns first image id', () => {
		const imageUrl = getImageIdFromProduct( {
			images: [ { id: 123 } ],
		} );

		expect( imageUrl ).toBe( 123 );
	} );

	test( 'returns 0 if no product was provided', () => {
		const imageUrl = getImageIdFromProduct();

		expect( imageUrl ).toBe( 0 );
	} );

	test( 'returns 0 if product is empty', () => {
		const imageUrl = getImageIdFromProduct( {} );

		expect( imageUrl ).toBe( 0 );
	} );

	test( 'returns 0 if product has no images', () => {
		const imageUrl = getImageIdFromProduct( { images: null } );

		expect( imageUrl ).toBe( 0 );
	} );

	test( 'returns 0 if product has 0 images', () => {
		const imageUrl = getImageIdFromProduct( { images: [] } );

		expect( imageUrl ).toBe( 0 );
	} );

	test( 'returns 0 if product image has no src attribute', () => {
		const imageUrl = getImageIdFromProduct( { images: [ {} ] } );

		expect( imageUrl ).toBe( 0 );
	} );
} );

Youez - 2016 - github.com/yon3zu
LinuXploit