簡體   English   中英

如何在Python中模擬此單元測試?

[英]How to mock this unit test in Python?

這是我要測試的方法。 在此測試方法(test_get_all_products)中,我希望傳遞產品列表和針對dal標識的DB調用的模擬響應。

def get_all_user_standalone_products(all_products, dal):
standalone_products = []
if all_products is not None:
    all_products = all_products['userRenewableProduct']
    for product in all_products:
        sku_id = product.get('skuID', 0)
        sku_cost_id = product.get('skuCostID', 0)
        standalone_product = which_standalone_product(sku_id)

        if product.get('isDisabled') or standalone_product is None:
            continue

        product['productType'] = standalone_product['name']

        sku_cost_data = dal.skucosts.get_costs_for_sku_cost_id(
            sku_cost_id)
        product['termMonths'] = sku_cost_data['termMonths']

        upgrade_sku_ids = standalone_product.get(
            'upgrade_sku_ids', [])
        if len(upgrade_sku_ids) > 0:
            product['canUpgrade'] = True

        product['upgradeSkus'] = upgrade_sku_ids
        standalone_products.append(product)
return standalone_products

這是我的考驗

product_sku_cost= {
        u'testPriceSetID':u'',
        u'skuID':88,
        u'currencyTypeID':1,
        u'termMonths':1,
        u'dateCreated':   u'2015-10-07T17:03:00   Z',
        u'skuCostID':2840,
        u'cost':9900,
        u'skuTypeID':13,
        u'dateModified':   u'2015-10-07T17:03:00   Z',
        u'isDefault':True,
        u'name':u'Product'}

@patch('model.dal')
def test_get_all_products(self, dal):
      # this is my mock - I want it to return the dictionary above.
      dal.SKUCosts.get_costs_for_sku_cost_id.return_value = product_sku_cost
      products = get_all_user_standalone_products(renewable_products, dal)

      assert products[0]['canUpgrade'] is True
      assert products[0]['termMonths'] == 1

但是,當我斷言來自模擬對象的product [0] ['termMonths'] == 1時,它會失敗,因為termMonths實際上是Mock對象本身,而不是我期望的返回值(product_sku_cost)。

請幫助我找出上面我做錯的事情。

只是TYPO錯誤:嘗試將SKUCost更改為在dal處配置的skucost 因此,配置行變為:

dal.skucsts.get_costs_for_sku_cost_id.return_value = product_sku_cost

無論如何,您的測試中還有其他問題:您不需要在測試中打補丁,因為您正在傳遞dal對象,而沒有使用model.dal引用。 我不知道是什么model.dal但是如果您想要做的是具有相同的簽名/屬性 ,則可以使用create_autospec進行構建。

您的測試可以是:

def test_get_all_products(self, dal):
   # this is my mock - I want it to return the dictionary above.
   dal = create_autospec(model.dal)
   dal.skucosts.get_costs_for_sku_cost_id.return_value = product_sku_cost
   ...

如果model.dal是一個類,則在創建自動指定時使用instance=True

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM