Coworking/coworking_coworker/tests/test_coworking_coworker.py

50 lines
1.9 KiB
Python

# -*- coding: utf-8 -*-
""" Coworking cowoker testing module """
from datetime import date
from odoo import fields
from odoo.exceptions import ValidationError
from odoo.tests.common import TransactionCase
class TestCoworkingCoworker(TransactionCase):
""" Coworking cowoker testing """
def setUp(self, *args, **kwargs):
""" Bootstrap testing """
super(TestCoworkingCoworker, self).setUp(*args, **kwargs)
data = {'name': 'Homer Simpson', 'is_coworker': True}
self.homer = self.env['res.partner'].create(data)
fulladdr = {'street': '26 rue de la concorde', 'contact_zip': '87452',
'city': 'Lyon'}
self.rue = self.env['res.partner'].create(fulladdr)
def test_contact_date(self):
""" Test contact date : default to today and validity """
contact_date = fields.Date.from_string(self.homer.contact_date)
self.assertEqual(contact_date, date.today())
marge = self.env['res.partner'].create({'name': 'Marge Simpson',
'contact_date': '2017-01-01'})
self.assertEqual(marge.contact_date, '2017-01-01')
with self.assertRaises(ValidationError) as err:
data = {'name': 'Bart Simpson', 'contact_date': '2999-01-01'}
self.env['res.partner'].create(data)
self.assertIn('equal of inferior to', unicode(err.exception))
def test_full_address(self):
""" Test full address rendering """
full_contact_adress = fields.Char.from_string(self.rue.full_contact_adress)
self.assertEqual(full_contact_adress)
address = self.env['coworking.coworker'].create({
'street': '29 Grande rue', 'contact_zip': '26270', 'city': 'Loriol'})
def test_manage_coworker_type(self):
""" Test that non-coworker have not coworker_type fixed """
pass