mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Int migration fix (#3323)
* Add fix for stock migration - Ensure the serial number is not too large when performing migration - Add unit test for data migration (cherry picked from commit661fbf0e3d
) * Add similar fixes for PO and SO migrations (cherry picked from commitbde23c130c
) * And similar fix for BuildOrder reference field (cherry picked from commitca0f4e0031
) * Update unit tests for API plugin mixin class - API at previous target URL has changed - Simplier to use the github API as a test case (cherry picked from commitdfe3172b7d
) * Revert test database name (cherry picked from commit53333c29c3
) * Override default URL behaviour for unit test (cherry picked from commit2c12a69529
)
This commit is contained in:
parent
2635327c51
commit
2afd39356a
@ -24,6 +24,10 @@ def build_refs(apps, schema_editor):
|
||||
except Exception: # pragma: no cover
|
||||
ref = 0
|
||||
|
||||
# Clip integer value to ensure it does not overflow database field
|
||||
if ref > 0x7fffffff:
|
||||
ref = 0x7fffffff
|
||||
|
||||
build.reference_int = ref
|
||||
build.save()
|
||||
|
||||
|
@ -23,6 +23,10 @@ def build_refs(apps, schema_editor):
|
||||
except Exception: # pragma: no cover
|
||||
ref = 0
|
||||
|
||||
# Clip integer value to ensure it does not overflow database field
|
||||
if ref > 0x7fffffff:
|
||||
ref = 0x7fffffff
|
||||
|
||||
order.reference_int = ref
|
||||
order.save()
|
||||
|
||||
@ -40,6 +44,10 @@ def build_refs(apps, schema_editor):
|
||||
except Exception: # pragma: no cover
|
||||
ref = 0
|
||||
|
||||
# Clip integer value to ensure it does not overflow database field
|
||||
if ref > 0x7fffffff:
|
||||
ref = 0x7fffffff
|
||||
|
||||
order.reference_int = ref
|
||||
order.save()
|
||||
|
||||
|
@ -49,6 +49,19 @@ class TestRefIntMigrations(MigratorTestCase):
|
||||
with self.assertRaises(AttributeError):
|
||||
print(sales_order.reference_int)
|
||||
|
||||
# Create orders with very large reference values
|
||||
self.po_pk = PurchaseOrder.objects.create(
|
||||
supplier=supplier,
|
||||
reference='999999999999999999999999999999999',
|
||||
description='Big reference field',
|
||||
).pk
|
||||
|
||||
self.so_pk = SalesOrder.objects.create(
|
||||
customer=supplier,
|
||||
reference='999999999999999999999999999999999',
|
||||
description='Big reference field',
|
||||
).pk
|
||||
|
||||
def test_ref_field(self):
|
||||
"""Test that the 'reference_int' field has been created and is filled out correctly."""
|
||||
PurchaseOrder = self.new_state.apps.get_model('order', 'purchaseorder')
|
||||
@ -63,6 +76,15 @@ class TestRefIntMigrations(MigratorTestCase):
|
||||
self.assertEqual(po.reference_int, ii)
|
||||
self.assertEqual(so.reference_int, ii)
|
||||
|
||||
# Tests for orders with overly large reference values
|
||||
po = PurchaseOrder.objects.get(pk=self.po_pk)
|
||||
self.assertEqual(po.reference, '999999999999999999999999999999999')
|
||||
self.assertEqual(po.reference_int, 0x7fffffff)
|
||||
|
||||
so = SalesOrder.objects.get(pk=self.so_pk)
|
||||
self.assertEqual(so.reference, '999999999999999999999999999999999')
|
||||
self.assertEqual(so.reference_int, 0x7fffffff)
|
||||
|
||||
|
||||
class TestShipmentMigration(MigratorTestCase):
|
||||
"""Test data migration for the "SalesOrderShipment" model."""
|
||||
|
@ -28,6 +28,9 @@ def update_serials(apps, schema_editor):
|
||||
except Exception:
|
||||
serial = 0
|
||||
|
||||
# Ensure the integer value is not too large for the database field
|
||||
if serial > 0x7fffffff:
|
||||
serial = 0x7fffffff
|
||||
|
||||
item.serial_int = serial
|
||||
item.save()
|
||||
|
69
InvenTree/stock/test_migrations.py
Normal file
69
InvenTree/stock/test_migrations.py
Normal file
@ -0,0 +1,69 @@
|
||||
"""Unit tests for data migrations in the 'stock' app"""
|
||||
|
||||
from django_test_migrations.contrib.unittest_case import MigratorTestCase
|
||||
|
||||
from InvenTree import helpers
|
||||
|
||||
|
||||
class TestSerialNumberMigration(MigratorTestCase):
|
||||
"""Test data migration which updates serial numbers"""
|
||||
|
||||
migrate_from = ('stock', '0067_alter_stockitem_part')
|
||||
migrate_to = ('stock', helpers.getNewestMigrationFile('stock'))
|
||||
|
||||
def prepare(self):
|
||||
"""Create initial data for this migration"""
|
||||
|
||||
Part = self.old_state.apps.get_model('part', 'part')
|
||||
StockItem = self.old_state.apps.get_model('stock', 'stockitem')
|
||||
|
||||
# Create a base part
|
||||
my_part = Part.objects.create(
|
||||
name='PART-123',
|
||||
description='Some part',
|
||||
active=True,
|
||||
trackable=True,
|
||||
level=0,
|
||||
tree_id=0,
|
||||
lft=0, rght=0
|
||||
)
|
||||
|
||||
# Create some serialized stock items
|
||||
for sn in range(10, 20):
|
||||
StockItem.objects.create(
|
||||
part=my_part,
|
||||
quantity=1,
|
||||
serial=sn,
|
||||
level=0,
|
||||
tree_id=0,
|
||||
lft=0, rght=0
|
||||
)
|
||||
|
||||
# Create a stock item with a very large serial number
|
||||
item = StockItem.objects.create(
|
||||
part=my_part,
|
||||
quantity=1,
|
||||
serial='9999999999999999999999999999999999999999999999999999999999999',
|
||||
level=0,
|
||||
tree_id=0,
|
||||
lft=0, rght=0
|
||||
)
|
||||
|
||||
self.big_ref_pk = item.pk
|
||||
|
||||
def test_migrations(self):
|
||||
"""Test that the migrations have been applied correctly"""
|
||||
|
||||
StockItem = self.new_state.apps.get_model('stock', 'stockitem')
|
||||
|
||||
# Check that the serial number integer conversion has been applied correctly
|
||||
for sn in range(10, 20):
|
||||
item = StockItem.objects.get(serial_int=sn)
|
||||
|
||||
self.assertEqual(item.serial, str(sn))
|
||||
|
||||
big_ref_item = StockItem.objects.get(pk=self.big_ref_pk)
|
||||
|
||||
# Check that the StockItem maximum serial number
|
||||
self.assertEqual(big_ref_item.serial, '9999999999999999999999999999999999999999999999999999999999999')
|
||||
self.assertEqual(big_ref_item.serial_int, 0x7fffffff)
|
Loading…
Reference in New Issue
Block a user