export.test.tsx 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. import React from "react";
  2. import { render, waitFor } from "./test-utils";
  3. import App from "../components/App";
  4. import { API } from "./helpers/api";
  5. import {
  6. encodePngMetadata,
  7. encodeSvgMetadata,
  8. decodeSvgMetadata,
  9. } from "../data/image";
  10. import { serializeAsJSON } from "../data/json";
  11. const { h } = window;
  12. const testElements = [
  13. {
  14. ...API.createElement({
  15. type: "text",
  16. id: "A",
  17. text: "😀",
  18. }),
  19. // can't get jsdom text measurement to work so this is a temp hack
  20. // to ensure the element isn't stripped as invisible
  21. width: 16,
  22. height: 16,
  23. },
  24. ];
  25. // tiny polyfill for TextDecoder.decode on which we depend
  26. Object.defineProperty(window, "TextDecoder", {
  27. value: class TextDecoder {
  28. decode(ab: ArrayBuffer) {
  29. return new Uint8Array(ab).reduce(
  30. (acc, c) => acc + String.fromCharCode(c),
  31. "",
  32. );
  33. }
  34. },
  35. });
  36. describe("export", () => {
  37. beforeEach(() => {
  38. render(<App />);
  39. });
  40. it("export embedded png and reimport", async () => {
  41. const pngBlob = await API.loadFile("./fixtures/smiley.png");
  42. const pngBlobEmbedded = await encodePngMetadata({
  43. blob: pngBlob,
  44. metadata: serializeAsJSON(testElements, h.state),
  45. });
  46. API.drop(pngBlobEmbedded);
  47. await waitFor(() => {
  48. expect(h.elements).toEqual([
  49. expect.objectContaining({ type: "text", text: "😀" }),
  50. ]);
  51. });
  52. });
  53. it("test encoding/decoding scene for SVG export", async () => {
  54. const encoded = await encodeSvgMetadata({
  55. text: serializeAsJSON(testElements, h.state),
  56. });
  57. const decoded = JSON.parse(await decodeSvgMetadata({ svg: encoded }));
  58. expect(decoded.elements).toEqual([
  59. expect.objectContaining({ type: "text", text: "😀" }),
  60. ]);
  61. });
  62. it("import embedded png (legacy v1)", async () => {
  63. API.drop(await API.loadFile("./fixtures/test_embedded_v1.png"));
  64. await waitFor(() => {
  65. expect(h.elements).toEqual([
  66. expect.objectContaining({ type: "text", text: "test" }),
  67. ]);
  68. });
  69. });
  70. it("import embedded png (v2)", async () => {
  71. API.drop(await API.loadFile("./fixtures/smiley_embedded_v2.png"));
  72. await waitFor(() => {
  73. expect(h.elements).toEqual([
  74. expect.objectContaining({ type: "text", text: "😀" }),
  75. ]);
  76. });
  77. });
  78. it("import embedded svg (legacy v1)", async () => {
  79. API.drop(await API.loadFile("./fixtures/test_embedded_v1.svg"));
  80. await waitFor(() => {
  81. expect(h.elements).toEqual([
  82. expect.objectContaining({ type: "text", text: "test" }),
  83. ]);
  84. });
  85. });
  86. it("import embedded svg (v2)", async () => {
  87. API.drop(await API.loadFile("./fixtures/smiley_embedded_v2.svg"));
  88. await waitFor(() => {
  89. expect(h.elements).toEqual([
  90. expect.objectContaining({ type: "text", text: "😀" }),
  91. ]);
  92. });
  93. });
  94. });