Browse Source

[ADD] Tests For partner-firstname

pull/2/head
Jonathan Nemry 11 years ago
parent
commit
67204566a0
  1. 37
      partner_firstname/tests/__init__.py
  2. 96
      partner_firstname/tests/test_partner_firstname.py

37
partner_firstname/tests/__init__.py

@ -0,0 +1,37 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Authors: Nemry Jonathan
# Copyright (c) 2014 Acsone SA/NV (http://www.acsone.eu)
# All Rights Reserved
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsibility of assessing all potential
# consequences resulting from its eventual inadequacies and bugs.
# End users who are looking for a ready-to-use solution with commercial
# guarantees and support are strongly advised to contact a Free Software
# Service Company.
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
import test_partner_firstname
checks = [
test_partner_firstname
]
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

96
partner_firstname/tests/test_partner_firstname.py

@ -0,0 +1,96 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Authors: Nemry Jonathan
# Copyright (c) 2014 Acsone SA/NV (http://www.acsone.eu)
# All Rights Reserved
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsibility of assessing all potential
# consequences resulting from its eventual inadequacies and bugs.
# End users who are looking for a ready-to-use solution with commercial
# guarantees and support are strongly advised to contact a Free Software
# Service Company.
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
import openerp.tests.common as common
ADMIN_USER_ID = common.ADMIN_USER_ID
class test_partner_firstname(common.TransactionCase):
def setUp(self):
super(test_partner_firstname, self).setUp()
self.registry('ir.model').clear_caches()
self.registry('ir.model.data').clear_caches()
self.user_model = self.registry("res.users")
self.partner_model = self.registry("res.partner")
self.dict_partner = {'lastname': 'lastname', 'firstname': 'firstname'}
self.dict_user = {'name': 'lastname', 'login': 'v5Ue4Tql0Pm67KX05g25A'}
def test_copy_partner(self):
cr, uid = self.cr, ADMIN_USER_ID
res_id = self.partner_model.create(cr, uid, self.dict_partner, context={})
res_id = self.partner_model.copy(cr, uid, res_id, default={}, context={})
vals = self.partner_model.read(cr, uid, [res_id], ['name', 'lastname', 'firstname'], context={})[0]
self.assertEqual(vals['name'] == "lastname (copy) firstname" and
vals['lastname'] == 'lastname (copy)' and
vals['firstname'] == 'firstname', True, 'Copy of the partner failed with wrong values')
def test_copy_user(self):
cr, uid = self.cr, ADMIN_USER_ID
# create a user
res_id = self.user_model.create(cr, uid, self.dict_user, context={})
# get the related partner id and add it a firstname
dict = self.user_model.read(cr, uid, [res_id], ['partner_id'], context={})[0]
self.partner_model.write(cr, uid, dict['partner_id'][0], {'firstname':'firstname'}, context={})
# copy the user and compare result
res_id = self.user_model.copy(cr, uid, res_id, default={}, context={})
vals = self.user_model.read(cr, uid, [res_id], ['name', 'lastname', 'firstname'], context={})[0]
self.assertEqual(vals['name'] == "lastname (copy) firstname" and
vals['lastname'] == 'lastname (copy)' and
vals['firstname'] == 'firstname', True, 'Copy of the user failed with wrong values')
def test_update_user_lastname(self):
cr, uid = self.cr, ADMIN_USER_ID
# create a user
res_id = self.user_model.create(cr, uid, self.dict_user, context={})
# get the related partner id and add it a firstname
dict = self.user_model.read(cr, uid, [res_id], ['partner_id'], context={})[0]
self.partner_model.write(cr, uid, dict['partner_id'][0], {'firstname':'firstname'}, context={})
self.user_model.write(cr, uid, res_id, {'name': 'change firstname'}, context={})
vals = self.user_model.read(cr, uid, [res_id], ['name', 'lastname', 'firstname'], context={})[0]
self.assertEqual(vals['name'] == "change firstname" and
vals['lastname'] == 'change' and
vals['firstname'] == 'firstname', True, 'Update of the user lastname failed with wrong values')
def test_update_user_firstname(self):
cr, uid = self.cr, ADMIN_USER_ID
# create a user
res_id = self.user_model.create(cr, uid, self.dict_user, context={})
# get the related partner id and add it a firstname
dict = self.user_model.read(cr, uid, [res_id], ['partner_id'], context={})[0]
self.partner_model.write(cr, uid, dict['partner_id'][0], {'firstname':'firstname'}, context={})
self.user_model.write(cr, uid, res_id, {'name': 'lastname other'}, context={})
vals = self.user_model.read(cr, uid, [res_id], ['name', 'lastname', 'firstname'], context={})[0]
self.assertEqual(vals['name'] == "lastname other" and
vals['lastname'] == 'lastname other' and
vals['firstname'] == False, True, 'Update of the user firstname failed with wrong values')
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
Loading…
Cancel
Save