From fc6f1b4acc767f8b76d48aeb10aa342e26a4f8a0 Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 1 Dec 2021 23:45:16 +0100 Subject: [PATCH] unittests to show the fix works --- InvenTree/order/test_api.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/InvenTree/order/test_api.py b/InvenTree/order/test_api.py index 94e9696e0a..7dd92bdd19 100644 --- a/InvenTree/order/test_api.py +++ b/InvenTree/order/test_api.py @@ -105,6 +105,33 @@ class PurchaseOrderTest(OrderTest): self.assertEqual(data['pk'], 1) self.assertEqual(data['description'], 'Ordering some screws') + def test_po_reference(self): + """test that a reference with a too big / small reference is not possible""" + url = reverse('api-po-list') + huge_numer = 9223372036854775808 + + # too big + self.post( + url, + { + 'supplier': 1, + 'reference': huge_numer, + 'description': 'PO not created via the API', + }, + expected_code=400 + ) + + # too small + self.post( + url, + { + 'supplier': 1, + 'reference': -huge_numer, + 'description': 'PO not created via the API', + }, + expected_code=400 + ) + def test_po_attachments(self): url = reverse('api-po-attachment-list')