mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 10:26:08 +01:00 
			
		
		
		
	
		
			
	
	
		
			65 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
		
		
			
		
	
	
			65 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
|  | import { Application } from "express"; | ||
|  | import { beforeAll, describe, expect, it } from "vitest"; | ||
|  | import supertest from "supertest"; | ||
|  | import { createNote, login } from "./utils.js"; | ||
|  | import config from "../../src/services/config.js"; | ||
|  | 
 | ||
|  | let app: Application; | ||
|  | let token: string; | ||
|  | 
 | ||
|  | const USER = "etapi"; | ||
|  | let createdNoteId: string; | ||
|  | let createdAttachmentId: string; | ||
|  | 
 | ||
|  | describe("etapi/attachment-content", () => { | ||
|  |     beforeAll(async () => { | ||
|  |         config.General.noAuthentication = false; | ||
|  |         const buildApp = (await (import("../../src/app.js"))).default; | ||
|  |         app = await buildApp(); | ||
|  |         token = await login(app); | ||
|  | 
 | ||
|  |         createdNoteId = await createNote(app, token); | ||
|  | 
 | ||
|  |         // Create an attachment
 | ||
|  |         const response = await supertest(app) | ||
|  |             .post(`/etapi/attachments`) | ||
|  |             .auth(USER, token, { "type": "basic"}) | ||
|  |             .send({ | ||
|  |                 "ownerId": createdNoteId, | ||
|  |                 "role": "file", | ||
|  |                 "mime": "text/plain", | ||
|  |                 "title": "my attachment", | ||
|  |                 "content": "text" | ||
|  |             }); | ||
|  |         createdAttachmentId = response.body.attachmentId; | ||
|  |         expect(createdAttachmentId).toBeTruthy(); | ||
|  |     }); | ||
|  | 
 | ||
|  |     it("changes attachment content", async () => { | ||
|  |         const text = "Changed content"; | ||
|  |         await supertest(app) | ||
|  |             .put(`/etapi/attachments/${createdAttachmentId}/content`) | ||
|  |             .auth(USER, token, { "type": "basic"}) | ||
|  |             .set("Content-Type", "text/plain") | ||
|  |             .send(text) | ||
|  |             .expect(204); | ||
|  | 
 | ||
|  |         // Ensure it got changed.
 | ||
|  |         const response = await supertest(app) | ||
|  |             .get(`/etapi/attachments/${createdAttachmentId}/content`) | ||
|  |             .auth(USER, token, { "type": "basic"}); | ||
|  |         expect(response.text).toStrictEqual(text); | ||
|  |     }); | ||
|  | 
 | ||
|  |     it("supports binary content", async() => { | ||
|  |         await supertest(app) | ||
|  |             .put(`/etapi/attachments/${createdAttachmentId}/content`) | ||
|  |             .auth(USER, token, { "type": "basic"}) | ||
|  |             .set("Content-Type", "application/octet-stream") | ||
|  |             .set("Content-Transfer-Encoding", "binary") | ||
|  |             .send(Buffer.from("Hello world")) | ||
|  |             .expect(204); | ||
|  |     }); | ||
|  | 
 | ||
|  | }); |