Create common form handler page
[cascardo/ipsilon.git] / quickrun.py
1 #!/usr/bin/python
2 #
3 # Copyright (C) 2014  Simo Sorce <simo@redhat.com>
4 #
5 # see file 'COPYING' for use and warranty information
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (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 General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20 import argparse
21 import os
22 import subprocess
23 from string import Template
24
25
26 logger = None
27
28
29 def parse_args():
30     parser = argparse.ArgumentParser(description=\
31         'Run a test Ipsilon instance from the checkout directory')
32     parser.add_argument('--workdir', default=os.path.join(os.getcwd(), 'qrun'),
33                         help="Directory in which db/session files are stored")
34     return vars(parser.parse_args())
35
36
37 CONF_TEMPLATE='''
38 [global]
39 debug = True
40
41 log.screen = True
42 base.mount = "/idp"
43 base.dir = "${BASEDIR}"
44 admin.config.db = "${ADMINDB}"
45 user.prefs.db = "${USERSDB}"
46
47 tools.sessions.on = True
48 tools.sessions.storage_type = "file"
49 tools.sessions.storage_path = "${WORKDIR}/sessions"
50 tools.sessions.timeout = 60
51 '''
52
53 ADMIN_TEMPLATE='''
54 CREATE TABLE login_config (name TEXT,option TEXT,value TEXT);
55 INSERT INTO login_config VALUES('global', 'order', 'testauth');
56 '''
57
58 USERS_TEMPLATE='''
59 CREATE TABLE users(name TEXT, option TEXT, value TEXT);
60 INSERT INTO users VALUES('admin', 'is_admin', '1');
61 '''
62
63 def config(workdir):
64     os.makedirs(workdir)
65     os.makedirs(os.path.join(workdir, 'sessions'))
66
67     admin_db = os.path.join(workdir, 'adminconfig.sqlite')
68     sql = os.path.join(workdir, 'admin.sql')
69     with open(sql, 'w+') as f:
70         f.write(ADMIN_TEMPLATE)
71     subprocess.call(['sqlite3', '-init', sql, admin_db, '.quit'])
72
73     users_db = os.path.join(workdir, 'users.sqlite')
74     sql = os.path.join(workdir, 'users.sql')
75     with open(sql, 'w+') as f:
76         f.write(USERS_TEMPLATE)
77     subprocess.call(['sqlite3', '-init', sql, users_db, '.quit'])
78
79     t = Template(CONF_TEMPLATE)
80     text = t.substitute({'BASEDIR': os.getcwd(),
81                          'WORKDIR': workdir,
82                          'ADMINDB': admin_db,
83                          'USERSDB': users_db})
84     conf = os.path.join(workdir, 'ipsilon.conf')
85     with open(conf, 'w+') as f:
86         f.write(text)
87     return conf
88
89 if __name__ == '__main__':
90
91     args = parse_args()
92
93     penv = dict()
94     penv.update(os.environ)
95     penv['PYTHONPATH'] = './'
96
97     if not os.path.exists(args['workdir']):
98         conf = config(args['workdir'])
99     else:
100         conf = os.path.join(args['workdir'], 'ipsilon.conf')
101
102     p = subprocess.Popen(['./ipsilon/ipsilon', conf], env=penv)
103     p.wait()