mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
chore: add some SSR test cases (#11801)
This commit is contained in:
parent
da138d5321
commit
9105243850
@ -0,0 +1,13 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`should render correctly when SSR 1`] = `
|
||||
<div class="van-back-top"
|
||||
style
|
||||
>
|
||||
<i class="van-badge__wrapper van-icon van-icon-back-top van-back-top__icon"
|
||||
style
|
||||
>
|
||||
<!--[-->
|
||||
</i>
|
||||
</div>
|
||||
`;
|
12
packages/vant/src/back-top/test/ssr.spec.ts
Normal file
12
packages/vant/src/back-top/test/ssr.spec.ts
Normal file
@ -0,0 +1,12 @@
|
||||
/**
|
||||
* @jest-environment node
|
||||
*/
|
||||
import { BackTop } from '..';
|
||||
import { renderComponentToString } from '../../../test';
|
||||
|
||||
test('should render correctly when SSR', async () => {
|
||||
const html = await renderComponentToString(BackTop, {
|
||||
teleport: '',
|
||||
});
|
||||
expect(html).toMatchSnapshot();
|
||||
});
|
@ -0,0 +1,36 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`should render correctly when SSR 1`] = `
|
||||
<div class="van-signature">
|
||||
<div class="van-signature__content">
|
||||
<canvas width="0"
|
||||
height="0"
|
||||
>
|
||||
</canvas>
|
||||
</div>
|
||||
<div class="van-signature__footer">
|
||||
<button type="button"
|
||||
class="van-button van-button--default van-button--small"
|
||||
style
|
||||
>
|
||||
<div class="van-button__content">
|
||||
<span class="van-button__text">
|
||||
<!--[-->
|
||||
Cancel
|
||||
</span>
|
||||
</div>
|
||||
</button>
|
||||
<button type="button"
|
||||
class="van-button van-button--primary van-button--small"
|
||||
style
|
||||
>
|
||||
<div class="van-button__content">
|
||||
<span class="van-button__text">
|
||||
<!--[-->
|
||||
Confirm
|
||||
</span>
|
||||
</div>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
`;
|
10
packages/vant/src/signature/test/ssr.spec.ts
Normal file
10
packages/vant/src/signature/test/ssr.spec.ts
Normal file
@ -0,0 +1,10 @@
|
||||
/**
|
||||
* @jest-environment node
|
||||
*/
|
||||
import { Signature } from '..';
|
||||
import { renderComponentToString } from '../../../test';
|
||||
|
||||
test('should render correctly when SSR', async () => {
|
||||
const html = await renderComponentToString(Signature);
|
||||
expect(html).toMatchSnapshot();
|
||||
});
|
@ -0,0 +1,30 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`should render correctly when SSR 1`] = `
|
||||
<div class="van-watermark van-watermark--full"
|
||||
style="background-image:url();"
|
||||
>
|
||||
<div class="van-watermark__wrapper">
|
||||
<svg viewbox="0 0 100 100"
|
||||
width="100"
|
||||
height="100"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
style="padding:0 0px 0px 0;"
|
||||
>
|
||||
<foreignObject x="0"
|
||||
y="0"
|
||||
width="100"
|
||||
height="100"
|
||||
>
|
||||
<div xmlns="http://www.w3.org/1999/xhtml"
|
||||
style="transform-origin:center;transform:rotate(-22deg);"
|
||||
>
|
||||
<span style="color:#dcdee0;">
|
||||
</span>
|
||||
</div>
|
||||
</foreignObject>
|
||||
</svg>
|
||||
</div>
|
||||
</div>
|
||||
`;
|
10
packages/vant/src/watermark/test/ssr.spec.ts
Normal file
10
packages/vant/src/watermark/test/ssr.spec.ts
Normal file
@ -0,0 +1,10 @@
|
||||
/**
|
||||
* @jest-environment node
|
||||
*/
|
||||
import { Watermark } from '..';
|
||||
import { renderComponentToString } from '../../../test';
|
||||
|
||||
test('should render correctly when SSR', async () => {
|
||||
const html = await renderComponentToString(Watermark);
|
||||
expect(html).toMatchSnapshot();
|
||||
});
|
@ -1,7 +1,12 @@
|
||||
import { nextTick } from 'vue';
|
||||
import { trigger } from './event';
|
||||
import { inBrowser } from '@vant/use';
|
||||
|
||||
function mockHTMLElementOffset() {
|
||||
if (!inBrowser) {
|
||||
return;
|
||||
}
|
||||
|
||||
Object.defineProperties(HTMLElement.prototype, {
|
||||
offsetParent: {
|
||||
get() {
|
||||
@ -33,14 +38,19 @@ function mockHTMLElementOffset() {
|
||||
|
||||
export function mockScrollIntoView() {
|
||||
const fn = jest.fn();
|
||||
Element.prototype.scrollIntoView = fn;
|
||||
if (inBrowser) {
|
||||
Element.prototype.scrollIntoView = fn;
|
||||
}
|
||||
return fn;
|
||||
}
|
||||
|
||||
export function mockGetBoundingClientRect(rect: Partial<DOMRect>): () => void {
|
||||
const spy = jest.spyOn(Element.prototype, 'getBoundingClientRect');
|
||||
spy.mockReturnValue(rect as DOMRect);
|
||||
return () => spy.mockRestore();
|
||||
if (inBrowser) {
|
||||
const spy = jest.spyOn(Element.prototype, 'getBoundingClientRect');
|
||||
spy.mockReturnValue(rect as DOMRect);
|
||||
return () => spy.mockRestore();
|
||||
}
|
||||
return () => {};
|
||||
}
|
||||
|
||||
export async function mockScrollTop(value: number) {
|
||||
|
@ -1,3 +1,5 @@
|
||||
import { createSSRApp } from 'vue';
|
||||
import { renderToString } from 'vue/server-renderer';
|
||||
import './plugin';
|
||||
import Locale from '../src/locale';
|
||||
import enUS from '../src/locale/lang/en-US';
|
||||
@ -11,6 +13,14 @@ export function later(delay = 0): Promise<void> {
|
||||
});
|
||||
}
|
||||
|
||||
export const renderComponentToString = async (
|
||||
...args: Parameters<typeof createSSRApp>
|
||||
) => {
|
||||
const app = createSSRApp(...args);
|
||||
const html = await renderToString(app);
|
||||
return html;
|
||||
};
|
||||
|
||||
export * from './dom';
|
||||
export * from './event';
|
||||
export { mount } from '@vue/test-utils';
|
||||
|
@ -1,23 +1,19 @@
|
||||
/* eslint-disable max-classes-per-file */
|
||||
import { ComponentPublicInstance } from 'vue';
|
||||
import { config, VueWrapper, DOMWrapper } from '@vue/test-utils';
|
||||
import { config } from '@vue/test-utils';
|
||||
|
||||
declare module '@vue/test-utils' {
|
||||
// eslint-disable-next-line
|
||||
export class DOMWrapper<ElementType extends Element> {
|
||||
export class DOMWrapper<NodeType extends Node> {
|
||||
style: CSSStyleDeclaration;
|
||||
}
|
||||
|
||||
// eslint-disable-next-line
|
||||
class VueWrapper<T extends ComponentPublicInstance> {
|
||||
export class VueWrapper {
|
||||
style: CSSStyleDeclaration;
|
||||
}
|
||||
}
|
||||
|
||||
const stylePlugin = (
|
||||
wrapper: VueWrapper<ComponentPublicInstance> | DOMWrapper<Element>
|
||||
) => ({
|
||||
style: (wrapper.element as HTMLElement).style,
|
||||
const stylePlugin = (wrapper: any) => ({
|
||||
style: wrapper.element.style,
|
||||
});
|
||||
|
||||
config.plugins.DOMWrapper.install(stylePlugin);
|
||||
|
Loading…
x
Reference in New Issue
Block a user