/[sudobot]/trunk/tests/framework/arguments/Argument.test.ts
ViewVC logotype

Annotation of /trunk/tests/framework/arguments/Argument.test.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 575 - (hide annotations)
Mon Jul 29 17:59:26 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 1200 byte(s)
chore: add trunk
1 rakinar2 575 import StringArgument from "@framework/arguments/StringArgument";
2     import { describe, expect, it } from "vitest";
3     import { createApplication } from "../../mocks/application.mock";
4     import { initialize } from "./ArgumentTestUtils";
5    
6     describe("Argument", async () => {
7     createApplication();
8     let data;
9    
10     describe("<commons>", () => {
11     it("should parse an argument and return correct information", async () => {
12     data = initialize({
13     content: "test test",
14     userId: "1",
15     guildId: "1",
16     prefix: "!"
17     });
18    
19     const result = await StringArgument.performCast(
20     data.context,
21     data.content,
22     data.argv,
23     data.argv[1],
24     1,
25     "testarg",
26     undefined,
27     true
28     );
29    
30     expect(result.value?.getRawValue()).toBe(data.argv[1]);
31     expect(result.value?.getValue()).toBe(data.argv[1]);
32     expect(result.value?.position).toBe(1);
33     expect(result.value?.name).toBe("testarg");
34     expect(result.error).toBeUndefined();
35     });
36     });
37     });

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26