ice/packages/rax-compat/tests/createElement.test.tsx

150 lines
3.2 KiB
TypeScript

/**
* @vitest-environment jsdom
*/
import { expect, it, describe, vi } from 'vitest';
import { render } from '@testing-library/react';
import { createElement } from '../src/index';
describe('createElement', () => {
it('basic', () => {
const str = 'hello world';
const wrapper = render(createElement(
'div',
null,
str,
));
expect(wrapper.container.childNodes[0].textContent).toBe(str);
});
it('should work with onAppear', () => {
let appearFun = vi.spyOn({
func: () => {
expect(appearFun).toHaveBeenCalled();
},
}, 'func');
const str = 'hello world';
render(createElement(
'div',
{
onAppear: appearFun,
},
str,
));
});
it('should work with onDisappear', () => {
const func = () => {
expect(disappearFun).toHaveBeenCalled();
};
let disappearFun = vi.spyOn({
func: func,
}, 'func');
const str = 'hello world';
render(createElement(
'div',
{
onDisappear: func,
},
str,
));
});
it('component should not work with onAppear', () => {
let appearFun = vi.spyOn({
func: () => {
expect(appearFun).toBeCalledTimes(0);
},
}, 'func');
const str = 'hello world';
const FunctionComponent = ({ onDisappear }) => {
expect(typeof onDisappear).toBe('function');
return createElement('div');
};
render(createElement(
FunctionComponent,
{
onDisappear: appearFun,
},
str,
));
});
it('rpx should transform to vw', () => {
const str = 'hello world';
const wrapper = render(createElement(
'div',
{
'data-testid': 'rpxTest',
style: {
width: '300rpx',
},
},
str,
));
const node = wrapper.queryByTestId('rpxTest');
expect(node.style.width).toBe('40vw');
});
it('should work with value', () => {
const str = 'hello world';
const wrapper = render(createElement(
'input',
{
'data-testid': 'valueTest',
value: str,
},
));
const node = wrapper.queryByTestId('valueTest') as HTMLInputElement;
expect(node.value).toBe(str);
});
it('input set empty string to maxlength not be 0', () => {
const str = 'hello world';
const wrapper = render(createElement(
'input',
{
'data-testid': 'maxlengthTest',
value: str,
maxlength: '',
},
));
const node = wrapper.queryByTestId('valueTest');
expect(node?.getAttribute('maxlength')).toBe(null);
});
it('should normalize array type style', () => {
const str = 'hello world';
const wrapper = render(
createElement(
'div',
{
'data-testid': 'styleTest',
// @ts-expect-error
style: [
{
width: '300rpx',
},
{
height: '300rpx',
},
{
padding: '300rpx',
},
],
},
str,
),
);
const node = wrapper.queryByTestId('styleTest');
expect(node?.style.width).toBe('40vw');
expect(node?.style.height).toBe('40vw');
expect(node?.style.padding).toBe('40vw');
});
});