-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathtesterSchemaJS.js
118 lines (104 loc) · 2.41 KB
/
testerSchemaJS.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
/* eslint-env mocha */
/* eslint-disable no-unused-expressions */
'use strict'
const { expect } = require('chai')
const EasyGraphQLTester = require('../lib')
const schema = require('./schema-js')
describe('Assert test', () => {
let tester
before(() => {
tester = new EasyGraphQLTester(schema)
})
describe('Should test query', () => {
it('Invalid query getUser', () => {
const invalidQuery = `
{
getUser {
email
name
}
}
`
// false, it is fullName no name
tester.test(false, invalidQuery)
})
it('Should pass if the query is valid', () => {
const query = `
{
getUser {
email
fullName
}
}
`
tester.test(true, query)
})
})
describe('Should test mutation', () => {
it('Invalid mutation createUser', () => {
const mutation = `
mutation createNewUser($input: UserInput!) {
createNewUser(input: $input) {
email
}
}
`
tester.test(false, mutation, {
email: '[email protected]',
fullName: 'test',
password: 'test',
})
})
it('Should pass if the mutation is valid', () => {
const mutation = `
mutation createNewUser($input: UserInput!) {
createNewUser(input: $input) {
email
}
}
`
tester.test(true, mutation, {
input: {
email: '[email protected]',
username: 'demo',
fullName: 'test',
password: 'test',
},
})
})
})
describe('Should mock query', () => {
it('Should mock if the query is valid', () => {
const query = `
{
getUser {
email
fullName
}
}
`
const {
data: { getUser },
} = tester.mock(query)
expect(getUser.email).to.be.a('string')
expect(getUser.fullName).to.be.a('string')
})
})
describe('Should test GraphQL', () => {
it('Should pass if the resolver return expected data', async () => {
const query = `
{
getUser {
email
fullName
}
}
`
const {
data: { getUser },
} = await tester.graphql(query)
expect(getUser.email).to.be.eq('[email protected]')
expect(getUser.fullName).to.be.eq('demo')
})
})
})