newElement.test.ts 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. import { duplicateElement } from "./newElement";
  2. import { mutateElement } from "./mutateElement";
  3. import { API } from "../tests/helpers/api";
  4. import { FONT_FAMILY } from "../constants";
  5. import { isPrimitive } from "../utils";
  6. const assertCloneObjects = (source: any, clone: any) => {
  7. for (const key in clone) {
  8. if (clone.hasOwnProperty(key) && !isPrimitive(clone[key])) {
  9. expect(clone[key]).not.toBe(source[key]);
  10. if (source[key]) {
  11. assertCloneObjects(source[key], clone[key]);
  12. }
  13. }
  14. }
  15. };
  16. it("clones arrow element", () => {
  17. const element = API.createElement({
  18. type: "arrow",
  19. x: 0,
  20. y: 0,
  21. strokeColor: "#000000",
  22. backgroundColor: "transparent",
  23. fillStyle: "hachure",
  24. strokeWidth: 1,
  25. strokeStyle: "solid",
  26. strokeSharpness: "round",
  27. roughness: 1,
  28. opacity: 100,
  29. });
  30. // @ts-ignore
  31. element.__proto__ = { hello: "world" };
  32. mutateElement(element, {
  33. points: [
  34. [1, 2],
  35. [3, 4],
  36. ],
  37. });
  38. const copy = duplicateElement(null, new Map(), element);
  39. assertCloneObjects(element, copy);
  40. // @ts-ignore
  41. expect(copy.__proto__).toEqual({ hello: "world" });
  42. expect(copy.hasOwnProperty("hello")).toBe(false);
  43. expect(copy.points).not.toBe(element.points);
  44. expect(copy).not.toHaveProperty("shape");
  45. expect(copy.id).not.toBe(element.id);
  46. expect(typeof copy.id).toBe("string");
  47. expect(copy.seed).not.toBe(element.seed);
  48. expect(typeof copy.seed).toBe("number");
  49. expect(copy).toEqual({
  50. ...element,
  51. id: copy.id,
  52. seed: copy.seed,
  53. });
  54. });
  55. it("clones text element", () => {
  56. const element = API.createElement({
  57. type: "text",
  58. x: 0,
  59. y: 0,
  60. strokeColor: "#000000",
  61. backgroundColor: "transparent",
  62. fillStyle: "hachure",
  63. strokeWidth: 1,
  64. strokeStyle: "solid",
  65. strokeSharpness: "round",
  66. roughness: 1,
  67. opacity: 100,
  68. text: "hello",
  69. fontSize: 20,
  70. fontFamily: FONT_FAMILY.Virgil,
  71. textAlign: "left",
  72. verticalAlign: "top",
  73. });
  74. const copy = duplicateElement(null, new Map(), element);
  75. assertCloneObjects(element, copy);
  76. expect(copy).not.toHaveProperty("points");
  77. expect(copy).not.toHaveProperty("shape");
  78. expect(copy.id).not.toBe(element.id);
  79. expect(typeof copy.id).toBe("string");
  80. expect(typeof copy.seed).toBe("number");
  81. });