123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- import React from "react";
- import { render, waitFor } from "./test-utils";
- import App from "../components/App";
- import { API } from "./helpers/api";
- import {
- encodePngMetadata,
- encodeSvgMetadata,
- decodeSvgMetadata,
- } from "../data/image";
- import { serializeAsJSON } from "../data/json";
- const { h } = window;
- const testElements = [
- {
- ...API.createElement({
- type: "text",
- id: "A",
- text: "😀",
- }),
-
-
- width: 16,
- height: 16,
- },
- ];
- Object.defineProperty(window, "TextDecoder", {
- value: class TextDecoder {
- decode(ab: ArrayBuffer) {
- return new Uint8Array(ab).reduce(
- (acc, c) => acc + String.fromCharCode(c),
- "",
- );
- }
- },
- });
- describe("export", () => {
- beforeEach(() => {
- render(<App />);
- });
- it("export embedded png and reimport", async () => {
- const pngBlob = await API.loadFile("./fixtures/smiley.png");
- const pngBlobEmbedded = await encodePngMetadata({
- blob: pngBlob,
- metadata: serializeAsJSON(testElements, h.state),
- });
- API.drop(pngBlobEmbedded);
- await waitFor(() => {
- expect(h.elements).toEqual([
- expect.objectContaining({ type: "text", text: "😀" }),
- ]);
- });
- });
- it("test encoding/decoding scene for SVG export", async () => {
- const encoded = await encodeSvgMetadata({
- text: serializeAsJSON(testElements, h.state),
- });
- const decoded = JSON.parse(await decodeSvgMetadata({ svg: encoded }));
- expect(decoded.elements).toEqual([
- expect.objectContaining({ type: "text", text: "😀" }),
- ]);
- });
- it("import embedded png (legacy v1)", async () => {
- API.drop(await API.loadFile("./fixtures/test_embedded_v1.png"));
- await waitFor(() => {
- expect(h.elements).toEqual([
- expect.objectContaining({ type: "text", text: "test" }),
- ]);
- });
- });
- it("import embedded png (v2)", async () => {
- API.drop(await API.loadFile("./fixtures/smiley_embedded_v2.png"));
- await waitFor(() => {
- expect(h.elements).toEqual([
- expect.objectContaining({ type: "text", text: "😀" }),
- ]);
- });
- });
- it("import embedded svg (legacy v1)", async () => {
- API.drop(await API.loadFile("./fixtures/test_embedded_v1.svg"));
- await waitFor(() => {
- expect(h.elements).toEqual([
- expect.objectContaining({ type: "text", text: "test" }),
- ]);
- });
- });
- it("import embedded svg (v2)", async () => {
- API.drop(await API.loadFile("./fixtures/smiley_embedded_v2.svg"));
- await waitFor(() => {
- expect(h.elements).toEqual([
- expect.objectContaining({ type: "text", text: "😀" }),
- ]);
- });
- });
- });
|