2025-02-28 19:23:45 +02:00
|
|
|
import { describe, expect, it } from "vitest";
|
2025-02-28 19:17:52 +02:00
|
|
|
import { buildNotes } from "../../test/easy-froca.js";
|
2025-02-28 19:23:45 +02:00
|
|
|
import CalendarView from "./calendar_view.js";
|
2025-02-28 19:03:08 +02:00
|
|
|
|
|
|
|
|
describe("Building events", () => {
|
|
|
|
|
it("supports start date", async () => {
|
2025-02-28 19:17:52 +02:00
|
|
|
const noteIds = buildNotes([
|
2025-02-28 19:23:45 +02:00
|
|
|
{ title: "Note 1", "#startDate": "2025-05-05" },
|
|
|
|
|
{ title: "Note 2", "#startDate": "2025-05-07" },
|
2025-02-28 19:03:08 +02:00
|
|
|
]);
|
2025-02-28 19:23:45 +02:00
|
|
|
const events = await CalendarView.buildEvents(noteIds);
|
|
|
|
|
|
|
|
|
|
expect(events).toHaveLength(2);
|
2025-02-28 19:36:50 +02:00
|
|
|
expect(events[0]).toMatchObject({ title: "Note 1", start: "2025-05-05", end: "2025-05-06" });
|
|
|
|
|
expect(events[1]).toMatchObject({ title: "Note 2", start: "2025-05-07", end: "2025-05-08" });
|
2025-02-28 19:23:45 +02:00
|
|
|
});
|
2025-02-28 19:03:08 +02:00
|
|
|
|
2025-02-28 19:23:45 +02:00
|
|
|
it("ignores notes with only end date", async () => {
|
|
|
|
|
const noteIds = buildNotes([
|
|
|
|
|
{ title: "Note 1", "#endDate": "2025-05-05" },
|
2025-02-28 19:44:32 +02:00
|
|
|
{ title: "Note 2", "#endDateDate": "2025-05-07" }
|
2025-02-28 19:23:45 +02:00
|
|
|
]);
|
2025-02-28 19:03:19 +02:00
|
|
|
const events = await CalendarView.buildEvents(noteIds);
|
2025-02-28 19:23:45 +02:00
|
|
|
|
|
|
|
|
expect(events).toHaveLength(0);
|
2025-02-28 19:03:08 +02:00
|
|
|
});
|
|
|
|
|
|
2025-02-28 19:23:45 +02:00
|
|
|
it("supports both start date and end date", async () => {
|
|
|
|
|
const noteIds = buildNotes([
|
|
|
|
|
{ title: "Note 1", "#startDate": "2025-05-05", "#endDate": "2025-05-05" },
|
|
|
|
|
{ title: "Note 2", "#startDate": "2025-05-07", "#endDate": "2025-05-08" },
|
|
|
|
|
]);
|
|
|
|
|
const events = await CalendarView.buildEvents(noteIds);
|
|
|
|
|
|
|
|
|
|
expect(events).toHaveLength(2);
|
2025-02-28 19:36:50 +02:00
|
|
|
expect(events[0]).toMatchObject({ title: "Note 1", start: "2025-05-05", end: "2025-05-06" });
|
|
|
|
|
expect(events[1]).toMatchObject({ title: "Note 2", start: "2025-05-07", end: "2025-05-09" });
|
2025-02-28 19:23:45 +02:00
|
|
|
});
|
2025-02-28 19:32:32 +02:00
|
|
|
|
|
|
|
|
it("supports custom start date", async () => {
|
|
|
|
|
const noteIds = buildNotes([
|
|
|
|
|
{ title: "Note 1", "#myStartDate": "2025-05-05", "#calendar:startDate": "#myStartDate" },
|
|
|
|
|
{ title: "Note 2", "#startDate": "2025-05-07", "#calendar:startDate": "#myStartDate" },
|
|
|
|
|
]);
|
|
|
|
|
const events = await CalendarView.buildEvents(noteIds);
|
|
|
|
|
|
|
|
|
|
expect(events).toHaveLength(2);
|
|
|
|
|
expect(events[0]).toMatchObject({
|
|
|
|
|
title: "Note 1",
|
|
|
|
|
start: "2025-05-05",
|
|
|
|
|
end: "2025-05-06"
|
|
|
|
|
});
|
|
|
|
|
expect(events[1]).toMatchObject({
|
|
|
|
|
title: "Note 2",
|
|
|
|
|
start: "2025-05-07",
|
|
|
|
|
end: "2025-05-08"
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it("supports custom start date and end date", async () => {
|
|
|
|
|
const noteIds = buildNotes([
|
|
|
|
|
{ title: "Note 1", "#myStartDate": "2025-05-05", "#myEndDate": "2025-05-05", "#calendar:startDate": "#myStartDate", "#calendar:endDate": "#myEndDate" },
|
|
|
|
|
{ title: "Note 2", "#myStartDate": "2025-05-07", "#endDate": "2025-05-08", "#calendar:startDate": "#myStartDate", "#calendar:endDate": "#myEndDate" },
|
|
|
|
|
{ title: "Note 3", "#startDate": "2025-05-05", "#myEndDate": "2025-05-05", "#calendar:startDate": "#myStartDate", "#calendar:endDate": "#myEndDate" },
|
|
|
|
|
{ title: "Note 4", "#startDate": "2025-05-07", "#myEndDate": "2025-05-08", "#calendar:startDate": "#myStartDate", "#calendar:endDate": "#myEndDate" },
|
|
|
|
|
]);
|
|
|
|
|
const events = await CalendarView.buildEvents(noteIds);
|
|
|
|
|
|
|
|
|
|
expect(events).toHaveLength(4);
|
|
|
|
|
expect(events[0]).toMatchObject({ title: "Note 1", start: "2025-05-05", end: "2025-05-06" });
|
|
|
|
|
expect(events[1]).toMatchObject({ title: "Note 2", start: "2025-05-07", end: "2025-05-09" });
|
|
|
|
|
expect(events[2]).toMatchObject({ title: "Note 3", start: "2025-05-05", end: "2025-05-06" });
|
|
|
|
|
expect(events[3]).toMatchObject({ title: "Note 4", start: "2025-05-07", end: "2025-05-09" });
|
|
|
|
|
});
|
|
|
|
|
|
2025-02-28 19:36:50 +02:00
|
|
|
it("supports label as custom title", async () => {
|
|
|
|
|
const noteIds = buildNotes([
|
|
|
|
|
{ title: "Note 1", "#myTitle": "My Custom Title 1", "#startDate": "2025-05-05", "#calendar:title": "#myTitle" },
|
|
|
|
|
{ title: "Note 2", "#startDate": "2025-05-07", "#calendar:title": "#myTitle" },
|
|
|
|
|
]);
|
|
|
|
|
const events = await CalendarView.buildEvents(noteIds);
|
|
|
|
|
|
|
|
|
|
expect(events).toHaveLength(2);
|
|
|
|
|
expect(events[0]).toMatchObject({ title: "My Custom Title 1", start: "2025-05-05" });
|
|
|
|
|
expect(events[1]).toMatchObject({ title: "Note 2", start: "2025-05-07" });
|
|
|
|
|
});
|
|
|
|
|
|
2025-02-28 19:03:08 +02:00
|
|
|
});
|