mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 18:12:29 +08:00
test(etapi): port get-date-notes
This commit is contained in:
parent
931f9e572a
commit
ff1a8d2280
@ -1,72 +0,0 @@
|
|||||||
GET {{triliumHost}}/etapi/inbox/2022-01-01
|
|
||||||
Authorization: {{authToken}}
|
|
||||||
|
|
||||||
> {% client.assert(response.status === 200); %}
|
|
||||||
|
|
||||||
###
|
|
||||||
|
|
||||||
GET {{triliumHost}}/etapi/calendar/days/2022-01-01
|
|
||||||
Authorization: {{authToken}}
|
|
||||||
|
|
||||||
> {% client.assert(response.status === 200); %}
|
|
||||||
|
|
||||||
###
|
|
||||||
|
|
||||||
GET {{triliumHost}}/etapi/calendar/days/2022-1
|
|
||||||
Authorization: {{authToken}}
|
|
||||||
|
|
||||||
> {%
|
|
||||||
client.assert(response.status === 400);
|
|
||||||
client.assert(response.body.code === "DATE_INVALID");
|
|
||||||
%}
|
|
||||||
|
|
||||||
###
|
|
||||||
|
|
||||||
GET {{triliumHost}}/etapi/calendar/weeks/2022-01-01
|
|
||||||
Authorization: {{authToken}}
|
|
||||||
|
|
||||||
> {% client.assert(response.status === 200); %}
|
|
||||||
|
|
||||||
###
|
|
||||||
|
|
||||||
GET {{triliumHost}}/etapi/calendar/weeks/2022-1
|
|
||||||
Authorization: {{authToken}}
|
|
||||||
|
|
||||||
> {%
|
|
||||||
client.assert(response.status === 400);
|
|
||||||
client.assert(response.body.code === "DATE_INVALID");
|
|
||||||
%}
|
|
||||||
|
|
||||||
###
|
|
||||||
|
|
||||||
GET {{triliumHost}}/etapi/calendar/months/2022-01
|
|
||||||
Authorization: {{authToken}}
|
|
||||||
|
|
||||||
> {% client.assert(response.status === 200); %}
|
|
||||||
|
|
||||||
###
|
|
||||||
|
|
||||||
GET {{triliumHost}}/etapi/calendar/months/2022-1
|
|
||||||
Authorization: {{authToken}}
|
|
||||||
|
|
||||||
> {%
|
|
||||||
client.assert(response.status === 400);
|
|
||||||
client.assert(response.body.code === "MONTH_INVALID");
|
|
||||||
%}
|
|
||||||
|
|
||||||
###
|
|
||||||
|
|
||||||
GET {{triliumHost}}/etapi/calendar/years/2022
|
|
||||||
Authorization: {{authToken}}
|
|
||||||
|
|
||||||
> {% client.assert(response.status === 200); %}
|
|
||||||
|
|
||||||
###
|
|
||||||
|
|
||||||
GET {{triliumHost}}/etapi/calendar/years/202
|
|
||||||
Authorization: {{authToken}}
|
|
||||||
|
|
||||||
> {%
|
|
||||||
client.assert(response.status === 400);
|
|
||||||
client.assert(response.body.code === "YEAR_INVALID");
|
|
||||||
%}
|
|
@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"dev": {
|
|
||||||
"triliumHost": "http://localhost:37740"
|
|
||||||
}
|
|
||||||
}
|
|
94
apps/server/spec/etapi/get-date-notes.spec.ts
Normal file
94
apps/server/spec/etapi/get-date-notes.spec.ts
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
import { beforeAll, describe, expect, it } from "vitest";
|
||||||
|
import config from "../../src/services/config.js";
|
||||||
|
import { login } from "./utils.js";
|
||||||
|
import { Application } from "express";
|
||||||
|
import supertest from "supertest";
|
||||||
|
|
||||||
|
let app: Application;
|
||||||
|
let token: string;
|
||||||
|
|
||||||
|
const USER = "etapi";
|
||||||
|
|
||||||
|
describe("etapi/get-date-notes", () => {
|
||||||
|
beforeAll(async () => {
|
||||||
|
config.General.noAuthentication = false;
|
||||||
|
const buildApp = (await (import("../../src/app.js"))).default;
|
||||||
|
app = await buildApp();
|
||||||
|
token = await login(app);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("obtains inbox", async () => {
|
||||||
|
await supertest(app)
|
||||||
|
.get("/etapi/inbox/2022-01-01")
|
||||||
|
.auth(USER, token, { "type": "basic"})
|
||||||
|
.expect(200);
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("days", () => {
|
||||||
|
it("obtains day from calendar", async () => {
|
||||||
|
await supertest(app)
|
||||||
|
.get("/etapi/calendar/days/2022-01-01")
|
||||||
|
.auth(USER, token, { "type": "basic"})
|
||||||
|
.expect(200);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("detects invalid date", async () => {
|
||||||
|
const response = await supertest(app)
|
||||||
|
.get("/etapi/calendar/days/2022-1")
|
||||||
|
.auth(USER, token, { "type": "basic"})
|
||||||
|
.expect(400);
|
||||||
|
expect(response.body.code).toStrictEqual("DATE_INVALID");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("weeks", () => {
|
||||||
|
it("obtains week calendar", async () => {
|
||||||
|
await supertest(app)
|
||||||
|
.get("/etapi/calendar/weeks/2022-01-01")
|
||||||
|
.auth(USER, token, { "type": "basic"})
|
||||||
|
.expect(200);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("detects invalid date", async () => {
|
||||||
|
const response = await supertest(app)
|
||||||
|
.get("/etapi/calendar/weeks/2022-1")
|
||||||
|
.auth(USER, token, { "type": "basic"})
|
||||||
|
.expect(400);
|
||||||
|
expect(response.body.code).toStrictEqual("DATE_INVALID");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("months", () => {
|
||||||
|
it("obtains month calendar", async () => {
|
||||||
|
await supertest(app)
|
||||||
|
.get("/etapi/calendar/weeks/2022-01")
|
||||||
|
.auth(USER, token, { "type": "basic"})
|
||||||
|
.expect(200);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("detects invalid month", async () => {
|
||||||
|
const response = await supertest(app)
|
||||||
|
.get("/etapi/calendar/months/2022-1")
|
||||||
|
.auth(USER, token, { "type": "basic"})
|
||||||
|
.expect(400);
|
||||||
|
expect(response.body.code).toStrictEqual("MONTH_INVALID");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("years", () => {
|
||||||
|
it("obtains year calendar", async () => {
|
||||||
|
await supertest(app)
|
||||||
|
.get("/etapi/calendar/years/2022")
|
||||||
|
.auth(USER, token, { "type": "basic"})
|
||||||
|
.expect(200);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("detects invalid year", async () => {
|
||||||
|
const response = await supertest(app)
|
||||||
|
.get("/etapi/calendar/years/202")
|
||||||
|
.auth(USER, token, { "type": "basic"})
|
||||||
|
.expect(400);
|
||||||
|
expect(response.body.code).toStrictEqual("YEAR_INVALID");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
Loading…
x
Reference in New Issue
Block a user