@@ -9,6 +9,7 @@ import { InputType, OutputType, ReceiptType } from '@fuel-ts/transactions';
9
9
import { DateTime , arrayify , hexlify , sleep } from '@fuel-ts/utils' ;
10
10
import { ASSET_A , ASSET_B } from '@fuel-ts/utils/test-utils' ;
11
11
import { versions } from '@fuel-ts/versions' ;
12
+ import type { MockInstance } from 'vitest' ;
12
13
13
14
import { Wallet } from '..' ;
14
15
import {
@@ -1753,6 +1754,53 @@ describe('Provider', () => {
1753
1754
expect ( numberOfEvents ) . toEqual ( 2 ) ;
1754
1755
} ) ;
1755
1756
1757
+ it ( 'subscriptions: streams are consumed even if the async iterator is not' , async ( ) => {
1758
+ using launched = await setupTestProviderAndWallets ( ) ;
1759
+ const { provider } = launched ;
1760
+
1761
+ const sseResponse = new TextEncoder ( ) . encode ( `data:{"field":"not-relevant"}\n\n` ) ;
1762
+
1763
+ let pullCallNum = 0 ;
1764
+
1765
+ const underlyingSource : UnderlyingDefaultSource = {
1766
+ pull : ( controller ) => {
1767
+ pullCallNum += 1 ;
1768
+ controller . enqueue ( sseResponse ) ;
1769
+ if ( pullCallNum === 20 ) {
1770
+ controller . close ( ) ;
1771
+ }
1772
+ } ,
1773
+ } ;
1774
+
1775
+ const pullSpy : MockInstance = vi . spyOn ( underlyingSource , 'pull' ) ;
1776
+
1777
+ vi . spyOn ( global , 'fetch' ) . mockImplementationOnce ( ( ) =>
1778
+ Promise . resolve (
1779
+ new Response (
1780
+ new ReadableStream (
1781
+ underlyingSource ,
1782
+ /**
1783
+ * Only pull when .read() is called.
1784
+ * Don't do any behind-the-scenes buffering
1785
+ * so that we can test that the sdk itself is pulling
1786
+ * even if the user isn't reading.
1787
+ */
1788
+ { highWaterMark : 0 }
1789
+ )
1790
+ )
1791
+ )
1792
+ ) ;
1793
+
1794
+ await provider . operations . submitAndAwaitStatus ( {
1795
+ encodedTransaction : "it's mocked so doesn't matter" ,
1796
+ } ) ;
1797
+
1798
+ // give time for the pulls to be called in the background
1799
+ await sleep ( 500 ) ;
1800
+
1801
+ expect ( pullSpy ) . toHaveBeenCalledTimes ( 20 ) ;
1802
+ } ) ;
1803
+
1756
1804
it ( 'subscriptions: throws if the stream data string parsing fails for some reason' , async ( ) => {
1757
1805
using launched = await setupTestProviderAndWallets ( ) ;
1758
1806
const { provider } = launched ;
0 commit comments