import { isArray, isFunction, isHTMLElement, isNull, isObject, isString, isUndefined, } from './type'; describe( 'Type methods', () => { describe( 'isObject', () => { test( 'can return `true` if a subject is an object.', () => { [ {}, { a: 1 }, new Date() ].forEach( subject => { expect( isObject( subject ) ).toBe( true ); } ); } ); test( 'should return `false` for other subjects.', () => { [ 1, 'a', true, undefined, null, NaN ].forEach( subject => { expect( isObject( subject ) ).toBe( false ); } ); } ); } ); describe( 'isArray', () => { test( 'can return `true` if a subject is an array.', () => { [ [], [ 1 ], new Array( 1 ) ].forEach( subject => { expect( isArray( subject ) ).toBe( true ); } ); } ); test( 'should return `false` for other subjects.', () => { [ 1, 'a', true, undefined, null, { length: 1 }, { a: 1 }, NaN ].forEach( subject => { expect( isArray( subject ) ).toBe( false ); } ); } ); } ); describe( 'isFunction', () => { test( 'can return `true` if a subject is a function.', () => { [ () => 1, isString, Date ].forEach( subject => { expect( isFunction( subject ) ).toBe( true ); } ); } ); test( 'should return `false` for other subjects.', () => { [ 1, 'a', true, undefined, null, [ 1 ], { a: 1 }, NaN ].forEach( subject => { expect( isFunction( subject ) ).toBe( false ); } ); } ); } ); describe( 'isString', () => { test( 'can return `true` if a subject is a string.', () => { [ '1', String( 1 ) ].forEach( subject => { expect( isString( subject ) ).toBe( true ); } ); } ); test( 'should return `false` for other subjects.', () => { [ 1, true, undefined, null, [ 1 ], { a: 1 }, NaN ].forEach( subject => { expect( isString( subject ) ).toBe( false ); } ); } ); } ); describe( 'isUndefined', () => { test( 'can return `true` if a subject is `undefined`.', () => { expect( isUndefined( undefined ) ).toBe( true ); } ); test( 'should return `false` for other subjects.', () => { [ 1, true, '1', null, [ 1 ], { a: 1 }, NaN ].forEach( subject => { expect( isUndefined( subject ) ).toBe( false ); } ); } ); } ); describe( 'isNull', () => { test( 'can return `true` if a subject is `null`.', () => { expect( isNull( null ) ).toBe( true ); } ); test( 'should return `false` for other subjects.', () => { [ 1, true, '1', undefined, [ 1 ], { a: 1 }, NaN ].forEach( subject => { expect( isNull( subject ) ).toBe( false ); } ); } ); } ); } ); describe( 'isHTMLElement', () => { const div = document.createElement( 'div' ); const text = document.createTextNode( 'test' ); document.body.innerHTML = ''; test( 'can return `true` if a subject is an HTMLElement.', () => { expect( isHTMLElement( div ) ).toBe( true ); } ); test( 'should return `false` for other subjects.', () => { [ document, window, text, 1, true, undefined, '1', null, [ 1 ], { a: 1 }, NaN ].forEach( subject => { expect( isHTMLElement( subject ) ).toBe( false ); } ); } ); test( 'should work for nodes coming from other realms.', () => { const iframe = document.querySelector( 'iframe' ); expect( iframe ).toBeTruthy(); const { contentDocument, contentWindow } = iframe; const iDiv = contentDocument.createElement( 'div' ); expect( contentWindow ).not.toBe( window ); // This should fail since `HTMLElement` is different with the iframe's. expect( iDiv instanceof HTMLElement ).toBe( false ); // But this method will work since checking owners. expect( isHTMLElement( iDiv ) ).toBe( true ); } ); test( 'should work for nodes that do not belong to a specific window.', () => { const div = new DOMParser().parseFromString( '
', 'text/html' ).body.firstElementChild; expect( div ).toBeTruthy(); expect( div.ownerDocument.defaultView ).toBeNull(); expect( isHTMLElement( div ) ).toBe( true ); } ); } );