Skip to content

Commit 81a7212

Browse files
asafhasaf
and
asaf
authored
Issue dotansimha#4437 - Failing tests for unhandledRejection (dotansimha#4355)
Fixing angular tests to await all typescript validation calls Fixing angular test to use correct mutation/subscription gql calls. Co-authored-by: asaf <[email protected]>
1 parent 2ec006f commit 81a7212

File tree

4 files changed

+38
-26
lines changed

4 files changed

+38
-26
lines changed

dev-test/setup.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
process.on('unhandledRejection', (err) => {
2+
fail(err);
3+
});

jest.project.js

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ module.exports = ({ dirname, projectMode = true }) => {
2525
modulePathIgnorePatterns: ['dist'],
2626
moduleNameMapper: pathsToModuleNameMapper(tsconfig.compilerOptions.paths, { prefix: `${ROOT_DIR}/` }),
2727
cacheDirectory: resolve(ROOT_DIR, `${CI ? '' : 'node_modules/'}.cache/jest`),
28+
setupFiles: [`${ROOT_DIR}/dev-test/setup.js`],
2829
collectCoverage: false,
2930
};
3031
};

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"clean": "rimraf node_modules packages/{*,plugins/*/*,presets/*,utils/*}/node_modules",
77
"prebuild": "rimraf packages/{*,plugins/*/*,presets/*,utils/*}/dist",
88
"build": "tsc --project tsconfig.json && bob build",
9+
"watch-build": "npx tsc-watch --project tsconfig.json --onSuccess \"bob build\"",
910
"test": "jest --no-watchman",
1011
"lint": "eslint --ext .ts .",
1112
"prettier": "prettier --ignore-path .gitignore --write --list-different \"**/*.{ts,tsx,graphql,yml}\"",

packages/plugins/typescript/apollo-angular/tests/apollo-angular.spec.ts

+33-26
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ describe('Apollo Angular', () => {
137137
expect(content.content).toBeSimilarStringTo(`document = MyFeedDocument;`);
138138
expect(content.content).not.toContain('@NgModule');
139139
expect(content.content).toContain('@client');
140-
validateTypeScript(content, modifiedSchema, docs, {});
140+
await validateTypeScript(content, modifiedSchema, docs, {});
141141
});
142142

143143
it('Should import namedClient and remove namedClient directive', async () => {
@@ -168,7 +168,7 @@ describe('Apollo Angular', () => {
168168
client = 'custom';
169169
`);
170170
expect(content.content).not.toContain('@namedClient');
171-
validateTypeScript(content, modifiedSchema, docs, {});
171+
await validateTypeScript(content, modifiedSchema, docs, {});
172172
});
173173
});
174174

@@ -199,7 +199,7 @@ describe('Apollo Angular', () => {
199199
})
200200
export class TestGQL extends Apollo.Query
201201
`);
202-
validateTypeScript(content, rootSchema, docs, {});
202+
await validateTypeScript(content, rootSchema, docs, {});
203203
});
204204

205205
it('Should handle @client', async () => {
@@ -223,7 +223,7 @@ describe('Apollo Angular', () => {
223223

224224
expect(content.content).toBeSimilarStringTo(`document = MyFeedDocument;`);
225225

226-
validateTypeScript(content, schema, docs, {});
226+
await validateTypeScript(content, schema, docs, {});
227227
});
228228
});
229229

@@ -283,7 +283,7 @@ describe('Apollo Angular', () => {
283283
expect(content.content).toBeSimilarStringTo(`client = 'extra';`);
284284
expect(content.content).not.toContain('@namedClient');
285285

286-
validateTypeScript(content, modifiedSchema, docs, {});
286+
await validateTypeScript(content, modifiedSchema, docs, {});
287287
});
288288
it('should be allowed to define custom operation suffixes in config', async () => {
289289
const modifiedSchema = extendSchema(schema, addToSchema);
@@ -294,26 +294,34 @@ describe('Apollo Angular', () => {
294294
}
295295
}
296296
`);
297-
const upVotePost = gql(`
298-
mutation upVotePost($postId: Int!) {
299-
upVotePost(postId: $postId) {
300-
id
301-
votes
302-
}
303-
}
297+
const vote = gql(`
298+
mutation vote($repoFullName: String!, $type: VoteType!) {
299+
vote(repoFullName: $repoFullName, type: $type) {
300+
score
301+
id
302+
vote {
303+
vote_value
304+
}
305+
}
306+
}
304307
`);
305-
const newPost = gql(`
306-
subscription newPost {
307-
newPost {
308-
id
309-
title
308+
const commentAdded = gql(`
309+
subscription onCommentAdded($repoFullName: String!) {
310+
commentAdded(repoFullName: $repoFullName) {
311+
id
312+
postedBy {
313+
login
314+
html_url
310315
}
316+
createdAt
317+
content
311318
}
319+
}
312320
`);
313321
const docs = [
314322
{ location: '', document: myFeed },
315-
{ location: '', document: upVotePost },
316-
{ location: '', document: newPost },
323+
{ location: '', document: commentAdded },
324+
{ location: '', document: vote },
317325
];
318326
const content = (await plugin(
319327
modifiedSchema,
@@ -329,9 +337,9 @@ describe('Apollo Angular', () => {
329337
)) as Types.ComplexPluginOutput;
330338

331339
expect(content.content).toContain(`export class MyFeedQueryService`);
332-
expect(content.content).toContain(`export class UpVotePostMutationService`);
333-
expect(content.content).toContain(`export class NewPostSubscriptionService`);
334-
validateTypeScript(content, modifiedSchema, docs, {});
340+
expect(content.content).toContain(`export class OnCommentAddedSubscriptionService`);
341+
expect(content.content).toContain(`export class VoteMutationService`);
342+
await validateTypeScript(content, modifiedSchema, docs, {});
335343
});
336344
});
337345

@@ -357,7 +365,6 @@ describe('Apollo Angular', () => {
357365

358366
// NgModule
359367
expect(content.prepend).toContain(`import * as ApolloCore from 'apollo-client';`);
360-
// console.log('content.content', content.content);
361368
expect(content.content).toBeSimilarStringTo(`
362369
@Injectable({ providedIn: 'root' })
363370
export class ApolloAngularSDK {
@@ -374,7 +381,7 @@ describe('Apollo Angular', () => {
374381
}
375382
}
376383
`);
377-
validateTypeScript(content, modifiedSchema, docs, {});
384+
await validateTypeScript(content, modifiedSchema, docs, {});
378385
});
379386
it('should generate a SDK service with custom settings', async () => {
380387
const modifiedSchema = extendSchema(schema, addToSchema);
@@ -418,7 +425,7 @@ describe('Apollo Angular', () => {
418425
}
419426
}
420427
`);
421-
validateTypeScript(content, modifiedSchema, docs, {});
428+
await validateTypeScript(content, modifiedSchema, docs, {});
422429
});
423430
});
424431

@@ -447,7 +454,7 @@ describe('Apollo Angular', () => {
447454
}
448455
)) as Types.ComplexPluginOutput;
449456

450-
validateTypeScript(content, schema, docs, {});
457+
await validateTypeScript(content, schema, docs, {});
451458
});
452459
});
453460
});

0 commit comments

Comments
 (0)