blob: 0e474192e84022d35cd050b7493f4d2650c468a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
const { request } = require('graphql-request');
let id;
test('Creating an item', async () => {
const query = `
mutation createItem {
createItem(title: "wes", description:"Bos", price: 500) {
title
description
price
id
}
}
`;
const { createItem } = await request('http://localhost:4000', query);
expect(createItem.title).toEqual('wes');
expect(createItem.description).toEqual('Bos');
expect(createItem).toHaveProperty('id');
expect(createItem.price).toEqual(500);
id = createItem.id;
});
test('Get an array of items', async () => {
const query = `
query getAllItems {
items {
title
id
description
price
}
}
`;
const { items } = await request('http://localhost:4000', query);
expect(items.length).toBeGreaterThan(0);
});
test('Query a specific item', async () => {
const query = `
query findAnItem {
items(where: {
id: "${id}"
}) {
title
id
description
price
}
}
`;
const { items } = await request('http://localhost:4000', query);
const item = items[0];
expect(item.title).toEqual('wes');
expect(item.description).toEqual('Bos');
expect(item.price).toEqual(500);
});
// Test Delete that item
test('delete an item', async () => {
const query = `
mutation remove {
deleteItem(id: "${id}") {
id
}
}
`;
const res = await request('http://localhost:4000', query);
expect(res.deleteItem.id).toEqual(id);
});
// mutation updateItem {
// updateItem(id: "cjd21afpr47m00172nigtlkw8", title: "WES from playground") {
// id
// title
// }
// }
|