2019-08-26 16:00:56 +02:00
|
|
|
/*
|
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import EditorModel from "../../src/editor/model";
|
2023-05-16 15:25:43 +02:00
|
|
|
import { createPartCreator, createRenderer } from "./mock";
|
2019-08-26 16:00:56 +02:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
describe("editor/position", function () {
|
|
|
|
it("move first position backward in empty model", function () {
|
2019-08-26 16:00:56 +02:00
|
|
|
const model = new EditorModel([], createPartCreator(), createRenderer());
|
|
|
|
const pos = model.positionForOffset(0, true);
|
|
|
|
const pos2 = pos.backwardsWhile(model, () => true);
|
|
|
|
expect(pos).toBe(pos2);
|
|
|
|
});
|
2022-12-12 12:24:14 +01:00
|
|
|
it("move first position forwards in empty model", function () {
|
2019-08-26 16:00:56 +02:00
|
|
|
const model = new EditorModel([], createPartCreator(), createRenderer());
|
|
|
|
const pos = model.positionForOffset(0, true);
|
2022-04-06 13:40:13 +02:00
|
|
|
const pos2 = pos.forwardsWhile(model, () => true);
|
2019-08-26 16:00:56 +02:00
|
|
|
expect(pos).toBe(pos2);
|
|
|
|
});
|
2022-12-12 12:24:14 +01:00
|
|
|
it("move forwards within one part", function () {
|
2019-08-26 16:00:56 +02:00
|
|
|
const pc = createPartCreator();
|
|
|
|
const model = new EditorModel([pc.plain("hello")], pc, createRenderer());
|
|
|
|
const pos = model.positionForOffset(1);
|
|
|
|
let n = 3;
|
2022-12-12 12:24:14 +01:00
|
|
|
const pos2 = pos.forwardsWhile(model, () => {
|
|
|
|
n -= 1;
|
|
|
|
return n >= 0;
|
|
|
|
});
|
2019-08-26 16:00:56 +02:00
|
|
|
expect(pos2.index).toBe(0);
|
|
|
|
expect(pos2.offset).toBe(4);
|
|
|
|
});
|
2022-12-12 12:24:14 +01:00
|
|
|
it("move forwards crossing to other part", function () {
|
2019-08-26 16:00:56 +02:00
|
|
|
const pc = createPartCreator();
|
|
|
|
const model = new EditorModel([pc.plain("hello"), pc.plain(" world")], pc, createRenderer());
|
|
|
|
const pos = model.positionForOffset(4);
|
|
|
|
let n = 3;
|
2022-12-12 12:24:14 +01:00
|
|
|
const pos2 = pos.forwardsWhile(model, () => {
|
|
|
|
n -= 1;
|
|
|
|
return n >= 0;
|
|
|
|
});
|
2019-08-26 16:00:56 +02:00
|
|
|
expect(pos2.index).toBe(1);
|
|
|
|
expect(pos2.offset).toBe(2);
|
|
|
|
});
|
2022-12-12 12:24:14 +01:00
|
|
|
it("move backwards within one part", function () {
|
2019-08-26 16:00:56 +02:00
|
|
|
const pc = createPartCreator();
|
|
|
|
const model = new EditorModel([pc.plain("hello")], pc, createRenderer());
|
|
|
|
const pos = model.positionForOffset(4);
|
|
|
|
let n = 3;
|
2022-12-12 12:24:14 +01:00
|
|
|
const pos2 = pos.backwardsWhile(model, () => {
|
|
|
|
n -= 1;
|
|
|
|
return n >= 0;
|
|
|
|
});
|
2019-08-26 16:00:56 +02:00
|
|
|
expect(pos2.index).toBe(0);
|
|
|
|
expect(pos2.offset).toBe(1);
|
|
|
|
});
|
2022-12-12 12:24:14 +01:00
|
|
|
it("move backwards crossing to other part", function () {
|
2019-08-26 16:00:56 +02:00
|
|
|
const pc = createPartCreator();
|
|
|
|
const model = new EditorModel([pc.plain("hello"), pc.plain(" world")], pc, createRenderer());
|
|
|
|
const pos = model.positionForOffset(7);
|
|
|
|
let n = 3;
|
2022-12-12 12:24:14 +01:00
|
|
|
const pos2 = pos.backwardsWhile(model, () => {
|
|
|
|
n -= 1;
|
|
|
|
return n >= 0;
|
|
|
|
});
|
2019-08-26 16:00:56 +02:00
|
|
|
expect(pos2.index).toBe(0);
|
|
|
|
expect(pos2.offset).toBe(4);
|
|
|
|
});
|
|
|
|
});
|