Skip to content

Commit 48251d9

Browse files
committed
Test for current 413 behavior
1 parent a965978 commit 48251d9

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

airbyte-integrations/connectors/destination-glide/destination_glide/glide.py

+1
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ def _flush_buffer(self):
137137
try:
138138
r.raise_for_status()
139139
except Exception as e:
140+
# FIXME: if this is a 413, make the batch size smaller and retry
140141
raise Exception(f"Failed to post rows batch to {path} : {r.text}") from e # nopep8
141142

142143
logger.info(f"Successfully posted {len(rows)} rows to {path}") # nopep8

airbyte-integrations/connectors/destination-glide/unit_tests/GlideBigTableRestStrategy_test.py

+17
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
from unittest import skip
55
from unittest.mock import patch
66
import uuid
7+
from requests.exceptions import HTTPError
78

89

910
class TestGlideBigTableRestStrategy(unittest.TestCase):
@@ -52,6 +53,22 @@ def test_add_rows_batching(self, mock_post):
5253
self.assertEqual(1, mock_post.call_count)
5354
self.assertEqual(mock_post.call_args.kwargs["json"], test_rows)
5455

56+
@patch.object(requests, "post")
57+
def test_add_rows_413(self, mock_post):
58+
self.gbt.batch_size = 1
59+
mock_post.return_value.status_code = 413
60+
mock_post.return_value.text = "Payload Too Large"
61+
mock_post.return_value.raise_for_status.side_effect = HTTPError("413 Client Error: Payload Too Large")
62+
63+
with self.assertRaises(Exception) as context:
64+
self.gbt.add_rows([
65+
{"test-str": "one", "test-num": 1},
66+
{"test-str": "two", "test-num": 2},
67+
{"test-str": "three", "test-num": 3},
68+
{"test-str": "four", "test-num": 4}])
69+
70+
self.assertIn("Failed to post rows batch", str(context.exception))
71+
5572
def test_commit_with_pre_existing_table(self):
5673
with patch.object(requests, "post") as mock_post:
5774
TEST_ROW_COUNT = self.batch_size

0 commit comments

Comments
 (0)