تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
3893 أدوات العرض

I'm developing some unit tests for a some methods I added to the product model. In order to make the tests more lean I'm trying to avoid hitting the database and so I'm creating the objects on the fly like this:


class TestModelProduct(common.SingleTransactionCase):
...

   def my_test(self):
object_being_tested = self.env['product.product'].create({'field_something': 'value_something' }) 
child_product = self.env['product.product'].create({'parent_id': object_being_tested.product.id})
...
child_product.write({'field_I_want_to_change': 4.0})
_logger.warning("VALUE: %s", child_product.field_I_want_to_change)
#
#WARNING qa openerp.addons.my_module.tests.test_product:VALUE: 0.0

object_being_tested.method_being_tested(arg1,arg2,arg3)
...
#assertions


The problem I'm having is that when I set the value of 'field_I_want_to_change', that value is not set in the object for some reason.

Am I missing something about the objects that are created inside these tests?


EDIT: after further investigation I found the field is a function field so that may be the root of the problem. Is there a way to override that function?

الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
6
ديسمبر 23
41648
1
يناير 23
3915
0
أكتوبر 22
1521
0
أغسطس 22
3
0
ديسمبر 21
51