|
1 | 1 | import { expect } from 'chai';
|
2 | 2 | import { describe, it } from 'mocha';
|
3 | 3 |
|
| 4 | +import { invariant } from '../../jsutils/invariant'; |
4 | 5 | import { isAsyncIterable } from '../../jsutils/isAsyncIterable';
|
5 | 6 | import { parse } from '../../language/parser';
|
6 | 7 |
|
@@ -74,6 +75,36 @@ const query = new GraphQLObjectType({
|
74 | 75 | yield await Promise.resolve({});
|
75 | 76 | },
|
76 | 77 | },
|
| 78 | + asyncIterableListDelayed: { |
| 79 | + type: new GraphQLList(friendType), |
| 80 | + async *resolve() { |
| 81 | + for (const friend of friends) { |
| 82 | + // pause an additional ms before yielding to allow time |
| 83 | + // for tests to return or throw before next value is processed. |
| 84 | + // eslint-disable-next-line no-await-in-loop |
| 85 | + await new Promise((r) => setTimeout(r, 1)); |
| 86 | + yield friend; |
| 87 | + } |
| 88 | + }, |
| 89 | + }, |
| 90 | + asyncIterableListNoReturn: { |
| 91 | + type: new GraphQLList(friendType), |
| 92 | + resolve() { |
| 93 | + let i = 0; |
| 94 | + return { |
| 95 | + [Symbol.asyncIterator]: () => ({ |
| 96 | + async next() { |
| 97 | + const friend = friends[i++]; |
| 98 | + if (friend) { |
| 99 | + await new Promise((r) => setTimeout(r, 1)); |
| 100 | + return { value: friend, done: false }; |
| 101 | + } |
| 102 | + return { value: undefined, done: true }; |
| 103 | + }, |
| 104 | + }), |
| 105 | + }; |
| 106 | + }, |
| 107 | + }, |
77 | 108 | asyncIterableListDelayedClose: {
|
78 | 109 | type: new GraphQLList(friendType),
|
79 | 110 | async *resolve() {
|
@@ -697,4 +728,172 @@ describe('Execute: stream directive', () => {
|
697 | 728 | },
|
698 | 729 | ]);
|
699 | 730 | });
|
| 731 | + it('Returns underlying async iterables when dispatcher is returned', async () => { |
| 732 | + const document = parse(` |
| 733 | + query { |
| 734 | + asyncIterableListDelayed @stream(initialCount: 1) { |
| 735 | + name |
| 736 | + id |
| 737 | + } |
| 738 | + } |
| 739 | + `); |
| 740 | + const schema = new GraphQLSchema({ query }); |
| 741 | + |
| 742 | + const executeResult = await execute({ schema, document, rootValue: {} }); |
| 743 | + invariant(isAsyncIterable(executeResult)); |
| 744 | + const iterator = executeResult[Symbol.asyncIterator](); |
| 745 | + |
| 746 | + const result1 = await iterator.next(); |
| 747 | + expect(result1).to.deep.equal({ |
| 748 | + done: false, |
| 749 | + value: { |
| 750 | + data: { |
| 751 | + asyncIterableListDelayed: [ |
| 752 | + { |
| 753 | + id: '1', |
| 754 | + name: 'Luke', |
| 755 | + }, |
| 756 | + ], |
| 757 | + }, |
| 758 | + hasNext: true, |
| 759 | + }, |
| 760 | + }); |
| 761 | + |
| 762 | + iterator.return?.(); |
| 763 | + |
| 764 | + // this result had started processing before return was called |
| 765 | + const result2 = await iterator.next(); |
| 766 | + expect(result2).to.deep.equal({ |
| 767 | + done: false, |
| 768 | + value: { |
| 769 | + data: { |
| 770 | + id: '2', |
| 771 | + name: 'Han', |
| 772 | + }, |
| 773 | + hasNext: true, |
| 774 | + path: ['asyncIterableListDelayed', 1], |
| 775 | + }, |
| 776 | + }); |
| 777 | + |
| 778 | + // third result is not returned because async iterator has returned |
| 779 | + const result3 = await iterator.next(); |
| 780 | + expect(result3).to.deep.equal({ |
| 781 | + done: false, |
| 782 | + value: { |
| 783 | + hasNext: false, |
| 784 | + }, |
| 785 | + }); |
| 786 | + }); |
| 787 | + it('Can return async iterable when underlying iterable does not have a return method', async () => { |
| 788 | + const document = parse(` |
| 789 | + query { |
| 790 | + asyncIterableListNoReturn @stream(initialCount: 1) { |
| 791 | + name |
| 792 | + id |
| 793 | + } |
| 794 | + } |
| 795 | + `); |
| 796 | + const schema = new GraphQLSchema({ query }); |
| 797 | + |
| 798 | + const executeResult = await execute({ schema, document, rootValue: {} }); |
| 799 | + invariant(isAsyncIterable(executeResult)); |
| 800 | + const iterator = executeResult[Symbol.asyncIterator](); |
| 801 | + |
| 802 | + const result1 = await iterator.next(); |
| 803 | + expect(result1).to.deep.equal({ |
| 804 | + done: false, |
| 805 | + value: { |
| 806 | + data: { |
| 807 | + asyncIterableListNoReturn: [ |
| 808 | + { |
| 809 | + id: '1', |
| 810 | + name: 'Luke', |
| 811 | + }, |
| 812 | + ], |
| 813 | + }, |
| 814 | + hasNext: true, |
| 815 | + }, |
| 816 | + }); |
| 817 | + |
| 818 | + iterator.return?.(); |
| 819 | + |
| 820 | + // this result had started processing before return was called |
| 821 | + const result2 = await iterator.next(); |
| 822 | + expect(result2).to.deep.equal({ |
| 823 | + done: false, |
| 824 | + value: { |
| 825 | + data: { |
| 826 | + id: '2', |
| 827 | + name: 'Han', |
| 828 | + }, |
| 829 | + hasNext: true, |
| 830 | + path: ['asyncIterableListNoReturn', 1], |
| 831 | + }, |
| 832 | + }); |
| 833 | + |
| 834 | + // third result is not returned because async iterator has returned |
| 835 | + const result3 = await iterator.next(); |
| 836 | + expect(result3).to.deep.equal({ |
| 837 | + done: false, |
| 838 | + value: { |
| 839 | + hasNext: false, |
| 840 | + }, |
| 841 | + }); |
| 842 | + }); |
| 843 | + it('Returns underlying async iterables when dispatcher is thrown', async () => { |
| 844 | + const document = parse(` |
| 845 | + query { |
| 846 | + asyncIterableListDelayed @stream(initialCount: 1) { |
| 847 | + name |
| 848 | + id |
| 849 | + } |
| 850 | + } |
| 851 | + `); |
| 852 | + const schema = new GraphQLSchema({ query }); |
| 853 | + |
| 854 | + const executeResult = await execute({ schema, document, rootValue: {} }); |
| 855 | + invariant(isAsyncIterable(executeResult)); |
| 856 | + const iterator = executeResult[Symbol.asyncIterator](); |
| 857 | + |
| 858 | + const result1 = await iterator.next(); |
| 859 | + expect(result1).to.deep.equal({ |
| 860 | + done: false, |
| 861 | + value: { |
| 862 | + data: { |
| 863 | + asyncIterableListDelayed: [ |
| 864 | + { |
| 865 | + id: '1', |
| 866 | + name: 'Luke', |
| 867 | + }, |
| 868 | + ], |
| 869 | + }, |
| 870 | + hasNext: true, |
| 871 | + }, |
| 872 | + }); |
| 873 | + |
| 874 | + iterator.throw?.(new Error('bad')); |
| 875 | + |
| 876 | + // this result had started processing before return was called |
| 877 | + const result2 = await iterator.next(); |
| 878 | + expect(result2).to.deep.equal({ |
| 879 | + done: false, |
| 880 | + value: { |
| 881 | + data: { |
| 882 | + id: '2', |
| 883 | + name: 'Han', |
| 884 | + }, |
| 885 | + hasNext: true, |
| 886 | + path: ['asyncIterableListDelayed', 1], |
| 887 | + }, |
| 888 | + }); |
| 889 | + |
| 890 | + // third result is not returned because async iterator has returned |
| 891 | + const result3 = await iterator.next(); |
| 892 | + expect(result3).to.deep.equal({ |
| 893 | + done: false, |
| 894 | + value: { |
| 895 | + hasNext: false, |
| 896 | + }, |
| 897 | + }); |
| 898 | + }); |
700 | 899 | });
|
0 commit comments