-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathinit_odoo.py
74 lines (66 loc) · 2.14 KB
/
init_odoo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
"""Utilities to run and setup Odoo using Docker."""
import subprocess
import time
import erppeek
def odoo_start():
try:
erppeek.Client(server='http://localhost:8069')
except:
cmd = 'docker-compose up -d'
subprocess.call(cmd, shell=True)
else:
print "Odoo server is running."
return
# Wait for Odoo to be loaded.
print "Waiting for Odoo server to be available..."
time.sleep(3)
limit = time.time() + 30
proofs_of_service = [
'openerp.service.server: HTTP service (werkzeug) ' # ...
'running on 0.0.0.0:8069',
'openerp.addons.bus.bus: Bus.loop listen imbus on db postgres',
]
while time.time() < limit:
cmd = 'docker logs {docker_instance}'.format(
docker_instance='odooselenium_odoo_1')
output = subprocess.check_output(cmd, shell=True)
if all([proof in output for proof in proofs_of_service]):
break
else:
time.sleep(1)
print "... Odoo server up and running!"
def odoo_stop():
cmd = 'docker-compose stop'
subprocess.call(cmd, shell=True)
def odoo_setup():
odoo = erppeek.Client(
server='http://localhost:8069',
)
dbname = u'test'
if dbname not in odoo.db.list():
print "Creating database {0}...".format(dbname)
odoo.create_database('admin', dbname)
print "... Database '{0}' created.".format(dbname)
else:
print "Database '{0}' already exists.".format(dbname)
# Log in database.
odoo = erppeek.Client(
server='http://localhost:8069',
db='test',
user='admin',
password='admin',
)
modules = [
'account_accountant',
'web_selenium',
]
print "Installing addons..."
for module in modules:
if module not in odoo.modules()['installed']:
assert module in odoo.modules()['uninstalled'], \
'{0} addon is not available. Check extra addons path.' \
.format(module)
odoo.install(module)
else:
print "Addon '{0}' already installed.".format(module)
print "... Additional modules installed."