forked from apollographql/apollo-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubscribeToMore.ts
230 lines (197 loc) · 5.07 KB
/
subscribeToMore.ts
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
import * as chai from 'chai';
const { assert } = chai;
import {
mockSubscriptionNetworkInterface,
} from './mocks/mockNetworkInterface';
import ApolloClient from '../src';
import gql from 'graphql-tag';
describe('subscribeToMore', () => {
const query = gql`
query aQuery {
entry {
value
}
}
`;
const result = {
data: {
entry: {
value: 1,
},
},
};
const req1 = { request: { query }, result };
const results = ['Dahivat Pandya', 'Amanda Liu'].map(
name => ({ result: { name: name }, delay: 10 }),
);
const sub1 = {
request: {
query: gql`
subscription newValues {
name
}
`,
},
id: 0,
results: [...results],
};
const results2 = [
{ error: new Error('You cant touch this'), delay: 10 },
{ result: { name: 'Amanda Liu' }, delay: 10 },
];
const sub2 = {
request: {
query: gql`
subscription newValues {
notAnActualField
}
`,
},
id: 0,
results: [...results2],
};
const results3 = [
{ error: new Error('You cant touch this'), delay: 10 },
{ result: { name: 'Amanda Liu' }, delay: 10 },
];
const sub3 = {
request: {
query: gql`
subscription newValues {
notAnActualField
}
`,
},
id: 0,
results: [...results3],
};
it('triggers new result from subscription data', (done) => {
let latestResult: any = null;
const networkInterface = mockSubscriptionNetworkInterface([sub1], req1);
let counter = 0;
const client = new ApolloClient({
networkInterface,
addTypename: false,
});
const obsHandle = client.watchQuery({
query,
});
const sub = obsHandle.subscribe({
next(queryResult) {
latestResult = queryResult;
counter++;
},
});
obsHandle.subscribeToMore({
document: gql`
subscription newValues {
name
}
`,
updateQuery: (prev, { subscriptionData }) => {
return { entry: { value: subscriptionData.data.name } };
},
});
setTimeout(() => {
sub.unsubscribe();
assert.equal(counter, 3);
assert.deepEqual(
latestResult,
{ data: { entry: { value: 'Amanda Liu' } }, loading: false, networkStatus: 7 },
);
done();
}, 50);
for (let i = 0; i < 2; i++) {
networkInterface.fireResult(0); // 0 is the id of the subscription for the NI
}
});
it('calls error callback on error', (done) => {
let latestResult: any = null;
const networkInterface = mockSubscriptionNetworkInterface([sub2], req1);
let counter = 0;
const client = new ApolloClient({
networkInterface,
addTypename: false,
});
const obsHandle = client.watchQuery({
query,
});
const sub = obsHandle.subscribe({
next(queryResult) {
latestResult = queryResult;
counter++;
},
});
let errorCount = 0;
obsHandle.subscribeToMore({
document: gql`
subscription newValues {
notAnActualField
}
`,
updateQuery: (prev, { subscriptionData }) => {
return { entry: { value: subscriptionData.data.name } };
},
onError: (err) => { errorCount += 1; },
});
setTimeout(() => {
sub.unsubscribe();
assert.equal(counter, 2);
assert.deepEqual(
latestResult,
{ data: { entry: { value: 'Amanda Liu' } }, loading: false, networkStatus: 7 },
);
assert.equal(errorCount, 1);
done();
}, 50);
for (let i = 0; i < 2; i++) {
networkInterface.fireResult(0); // 0 is the id of the subscription for the NI
}
});
it('prints unhandled subscription errors to the console', (done) => {
let latestResult: any = null;
const networkInterface = mockSubscriptionNetworkInterface([sub3], req1);
let counter = 0;
const client = new ApolloClient({
networkInterface,
addTypename: false,
});
const obsHandle = client.watchQuery({
query,
});
const sub = obsHandle.subscribe({
next(queryResult) {
latestResult = queryResult;
counter++;
},
});
let errorCount = 0;
const consoleErr = console.error;
console.error = (err: Error) => { errorCount += 1; };
obsHandle.subscribeToMore({
document: gql`
subscription newValues {
notAnActualField
}
`,
updateQuery: (prev, { subscriptionData }) => {
return { entry: { value: subscriptionData.data.name } };
},
});
setTimeout(() => {
sub.unsubscribe();
assert.equal(counter, 2);
assert.deepEqual(
latestResult,
{ data: { entry: { value: 'Amanda Liu' } }, loading: false, networkStatus: 7 },
);
assert.equal(errorCount, 1);
console.error = consoleErr;
done();
}, 50);
for (let i = 0; i < 2; i++) {
networkInterface.fireResult(0); // 0 is the id of the subscription for the NI
}
});
// TODO add a test that checks that subscriptions are cancelled when obs is unsubscribed from.
});