[IMP] karma retag checks
[odoo/odoo.git] / addons / account / test / test_parent_structure.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #    
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.     
19 #
20 ##############################################################################
21
22 #
23 # TODO: move this in a YAML test with !python tag
24 #
25
26 import xmlrpclib
27
28 DB = 'training3'
29 USERID = 1
30 USERPASS = 'admin'
31
32
33 sock = xmlrpclib.ServerProxy('http://%s:%s/xmlrpc/object' % ('localhost',8069))
34
35 ids = sock.execute(DB, USERID, USERPASS, 'account.account', 'search', [], {})
36 account_lists = sock.execute(DB, USERID, USERPASS, 'account.account', 'read', ids, ['parent_id','parent_left','parent_right'])
37
38 accounts = dict(map(lambda x: (x['id'],x), account_lists))
39 for a in account_lists:
40     if a['parent_id']:
41         assert a['parent_left'] > accounts[a['parent_id'][0]]['parent_left']
42         assert a['parent_right'] < accounts[a['parent_id'][0]]['parent_right']
43     assert a['parent_left'] < a['parent_right']
44     for a2 in account_lists:
45         assert not ((a2['parent_right']>a['parent_left']) and 
46             (a2['parent_left']<a['parent_left']) and 
47             (a2['parent_right']<a['parent_right']))
48         if a2['parent_id']==a['id']:
49             assert (a2['parent_left']>a['parent_left']) and (a2['parent_right']<a['parent_right'])
50
51 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: