From 9b2c4b5af2b9a4bd94724885c6fb062d7ed14bfe Mon Sep 17 00:00:00 2001
From: Oleg Krivtsov <olegkrivtsov@gmail.com>
Date: Tue, 21 Dec 2021 15:16:41 +0700
Subject: [PATCH] test: error 502 is handled correctly in GitHub graphql
 (#13167)

Co-authored-by: Rhys Arkins <rhys@arkins.net>
---
 lib/util/http/github.spec.ts | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/lib/util/http/github.spec.ts b/lib/util/http/github.spec.ts
index 9f9340264c..abd17fc506 100644
--- a/lib/util/http/github.spec.ts
+++ b/lib/util/http/github.spec.ts
@@ -280,6 +280,7 @@ describe('util/http/github', () => {
           })
         ).rejects.toThrow('Validation error');
       });
+
       it('should throw original error of unknown type', async () => {
         await expect(
           fail(418, {
@@ -491,6 +492,23 @@ describe('util/http/github', () => {
       expect(trace).toHaveLength(4);
       expect(trace).toMatchSnapshot();
     });
+
+    it('continues to iterate with a lower page size on error 502', async () => {
+      httpMock
+        .scope(githubApiHost)
+        .post('/graphql')
+        .reply(502)
+        .post('/graphql')
+        .reply(200, page1)
+        .post('/graphql')
+        .reply(200, page2)
+        .post('/graphql')
+        .reply(200, page3);
+
+      const items = await githubApi.queryRepoField(graphqlQuery, 'testItem');
+      expect(items).toHaveLength(3);
+    });
+
     it('throws on 50x if count < 10', async () => {
       httpMock.scope(githubApiHost).post('/graphql').reply(500);
       await expect(
-- 
GitLab