コード例 #1
0
ファイル: test_handlers.py プロジェクト: hjlarry/practise-py
 def test_for_existing_product(self):
     bus = bootstrap_test_app()
     bus.handle(commands.CreateBatch("b1", "GARISH-RUG", 100, None))
     bus.handle(commands.CreateBatch("b2", "GARISH-RUG", 99, None))
     assert "b2" in [
         b.reference for b in bus.uow.products.get("GARISH-RUG").batches
     ]
コード例 #2
0
def test_allocations_view(sqlite_bus):
    sqlite_bus.handle(commands.CreateBatch('sku1batch', 'sku1', 50, None))
    sqlite_bus.handle(commands.CreateBatch('sku2batch', 'sku2', 50, date.today()))
    assert views.allocations('order1', sqlite_bus.uow) == [
        {'sku': 'sku1', 'batchref': 'sku1batch'},
        {'sku': 'sku2', 'batchref': 'sku2batch'},
    ]
コード例 #3
0
ファイル: test_views.py プロジェクト: hjlarry/practise-py
def test_deallocation(sqlite_bus):
    sqlite_bus.handle(commands.CreateBatch("b1", "sku1", 50, None))
    sqlite_bus.handle(commands.CreateBatch("b2", "sku1", 50, today))
    sqlite_bus.handle(commands.Allocate("o1", "sku1", 40))
    sqlite_bus.handle(commands.ChangeBatchQuantity("b1", 10))

    assert views.allocations("o1", sqlite_bus.uow) == [
        {
            "sku": "sku1",
            "batchref": "b2"
        },
    ]
コード例 #4
0
ファイル: test_handlers.py プロジェクト: hjlarry/practise-py
 def test_allocates(self):
     bus = bootstrap_test_app()
     bus.handle(
         commands.CreateBatch("batch1", "COMPLICATED-LAMP", 100, None))
     bus.handle(commands.Allocate("o1", "COMPLICATED-LAMP", 10))
     [batch] = bus.uow.products.get("COMPLICATED-LAMP").batches
     assert batch.available_quantity == 90
コード例 #5
0
ファイル: test_handlers.py プロジェクト: hjlarry/practise-py
 def test_change_available_quantity(self):
     bus = bootstrap_test_app()
     bus.handle(commands.CreateBatch("batch1", "ADORABLE-SETTEE", 100,
                                     None))
     [batch] = bus.uow.products.get(sku="ADORABLE-SETTEE").batches
     bus.handle(commands.ChangeBatchQuantity("batch1", 40))
     assert batch.available_quantity == 40
コード例 #6
0
async def add_batch(request):
    ref = request.form.get("ref")
    sku_ = request.form.get("sku")
    pq_ = request.form.get("purchased_quantity")
    command = commands.CreateBatch(ref=ref, sku=sku_, qty=pq_)
    results = await bus.handle(message=command)
    return response.text("ok")
コード例 #7
0
ファイル: flask_app.py プロジェクト: hjlarry/practise-py
def add_batch():
    eta = request.json["eta"]
    if eta is not None:
        eta = datetime.fromisoformat(eta).date()
    cmd = commands.CreateBatch(request.json["ref"], request.json["sku"],
                               request.json["qty"], eta)
    bus.handle(cmd)
    return "OK", 201
コード例 #8
0
def test_out_of_stock_email(bus):
    sku = random_sku()
    bus.handle(commands.CreateBatch('batch1', sku, 9, None))
    bus.handle(commands.Allocate('order1', sku, 10))
    email = get_email_from_mailhog(sku)
    assert email['Raw']['From'] == '*****@*****.**'
    assert email['Raw']['To'] == ['*****@*****.**']
    assert f'No {sku} unit' in email['Raw']['Data']
コード例 #9
0
def add_batch():
    eta = request.json['eta']
    if eta is not None:
        eta = datetime.fromisoformat(eta).date()
    cmd = commands.CreateBatch(request.json['ref'], request.json['sku'],
                               request.json['qty'], eta)
    bus.handle(cmd)
    return 'OK', 201
コード例 #10
0
ファイル: test_handlers.py プロジェクト: hjlarry/practise-py
    def test_reallocates_if_necessary(self):
        bus = bootstrap_test_app()
        history = [
            commands.CreateBatch("batch1", "INDIFFERENT-TABLE", 50, None),
            commands.CreateBatch("batch2", "INDIFFERENT-TABLE", 50,
                                 date.today()),
            commands.Allocate("order1", "INDIFFERENT-TABLE", 20),
            commands.Allocate("order2", "INDIFFERENT-TABLE", 20),
        ]
        for msg in history:
            bus.handle(msg)
        [batch1,
         batch2] = bus.uow.products.get(sku="INDIFFERENT-TABLE").batches
        assert batch1.available_quantity == 10
        assert batch2.available_quantity == 50

        bus.handle(commands.ChangeBatchQuantity("batch1", 25))
        # order1 or order2 will be deallocated, so we'll have 25 - 20
        assert batch1.available_quantity == 5
        # and 20 will be reallocated to the next batch
        assert batch2.available_quantity == 30
コード例 #11
0
ファイル: test_views.py プロジェクト: hjlarry/practise-py
def test_allocations_view(sqlite_bus):
    sqlite_bus.handle(commands.CreateBatch("sku1batch", "sku1", 50, None))
    sqlite_bus.handle(commands.CreateBatch("sku2batch", "sku2", 50, today))
    sqlite_bus.handle(commands.Allocate("order1", "sku1", 20))
    sqlite_bus.handle(commands.Allocate("order1", "sku2", 20))
    # add a spurious batch and order to make sure we're getting the right ones
    sqlite_bus.handle(
        commands.CreateBatch("sku1batch-later", "sku1", 50, today))
    sqlite_bus.handle(commands.Allocate("otherorder", "sku1", 30))
    sqlite_bus.handle(commands.Allocate("otherorder", "sku2", 10))

    assert views.allocations("order1", sqlite_bus.uow) == [
        {
            "sku": "sku1",
            "batchref": "sku1batch"
        },
        {
            "sku": "sku2",
            "batchref": "sku2batch"
        },
    ]
コード例 #12
0
ファイル: test_handlers.py プロジェクト: hjlarry/practise-py
 def test_sends_email_on_out_of_stock_error(self):
     fake_notifs = FakeNotifications()
     bus = bootstrap.bootstrap(
         start_orm=False,
         uow=FakeUnitOfWork(),
         notifications=fake_notifs,
         publish=lambda *args: None,
     )
     bus.handle(commands.CreateBatch("b1", "POPULAR-CURTAINS", 9, None))
     bus.handle(commands.Allocate("o1", "POPULAR-CURTAINS", 10))
     assert fake_notifs.sent["*****@*****.**"] == [
         f"Out of stock for POPULAR-CURTAINS",
     ]
コード例 #13
0
ファイル: test_handlers.py プロジェクト: hjlarry/practise-py
 def test_commits(self):
     bus = bootstrap_test_app()
     bus.handle(commands.CreateBatch("b1", "OMINOUS-MIRROR", 100, None))
     bus.handle(commands.Allocate("o1", "OMINOUS-MIRROR", 10))
     assert bus.uow.committed is True
コード例 #14
0
ファイル: test_handlers.py プロジェクト: hjlarry/practise-py
 def test_error_for_invalid_sku(self):
     bus = bootstrap_test_app()
     bus.handle(commands.CreateBatch("b1", "AREALSKU", 100, None))
     with pytest.raises(handlers.InvalidSku,
                        match="Invalid sku NONEXISTENTSKU"):
         bus.handle(commands.Allocate("o1", "NONEXISTENTSKU", 10))
コード例 #15
0
ファイル: test_handlers.py プロジェクト: hjlarry/practise-py
 def test_for_new_product(self):
     bus = bootstrap_test_app()
     bus.handle(commands.CreateBatch("b1", "CRUNCHY-ARMCHAIR", 100, None))
     assert bus.uow.products.get("CRUNCHY-ARMCHAIR") is not None
     assert bus.uow.committed