|
4 | 4 | from unittest import skip
|
5 | 5 | from unittest.mock import patch
|
6 | 6 | import uuid
|
| 7 | +from requests.exceptions import HTTPError |
7 | 8 |
|
8 | 9 |
|
9 | 10 | class TestGlideBigTableRestStrategy(unittest.TestCase):
|
@@ -52,6 +53,22 @@ def test_add_rows_batching(self, mock_post):
|
52 | 53 | self.assertEqual(1, mock_post.call_count)
|
53 | 54 | self.assertEqual(mock_post.call_args.kwargs["json"], test_rows)
|
54 | 55 |
|
| 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 | + |
55 | 72 | def test_commit_with_pre_existing_table(self):
|
56 | 73 | with patch.object(requests, "post") as mock_post:
|
57 | 74 | TEST_ROW_COUNT = self.batch_size
|
|
0 commit comments