1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-21 10:11:34 +02:00

added unittests for attachments [post]

This commit is contained in:
xnacly 2021-08-18 18:13:41 +02:00
parent dde04559c1
commit 533a501427
2 changed files with 74 additions and 5 deletions

BIN
cdn/tests/antman.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 253 KiB

View File

@ -1,5 +1,23 @@
const dotenv = require("dotenv");
const path = require("path");
const fse = require("fs-extra");
dotenv.config();
if (!process.env.STORAGE_PROVIDER) process.env.STORAGE_PROVIDER = "file";
// TODO:nodejs path.join trailing slash windows compatible
if (process.env.STORAGE_PROVIDER === "file") {
if (process.env.STORAGE_LOCATION) {
if (!process.env.STORAGE_LOCATION.startsWith("/")) {
process.env.STORAGE_LOCATION = path.join(__dirname, "..", process.env.STORAGE_LOCATION, "/");
}
} else {
process.env.STORAGE_LOCATION = path.join(__dirname, "..", "files", "/");
}
fse.ensureDirSync(process.env.STORAGE_LOCATION);
}
const { CDNServer } = require("../dist/Server"); const { CDNServer } = require("../dist/Server");
const { db } = require("@fosscord/util"); const { db, Config } = require("@fosscord/util");
const supertest = require("supertest"); const supertest = require("supertest");
const request = supertest("http://localhost:3003"); const request = supertest("http://localhost:3003");
const server = new CDNServer({ port: Number(process.env.PORT) || 3003 }); const server = new CDNServer({ port: Number(process.env.PORT) || 3003 });
@ -14,9 +32,60 @@ afterAll(() => {
return server.stop(); return server.stop();
}); });
describe("GET /ping", () => { let attachment_url = "";
test("should return pong", async () => {
const response = await request.get("/ping"); describe("/ping", () => {
describe("GET", () => {
test("route should return pong", async () => {
const response = await request.get("/ping").set({ signature: Config.get().security.requestSignature });
expect(response.text).toBe("pong"); expect(response.text).toBe("pong");
}); });
});
});
describe("/attachments", () => {
describe("POST", () => {
describe("without signature specified", () => {
test("route should respond with 400", async () => {
const response = await request.post("/attachments/123456789");
expect(response.statusCode).toBe(400);
});
});
describe("without file specified and with signature specified", () => {
test("route should respond with 400", async () => {
const response = await request
.post("/attachments/123456789")
.set({ signature: Config.get().security.requestSignature });
expect(response.statusCode).toBe(400);
});
});
describe("with file specified and with signature specified", () => {
test("route should respond with Content-type application/json and 200 and res.body.url", async () => {
const response = await request
.post("/attachments/123456789")
.set({ signature: Config.get().security.requestSignature })
.attach("file", __dirname + "/antman.jpg");
expect(response.statusCode).toBe(200);
expect(response.headers["content-type"]).toEqual(expect.stringContaining("json"));
expect(response.body.url).toBeDefined();
attachment_url = response.body.url;
});
});
});
// describe("GET", () => {
// describe("getting uploaded image by url returned by POST /attachments", () => {
// test("route should respond with 200", async () => {
// let response = await request
// .post("/attachments/123456789")
// .set({ signature: Config.get().security.requestSignature })
// .attach("file", __dirname + "/antman.jpg");
// console.warn(response.body.url.replace("http://localhost:3003", ""));
// response = request.get(response.body.url.replace("http://localhost:3003", ""));
// expect(response.statusCode).toBe(400);
// });
// });
// });
describe("DELETE", () => {
describe("without signature specified", () => {});
});
}); });