fbffa00c530f86db13ed4799936869c7effd7ac6
[cascardo/ipsilon.git] / tests / trans.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
21 from helpers.common import IpsilonTestBase  # pylint: disable=relative-import
22 from helpers.http import HttpSessions  # pylint: disable=relative-import
23 import os
24 import pwd
25 import sys
26 from string import Template
27
28
29 idp_g = {'TEMPLATES': '${TESTDIR}/templates/install',
30          'CONFDIR': '${TESTDIR}/etc',
31          'DATADIR': '${TESTDIR}/lib',
32          'HTTPDCONFD': '${TESTDIR}/${NAME}/conf.d',
33          'STATICDIR': '${ROOTDIR}',
34          'BINDIR': '${ROOTDIR}/ipsilon',
35          'WSGI_SOCKET_PREFIX': '${TESTDIR}/${NAME}/logs/wsgi'}
36
37
38 idp_a = {'hostname': '${ADDRESS}:${PORT}',
39          'admin_user': '${TEST_USER}',
40          'system_user': '${TEST_USER}',
41          'instance': '${NAME}',
42          'secure': 'no',
43          'testauth': 'yes',
44          'pam': 'no',
45          'gssapi': 'no',
46          'ipa': 'no',
47          'server_debugging': 'True'}
48
49
50 sp_g = {'HTTPDCONFD': '${TESTDIR}/${NAME}/conf.d',
51         'SAML2_TEMPLATE': '${TESTDIR}/templates/install/saml2/sp.conf',
52         'SAML2_CONFFILE': '${TESTDIR}/${NAME}/conf.d/ipsilon-saml.conf',
53         'SAML2_HTTPDIR': '${TESTDIR}/${NAME}/saml2'}
54
55
56 sp_a = {'hostname': '${ADDRESS}:${PORT}',
57         'saml_idp_metadata': 'http://127.0.0.10:45080/idp1/saml2/metadata',
58         'saml_secure_setup': 'False',
59         'saml_auth': '/sp',
60         'httpd_user': '${TEST_USER}'}
61
62
63 def fixup_sp_httpd(httpdir):
64     location = """
65
66 Alias /sp ${HTTPDIR}/sp
67
68 <Directory ${HTTPDIR}/sp>
69     Require all granted
70 </Directory>
71 """
72     index = """WORKS!"""
73
74     t = Template(location)
75     text = t.substitute({'HTTPDIR': httpdir})
76     with open(httpdir + '/conf.d/ipsilon-saml.conf', 'a') as f:
77         f.write(text)
78
79     os.mkdir(httpdir + '/sp')
80     with open(httpdir + '/sp/index.html', 'w') as f:
81         f.write(index)
82
83
84 class IpsilonTest(IpsilonTestBase):
85
86     def __init__(self):
87         super(IpsilonTest, self).__init__('trans', __file__)
88
89     def setup_servers(self, env=None):
90         print "Installing IDP server"
91         name = 'idp1'
92         addr = '127.0.0.10'
93         port = '45080'
94         idp = self.generate_profile(idp_g, idp_a, name, addr, port)
95         conf = self.setup_idp_server(idp, name, addr, port, env)
96
97         print "Starting IDP's httpd server"
98         self.start_http_server(conf, env)
99
100         print "Installing SP server"
101         name = 'sp1'
102         addr = '127.0.0.11'
103         port = '45081'
104         sp = self.generate_profile(sp_g, sp_a, name, addr, port)
105         conf = self.setup_sp_server(sp, name, addr, port, env)
106         fixup_sp_httpd(os.path.dirname(conf))
107
108         print "Starting SP's httpd server"
109         self.start_http_server(conf, env)
110
111
112 if __name__ == '__main__':
113
114     idpname = 'idp1'
115     spname = 'sp1'
116     user = pwd.getpwuid(os.getuid())[0]
117
118     print "trans: Add SP Metadata to IDP ...",
119     try:
120         sess = HttpSessions()
121         sess.add_server(idpname, 'http://127.0.0.10:45080', user, 'ipsilon')
122         sess.add_server(spname, 'http://127.0.0.11:45081')
123         sess.auth_to_idp(idpname)
124         sess.add_sp_metadata(idpname, spname)
125     except Exception, e:  # pylint: disable=broad-except
126         print >> sys.stderr, " ERROR: %s" % repr(e)
127         sys.exit(1)
128     print " SUCCESS"
129
130     print "trans: Access SP Protected Area ...",
131     try:
132         sess = HttpSessions()
133         sess.add_server(idpname, 'http://127.0.0.10:45080', user, 'ipsilon')
134         sess.add_server(spname, 'http://127.0.0.11:45081')
135         page = sess.fetch_page(idpname, 'http://127.0.0.11:45081/sp/')
136         page.expected_value('text()', 'WORKS!')
137     except ValueError, e:
138         print >> sys.stderr, " ERROR: %s" % repr(e)
139         sys.exit(1)
140     print " SUCCESS"