mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-12 15:34:00 +00:00
Adding some more API testing examples.
This commit is contained in:
parent
ce800f75ad
commit
e5497edd5c
2 changed files with 76 additions and 4 deletions
78
ui/src/api_tests/api.spec.ts
vendored
78
ui/src/api_tests/api.spec.ts
vendored
|
@ -1,13 +1,85 @@
|
|||
import fetch from 'node-fetch';
|
||||
|
||||
import {
|
||||
LoginForm,
|
||||
LoginResponse,
|
||||
GetPostsForm,
|
||||
GetPostsResponse,
|
||||
CommentForm,
|
||||
CommentResponse,
|
||||
ListingType,
|
||||
SortType,
|
||||
} from '../interfaces';
|
||||
|
||||
let baseUrl = 'https://test.lemmy.ml';
|
||||
let apiUrl = `${baseUrl}/api/v1`;
|
||||
let auth: string;
|
||||
|
||||
beforeAll(async () => {
|
||||
console.log('Logging in as test user.');
|
||||
let form: LoginForm = {
|
||||
username_or_email: 'tester',
|
||||
password: 'tester',
|
||||
};
|
||||
|
||||
let res: LoginResponse = await fetch(`${apiUrl}/user/login`, {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
},
|
||||
body: wrapper(form),
|
||||
}).then(d => d.json());
|
||||
|
||||
auth = res.jwt;
|
||||
});
|
||||
|
||||
test('Get test user posts', async () => {
|
||||
let form: GetPostsForm = {
|
||||
type_: ListingType[ListingType.All],
|
||||
sort: SortType[SortType.TopAll],
|
||||
auth,
|
||||
};
|
||||
|
||||
let res: GetPostsResponse = await fetch(
|
||||
`${apiUrl}/post/list?type_=${form.type_}&sort=${form.sort}&auth=${auth}`
|
||||
).then(d => d.json());
|
||||
|
||||
// console.debug(res);
|
||||
|
||||
expect(res.posts[0].id).toBe(2);
|
||||
});
|
||||
|
||||
test('Create test comment', async () => {
|
||||
let content = 'A jest test comment';
|
||||
let form: CommentForm = {
|
||||
post_id: 2,
|
||||
content,
|
||||
auth,
|
||||
};
|
||||
|
||||
let res: CommentResponse = await fetch(`${apiUrl}/comment`, {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
},
|
||||
body: wrapper(form),
|
||||
}).then(d => d.json());
|
||||
|
||||
expect(res.comment.content).toBe(content);
|
||||
});
|
||||
|
||||
test('adds 1 + 2 to equal 3', () => {
|
||||
let sum = (a: number, b: number) => a + b;
|
||||
expect(sum(1, 2)).toBe(3);
|
||||
});
|
||||
|
||||
test('Get communism.lemmy.ml nodeinfo href', async () => {
|
||||
let url = 'https://communism.lemmy.ml/.well-known/nodeinfo';
|
||||
let href = 'https://communism.lemmy.ml/nodeinfo/2.0.json';
|
||||
test(`Get ${baseUrl} nodeinfo href`, async () => {
|
||||
let url = `${baseUrl}/.well-known/nodeinfo`;
|
||||
let href = `${baseUrl}/nodeinfo/2.0.json`;
|
||||
let res = await fetch(url).then(d => d.json());
|
||||
expect(res.links.href).toBe(href);
|
||||
});
|
||||
|
||||
function wrapper(form: any): string {
|
||||
return JSON.stringify(form);
|
||||
}
|
||||
|
|
2
ui/src/interfaces.ts
vendored
2
ui/src/interfaces.ts
vendored
|
@ -654,7 +654,7 @@ export interface CommentForm {
|
|||
post_id: number;
|
||||
parent_id?: number;
|
||||
edit_id?: number;
|
||||
creator_id: number;
|
||||
creator_id?: number;
|
||||
removed?: boolean;
|
||||
deleted?: boolean;
|
||||
reason?: string;
|
||||
|
|
Loading…
Reference in a new issue