[IMP] Improved YML test cases of Purchase_double_validation module.

bzr revid: tpa@tinyerp.com-20111216080055-ikpnnuwkaa785pbw
This commit is contained in:
Turkesh Patel (Open ERP) 2011-12-16 13:30:55 +05:30
parent 2c87b0e5f9
commit c7027f8e95
2 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,12 @@
-
!record {model: purchase.order, id: order_purchase11}:
partner_id: base.res_partner_desertic_hispafuentes
order_line:
- product_id: product.product_product_pc4
product_qty: 10
-
!record {model: purchase.order, id: order_purchase12}:
partner_id: base.res_partner_vickingdirect0
order_line:
- product_id: product.product_product_hdd2
product_qty: 10

View File

@ -0,0 +1,51 @@
-
I Create new limit amount from Configure Limit Amount for Purchase wizard.
-
!record {model: purchase.double.validation.installer, id: purchase_double_validation_installer_1}:
limit_amount: 3000
-
I set the Limit Amount.
-
!python {model: purchase.double.validation.installer}: |
self.execute(cr, uid, [ref("purchase_double_validation_installer_1")])
-
I Test for purchase double validation in which Total > = Limit Amount.
-
!python {model: purchase.order}: |
installer_amount = self.pool.get('purchase.double.validation.installer').browse(cr, uid, ref("purchase_double_validation_installer_1"))
purchase_order = self.browse(cr, uid, ref("order_purchase11"))
assert purchase_order.amount_total >= installer_amount.limit_amount ,"Total is Less then the Limit Amount"
-
In order to test the flow, I confirmed the purchase order.
-
!workflow {model: purchase.order, action: purchase_confirm, ref: order_purchase11}
-
I check that the order which was initially in the draft state has transmit to confirm state for double validation.
-
!assert {model: purchase.order, id: order_purchase11, severity: error, string: Purchase Order should be in Confirmed state.}:
- state == 'confirmed'
-
I Approved the purchase order.
-
!workflow {model: purchase.order, action: purchase_approve, ref: order_purchase11}
-
I check that the order which was initially in the confirmed state has transmit to approved state.
-
!assert {model: purchase.order, id: order_purchase11, severity: error, string: Purchase Order should be in Approved state.}:
- state == 'approved'
-
Test for purchase double validation in which Total < = Limit Amount.
-
!python {model: purchase.order}: |
installer_amount = self.pool.get('purchase.double.validation.installer').browse(cr, uid, ref("purchase_double_validation_installer_1"))
purchase_order = self.browse(cr, uid, ref("order_purchase12"))
assert purchase_order.amount_total <= installer_amount.limit_amount ,"Total is Greater then the Limit Amount"
-
I confirmed the purchase order.
-
!workflow {model: purchase.order, action: purchase_confirm, ref: order_purchase12}
-
I check that the order is in approved state.
-
!assert {model: purchase.order, id: order_purchase12, severity: error, string: Purchase Order should be in Approved state.}:
- state == 'approved'