Adding automated tests

bzr revid: fp@tinyerp.com-c72339a71950b8cee2e4ee7736de63aeb7ba18f8
This commit is contained in:
Fabien Pinckaers 2007-08-14 07:24:44 +00:00
parent 23b945d543
commit e8a178bf0a
1 changed files with 111 additions and 0 deletions

View File

@ -0,0 +1,111 @@
##############################################################################
#
# Copyright (c) 2004 TINY SPRL. (http://tiny.be) All Rights Reserved.
# Fabien Pinckaers <fp@tiny.Be>
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability 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
# garantees and support are strongly adviced to contract 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.
#
##############################################################################
#
# This script will automatically test all profiles, localisations and language
# packs You must start the Tiny ERP server and not have a test database. You
# may also have to change some data in the top of this file.
#
import xmlrpclib
import time
import base64
url = 'http://localhost:8069/xmlrpc'
profiles = [
'profile_accounting',
'profile_manufacturing',
'profile_service'
]
l10n_charts = [
'l10n_be',
'l10n_fr',
'l10n_chart_uk_minimal'
]
dbname = 'test'
admin_passwd = 'admin'
lang = False # List of langs of False for all
sock = xmlrpclib.ServerProxy(url+'/object')
sock2 = xmlrpclib.ServerProxy(url+'/db')
sock3 = xmlrpclib.ServerProxy(url+'/common')
sock4 = xmlrpclib.ServerProxy(url+'/wizard')
demos = [True]
langs = lang or (map(lambda x: x[0], sock2.list_lang()) + ['en_US'])
def wait(id):
progress=0.0
while not progress==1.0:
progress,users = sock2.get_progress(admin_passwd, id)
return True
for demo in demos:
for lang in langs:
print 'Testing Language', lang, 'with demo', demo, '...'
for l10n in l10n_charts:
print '\tTesting localisation', l10n, '...'
for prof in profiles:
print '\t\tTesting profile', prof, '...'
id = sock2.create(admin_passwd, dbname, demo, lang)
print 'Creating DB', id
wait(id)
uid = sock3.login(dbname, 'admin','admin')
idprof = sock.execute(dbname, uid, 'admin', 'ir.module.module', 'search', [('name','=',prof)])
idl10n = sock.execute(dbname, uid, 'admin', 'ir.module.module', 'search', [('name','=',l10n)])
wiz_id = sock4.create(dbname, uid, 'admin', 'base_setup.base_setup')
state = 'init'
datas = {'form':{}}
while state!='menu':
res = sock4.execute(dbname, uid, 'admin', wiz_id, datas, state, {})
if 'datas' in res:
datas['form'].update( res['datas'] )
if res['type']=='form':
for field in res['fields'].keys():
datas['form'][field] = res['fields'][field].get('value', False)
state = res['state'][-1][0]
datas['form'].update({
'profile': idprof[0],
'charts': idl10n[0],
})
elif res['type']=='state':
state = res['state']
sock.execute(dbname, uid, 'admin', 'res.partner', 'search', [])
ok = False
range = 4
while (not ok) and range:
try:
time.sleep(2)
id = sock2.drop(admin_passwd, dbname)
ok = True
except:
range -= 1