-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtest.js
151 lines (129 loc) · 2.47 KB
/
test.js
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
import test from 'ava';
import {makeExecutableSchema} from 'graphql-tools';
import {microGraphql} from 'apollo-server-micro';
import micro from 'micro';
import nock from 'nock';
import testListen from 'test-listen';
import m from '.';
let url;
test.before(async () => {
const typeDefs = `
type Unicorn {
id: Int
name: String
}
type Query {
unicorn(id: Int!): Unicorn
error: Int
}
`;
const resolvers = {
Query: {
unicorn: (_, {id}) => ({
id,
name: 'Hello world'
}),
error: () => {
throw new Error('boom');
}
}
};
url = await testListen(micro(microGraphql({
schema: makeExecutableSchema({typeDefs, resolvers})
})));
});
test('query', async t => {
const query = `
{
unicorn(id: 0) {
id,
name
}
}
`;
t.deepEqual((await m(url, {query})).body, {
unicorn: {
id: 0,
name: 'Hello world'
}
});
});
test('variables', async t => {
const variables = {id: 0};
const query = `
query ($id: Int!) {
unicorn(id: $id) {
id,
name
}
}
`;
t.deepEqual((await m(url, {query, variables})).body, {
unicorn: {
id: 0,
name: 'Hello world'
}
});
});
test('operationName', async t => {
const operationName = 'foo';
const query = `
query foo {
unicorn(id: 0) {
id
}
}
query bar {
unicorn(id: 0) {
name
}
}
`;
t.deepEqual((await m(url, {query, operationName})).body, {
unicorn: {
id: 0
}
});
});
test('resolver error', async t => {
const query = `
{
error
}
`;
const {errors} = await m(url, {query});
t.deepEqual(errors, [{message: 'boom', locations: [{line: 3, column: 4}], path: ['error']}]);
});
test('GraphQLError', async t => {
const operationName = 'foo';
const variables = {id: 0};
const query = `
query foo ($id: Int!) {
unicorn(id: 0) {
foo
}
}
`;
const errors = await t.throws(m(url, {operationName, query, variables}));
for (const x of errors) {
t.is(x.name, 'GraphQLError');
t.is(x.operationName, operationName);
t.is(x.query, query);
t.true(Array.isArray(x.locations));
t.deepEqual(x.variables, variables);
}
});
test('token option', async t => {
const token = 'unicorn';
nock('http://foo.bar/')
.matchHeader('authorization', `bearer ${token}`)
.post('/')
.reply(200, {data: {token}});
t.is((await m('http://foo.bar/', {token})).body.token, token);
});
test('prepends `https://` to url', async t => {
nock('https://foo.bar/')
.post('/')
.reply(200, {data: 'ok'});
t.is((await m('foo.bar/')).body, 'ok');
});