mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
62 lines
1.9 KiB
Python
62 lines
1.9 KiB
Python
import pytest
|
|
from assets import models
|
|
import datetime
|
|
|
|
|
|
@pytest.fixture
|
|
def category(db):
|
|
category = models.AssetCategory.objects.create(name="Sound")
|
|
yield category
|
|
category.delete()
|
|
|
|
|
|
@pytest.fixture
|
|
def status(db):
|
|
status = models.AssetStatus.objects.create(name="Broken", should_show=True)
|
|
yield status
|
|
status.delete()
|
|
|
|
|
|
@pytest.fixture
|
|
def cable_type(db):
|
|
connector = models.Connector.objects.create(description="16A IEC", current_rating=16, voltage_rating=240, num_pins=3)
|
|
cable_type = models.CableType.objects.create(circuits=11, cores=3, plug=connector, socket=connector)
|
|
yield cable_type
|
|
connector.delete()
|
|
cable_type.delete()
|
|
|
|
|
|
@pytest.fixture
|
|
def test_cable(db, category, status, cable_type):
|
|
cable = models.Asset.objects.create(asset_id="9666", description="125A -> Jack", comments="The cable from Hell...", status=status, category=category, date_acquired=datetime.date(2006, 6, 6), is_cable=True, cable_type=cable_type, length=10, csa="1.5", replacement_cost=50)
|
|
yield cable
|
|
cable.delete()
|
|
|
|
|
|
@pytest.fixture
|
|
def test_asset(db, category, status):
|
|
asset, created = models.Asset.objects.get_or_create(asset_id="91991", description="Spaceflower", status=status, category=category, date_acquired=datetime.date(1991, 12, 26), replacement_cost=100)
|
|
yield asset
|
|
asset.delete()
|
|
|
|
|
|
@pytest.fixture
|
|
def test_status_2(db):
|
|
status = models.AssetStatus.objects.create(name="Lost", should_show=False)
|
|
yield status
|
|
status.delete()
|
|
|
|
|
|
@pytest.fixture
|
|
def test_asset_2(db, category, test_status_2):
|
|
asset, created = models.Asset.objects.get_or_create(asset_id="10", description="Working Mic", status=test_status_2, category=category, date_acquired=datetime.date(2001, 10, 20), replacement_cost=1000)
|
|
yield asset
|
|
asset.delete()
|
|
|
|
|
|
@pytest.fixture
|
|
def test_supplier(db):
|
|
supplier, created = models.Supplier.objects.get_or_create(name="Fullmetal Heavy Industry")
|
|
yield supplier
|
|
supplier.delete()
|