mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-23 11:35:04 +01:00
Fix tests
This commit is contained in:
parent
e9a49fdf74
commit
75012eda9c
@ -475,6 +475,22 @@ export function tests() {
|
|||||||
const roomId = "$abc";
|
const roomId = "$abc";
|
||||||
const alice = "@alice:hs.tld";
|
const alice = "@alice:hs.tld";
|
||||||
const bob = "@bob:hs.tld";
|
const bob = "@bob:hs.tld";
|
||||||
|
const hsApi = {
|
||||||
|
context() {
|
||||||
|
const result = {
|
||||||
|
event: withTextBody("foo", createEvent("m.room.message", "event_id_1", alice)),
|
||||||
|
state: [{
|
||||||
|
type: MEMBER_EVENT_TYPE,
|
||||||
|
user_id: alice,
|
||||||
|
content: {
|
||||||
|
displayName: "",
|
||||||
|
avatarUrl: ""
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
};
|
||||||
|
return { response: () => result };
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
function getIndexFromIterable(it, n) {
|
function getIndexFromIterable(it, n) {
|
||||||
let i = 0;
|
let i = 0;
|
||||||
@ -765,22 +781,6 @@ export function tests() {
|
|||||||
},
|
},
|
||||||
|
|
||||||
"context entry is fetched from hs": async assert => {
|
"context entry is fetched from hs": async assert => {
|
||||||
const hsApi = {
|
|
||||||
context() {
|
|
||||||
const result = {
|
|
||||||
event: withTextBody("foo", createEvent("m.room.message", "event_id_1", alice)),
|
|
||||||
state: [{
|
|
||||||
type: MEMBER_EVENT_TYPE,
|
|
||||||
user_id: alice,
|
|
||||||
content: {
|
|
||||||
displayName: "",
|
|
||||||
avatarUrl: ""
|
|
||||||
}
|
|
||||||
}]
|
|
||||||
};
|
|
||||||
return { response: () => result };
|
|
||||||
}
|
|
||||||
};
|
|
||||||
const timeline = new Timeline({roomId, storage: await createMockStorage(), closeCallback: () => {},
|
const timeline = new Timeline({roomId, storage: await createMockStorage(), closeCallback: () => {},
|
||||||
fragmentIdComparer, pendingEvents: new ObservableArray(), clock: new MockClock(), hsApi});
|
fragmentIdComparer, pendingEvents: new ObservableArray(), clock: new MockClock(), hsApi});
|
||||||
let event = withContent({
|
let event = withContent({
|
||||||
@ -824,8 +824,7 @@ export function tests() {
|
|||||||
|
|
||||||
"context entry in contextEntryNotInTimeline gets updated based on incoming redaction": async assert => {
|
"context entry in contextEntryNotInTimeline gets updated based on incoming redaction": async assert => {
|
||||||
const timeline = new Timeline({roomId, storage: await createMockStorage(), closeCallback: () => {},
|
const timeline = new Timeline({roomId, storage: await createMockStorage(), closeCallback: () => {},
|
||||||
fragmentIdComparer, pendingEvents: new ObservableArray(), clock: new MockClock()});
|
fragmentIdComparer, pendingEvents: new ObservableArray(), clock: new MockClock(), hsApi});
|
||||||
const entryA = new NonPersistedEventEntry({ event: withTextBody("foo", createEvent("m.room.message", "event_id_1", alice)), eventIndex: 1 });
|
|
||||||
let event = withContent({
|
let event = withContent({
|
||||||
body: "bar",
|
body: "bar",
|
||||||
msgtype: "m.text",
|
msgtype: "m.text",
|
||||||
@ -836,21 +835,18 @@ export function tests() {
|
|||||||
}
|
}
|
||||||
}, createEvent("m.room.message", "event_id_2", bob));
|
}, createEvent("m.room.message", "event_id_2", bob));
|
||||||
const entryB = new EventEntry({ event, eventIndex: 2 });
|
const entryB = new EventEntry({ event, eventIndex: 2 });
|
||||||
timeline._getEventFromHomeserver = () => entryA;
|
|
||||||
await timeline.load(new User(alice), "join", new NullLogItem());
|
await timeline.load(new User(alice), "join", new NullLogItem());
|
||||||
timeline.entries.subscribe({ onAdd: () => null, onUpdate: () => null });
|
timeline.entries.subscribe({ onAdd: () => null, onUpdate: () => null });
|
||||||
timeline.addEntries([entryB]);
|
timeline.addEntries([entryB]);
|
||||||
await poll(() => entryB.contextEntry);
|
await poll(() => entryB.contextEntry);
|
||||||
const redactingEntry = new EventEntry({ event: withRedacts(entryA.id, "foo", createEvent("m.room.redaction", "event_id_3", alice)), eventIndex: 3 });
|
const redactingEntry = new EventEntry({ event: withRedacts("event_id_1", "foo", createEvent("m.room.redaction", "event_id_3", alice)), eventIndex: 3 });
|
||||||
timeline.addEntries([redactingEntry]);
|
timeline.addEntries([redactingEntry]);
|
||||||
const contextEntry = timeline._contextEntriesNotInTimeline.get(entryA.id);
|
assert.strictEqual(entryB.contextEntry.isRedacted, true);
|
||||||
assert.strictEqual(contextEntry.isRedacted, true);
|
|
||||||
},
|
},
|
||||||
|
|
||||||
"redaction of context entry triggers updates in other entries": async assert => {
|
"redaction of context entry triggers updates in other entries": async assert => {
|
||||||
const timeline = new Timeline({roomId, storage: await createMockStorage(), closeCallback: () => {},
|
const timeline = new Timeline({roomId, storage: await createMockStorage(), closeCallback: () => {},
|
||||||
fragmentIdComparer, pendingEvents: new ObservableArray(), clock: new MockClock()});
|
fragmentIdComparer, pendingEvents: new ObservableArray(), clock: new MockClock(), hsApi});
|
||||||
const entryA = new NonPersistedEventEntry({ event: withTextBody("foo", createEvent("m.room.message", "event_id_1", alice)), eventIndex: 1 });
|
|
||||||
const content = {
|
const content = {
|
||||||
body: "bar",
|
body: "bar",
|
||||||
msgtype: "m.text",
|
msgtype: "m.text",
|
||||||
@ -871,17 +867,16 @@ export function tests() {
|
|||||||
},
|
},
|
||||||
onAdd: () => null,
|
onAdd: () => null,
|
||||||
});
|
});
|
||||||
timeline._getEventFromHomeserver = () => entryA;
|
|
||||||
timeline.addEntries([entryB, entryC]);
|
timeline.addEntries([entryB, entryC]);
|
||||||
await poll(() => timeline._remoteEntries.array.length === 2 && timeline._contextEntriesNotInTimeline.get(entryA.id));
|
await poll(() => timeline._remoteEntries.array.length === 2 && timeline._contextEntriesNotInTimeline.get("event_id_1"));
|
||||||
const redactingEntry = new EventEntry({ event: withRedacts(entryA.id, "foo", createEvent("m.room.redaction", "event_id_3", alice)) });
|
const redactingEntry = new EventEntry({ event: withRedacts("event_id_1", "foo", createEvent("m.room.redaction", "event_id_3", alice)) });
|
||||||
timeline.addEntries([redactingEntry]);
|
timeline.addEntries([redactingEntry]);
|
||||||
assert.strictEqual(bin.length, 0);
|
assert.strictEqual(bin.length, 0);
|
||||||
},
|
},
|
||||||
|
|
||||||
"context entries fetched from storage/hs are moved to remoteEntries": async assert => {
|
"context entries fetched from storage/hs are moved to remoteEntries": async assert => {
|
||||||
const timeline = new Timeline({roomId, storage: await createMockStorage(), closeCallback: () => {},
|
const timeline = new Timeline({roomId, storage: await createMockStorage(), closeCallback: () => {},
|
||||||
fragmentIdComparer, pendingEvents: new ObservableArray(), clock: new MockClock()});
|
fragmentIdComparer, pendingEvents: new ObservableArray(), clock: new MockClock(), hsApi});
|
||||||
const entryA = new EventEntry({ event: withTextBody("foo", createEvent("m.room.message", "event_id_1", alice)), eventIndex: 1 });
|
const entryA = new EventEntry({ event: withTextBody("foo", createEvent("m.room.message", "event_id_1", alice)), eventIndex: 1 });
|
||||||
let event = withContent({
|
let event = withContent({
|
||||||
body: "bar",
|
body: "bar",
|
||||||
@ -893,7 +888,6 @@ export function tests() {
|
|||||||
}
|
}
|
||||||
}, createEvent("m.room.message", "event_id_2", bob));
|
}, createEvent("m.room.message", "event_id_2", bob));
|
||||||
const entryB = new EventEntry({ event, eventIndex: 2 });
|
const entryB = new EventEntry({ event, eventIndex: 2 });
|
||||||
timeline._getEventFromHomeserver = () => entryA
|
|
||||||
await timeline.load(new User(alice), "join", new NullLogItem());
|
await timeline.load(new User(alice), "join", new NullLogItem());
|
||||||
timeline.entries.subscribe({ onAdd: () => null, onUpdate: () => null });
|
timeline.entries.subscribe({ onAdd: () => null, onUpdate: () => null });
|
||||||
timeline.addEntries([entryB]);
|
timeline.addEntries([entryB]);
|
||||||
@ -903,7 +897,7 @@ export function tests() {
|
|||||||
assert.strictEqual(timeline._contextEntriesNotInTimeline.has(entryA.id), false);
|
assert.strictEqual(timeline._contextEntriesNotInTimeline.has(entryA.id), false);
|
||||||
const movedEntry = timeline.remoteEntries[0];
|
const movedEntry = timeline.remoteEntries[0];
|
||||||
assert.deepEqual(movedEntry, entryA);
|
assert.deepEqual(movedEntry, entryA);
|
||||||
assert.deepEqual(movedEntry.contextForEntries.pop(), entryB);
|
assert.deepEqual(movedEntry.contextForEntries[0], entryB);
|
||||||
assert.deepEqual(entryB.contextEntry, movedEntry);
|
assert.deepEqual(entryB.contextEntry, movedEntry);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user