[fix] some problems in o2m
[odoo/odoo.git] / addons / account_asset / test / account_asset.yml
index b56aa02..e9f7573 100644 (file)
@@ -1,55 +1,35 @@
 -
-  In order to test Account Asset I create Asset and confirm it and check it's Depriciation lines
-- 
-  I Create an Asset Category
-- 
-  !record {model: account.asset.category, id: account_asset_category_landbuildings0}:
-    account_asset_id: account.xfa
-    account_depreciation_id: account.xfa
-    account_expense_depreciation_id: account.a_expense
-    journal_id: account.expenses_journal
-    name: Land & Buildings
-- 
-  I Create an Account Asset
-- 
-  !record {model: account.asset.asset, id: account_asset_asset_Land0}:
-    category_id: account_asset_category_landbuildings0
-    code: land
-    name: Land
-    partner_id: base.res_partner_14
-    purchase_value: 5000.0
-    state: draft
--
-  I check Initially that Account Asset is in the "Draft" state
--
-  !assert {model: account.asset.asset, id: account_asset_asset_Land0}:
-    - state == 'draft'
--
-  I Confirm Account Asset using Confirm Asset button
+  In order to test the process of Account Asset, I perform a action to confirm Account Asset.
 -
   !python {model: account.asset.asset}: |
-    self.validate(cr, uid, [ref("account_asset_asset_Land0")])
+    self.validate(cr, uid, [ref("account_asset_asset_vehicles0")])
 -
-  I check Asset is in running state after pressing Confirm button on asset
+  I check Asset is now in Open state.
 -
-  !assert {model: account.asset.asset, id: account_asset_asset_Land0}:
+  !assert {model: account.asset.asset, id: account_asset_asset_vehicles0, severity: error, string: Asset should be in Open state}:
     - state == 'open'
 -
-  I Compute Account Asset using Compute button and check the number of depreciation lines created
+  I compute depreciation lines for asset of CEO's Car .
 -
   !python {model: account.asset.asset}: |
-    self.compute_depreciation_board(cr, uid, [ref("account_asset_asset_Land0")])
+    self.compute_depreciation_board(cr, uid, [ref("account_asset_asset_vehicles0")])
     # pressing computation button can be remove if creation of depreciation lines while asset is created
-    value = self.browse(cr, uid, [ref("account_asset_asset_Land0")])[0]
-    assert value.method_number == len(value.depreciation_line_ids)
+    value = self.browse(cr, uid, [ref("account_asset_asset_vehicles0")])[0]
+    assert value.method_number == len(value.depreciation_line_ids), 'Depreciation lines not created correctly'
 -
-  I Create Account Move using create move button on depreciation lines
+  I create account move for all depreciation lines.
 -
   !python {model: account.asset.depreciation.line}: |
-    ids = self.search(cr, uid, [('asset_id','=',ref('account_asset_asset_Land0'))])
+    ids = self.search(cr, uid, [('asset_id','=',ref('account_asset_asset_vehicles0'))])
     self.create_move(cr, uid, ids)
 -
-  I Check that After creating all the moves of depreciation lines the state is in "Close" state
+  I check the move line is created.
 -
-  !assert {model: account.asset.asset, id: account_asset_asset_Land0}:
+  !python {model: account.asset.asset}: |
+    asset = self.browse(cr, uid, [ref("account_asset_asset_vehicles0")])[0]
+    assert len(asset.depreciation_line_ids) == len(asset.account_move_line_ids), 'Move lines not created correctly'
+-
+  I Check that After creating all the moves of depreciation lines the state "Close".
+-
+  !assert {model: account.asset.asset, id: account_asset_asset_vehicles0}:
     - state == 'close'