|
1 | 1 | import { CommandResult, CorePlugin } from "../../src";
|
| 2 | +import { MESSAGE_VERSION } from "../../src/constants"; |
2 | 3 | import { toZone } from "../../src/helpers";
|
3 | 4 | import { Model, ModelConfig } from "../../src/model";
|
4 | 5 | import { corePluginRegistry, featurePluginRegistry } from "../../src/plugins/index";
|
5 | 6 | import { UIPlugin } from "../../src/plugins/ui_plugin";
|
6 | 7 | import { Command, CommandTypes, CoreCommand, DispatchResult, coreTypes } from "../../src/types";
|
| 8 | +import { MockTransportService } from "../__mocks__/transport_service"; |
| 9 | +import { getTextXlsxFiles } from "../__xlsx__/read_demo_xlsx"; |
7 | 10 | import { setupCollaborativeEnv } from "../collaborative/collaborative_helpers";
|
8 | 11 | import { copy, selectCell, setCellContent } from "../test_helpers/commands_helpers";
|
9 | 12 | import {
|
@@ -366,4 +369,33 @@ describe("Model", () => {
|
366 | 369 | ],
|
367 | 370 | });
|
368 | 371 | });
|
| 372 | + |
| 373 | + test("it should snapshot when importing xlsx file", async () => { |
| 374 | + const transport = new MockTransportService(); |
| 375 | + const spy = jest.spyOn(transport, "sendMessage"); |
| 376 | + const xlsxData = await getTextXlsxFiles(); |
| 377 | + new Model(xlsxData, { |
| 378 | + transportService: transport, |
| 379 | + client: { id: "test", name: "Test" }, |
| 380 | + }); |
| 381 | + expect(spy).toHaveBeenCalledWith({ |
| 382 | + type: "SNAPSHOT", |
| 383 | + version: MESSAGE_VERSION, |
| 384 | + nextRevisionId: expect.any(String), |
| 385 | + serverRevisionId: "START_REVISION", |
| 386 | + data: expect.any(Object), |
| 387 | + }); |
| 388 | + }); |
| 389 | + |
| 390 | + test("it should not snapshot when importing xlsx file in readonly mode", async () => { |
| 391 | + const transport = new MockTransportService(); |
| 392 | + const spy = jest.spyOn(transport, "sendMessage"); |
| 393 | + const xlsxData = await getTextXlsxFiles(); |
| 394 | + new Model(xlsxData, { |
| 395 | + transportService: transport, |
| 396 | + client: { id: "test", name: "Test" }, |
| 397 | + mode: "readonly", |
| 398 | + }); |
| 399 | + expect(spy).not.toHaveBeenCalled(); |
| 400 | + }); |
369 | 401 | });
|
0 commit comments