woocommerce/plugins/woocommerce-admin/client/lib/sanitize-html/test/index.js

34 lines
857 B
JavaScript
Raw Normal View History

2018-10-16 22:54:33 +00:00
/**
* @format
* @jest-environment jsdom
*/
/**
* External dependencies
*/
import dompurify from 'dompurify';
/**
* Internal dependencies
*/
import sanitizeHtml, { ALLOWED_TAGS, ALLOWED_ATTR } from '../../sanitize-html';
describe( 'sanitizeHtml', () => {
/* eslint-disable quotes */
const html = `<html><body><a href="#" malformed="attribute">Link</a></body></html>`;
/* eslint-enable quotes */
test( 'should remove any html tags and attributes which are not allowed', () => {
expect( sanitizeHtml( html ) ).toEqual( {
__html: '<a href="#">Link</a>',
} );
} );
test( 'should call dompurify.sanitize with list of allowed tags and attributes', () => {
const sanitizeMock = jest.spyOn( dompurify, 'sanitize' );
sanitizeHtml( html );
expect( sanitizeMock ).toHaveBeenCalledWith( html, { ALLOWED_ATTR, ALLOWED_TAGS } );
} );
} );