b4d8a99268fb42bc8ca3cfeff565d13492e1ad7c
[cascardo/ipsilon.git] / tests / attrs.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     merge = """
65     MellonSetEnv "FULLNAME" "fullname"
66 </Location>"""
67     with open(httpdir + '/conf.d/ipsilon-saml.conf', 'r') as f:
68         conf = f.read()
69     conf = conf.replace('</Location>', merge, 1)
70     with open(httpdir + '/conf.d/ipsilon-saml.conf', 'w') as f:
71         f.write(conf)
72
73     location = """
74
75 Alias /sp ${HTTPDIR}/sp
76
77 <Directory ${HTTPDIR}/sp>
78     Require all granted
79     Options +Includes
80 </Directory>
81 """
82     t = Template(location)
83     text = t.substitute({'HTTPDIR': httpdir})
84     with open(httpdir + '/conf.d/ipsilon-saml.conf', 'a') as f:
85         f.write(text)
86
87     index = """<!--#echo var="MELLON_FULLNAME" -->"""
88     os.mkdir(httpdir + '/sp')
89     with open(httpdir + '/sp/index.shtml', 'w') as f:
90         f.write(index)
91
92
93 class IpsilonTest(IpsilonTestBase):
94
95     def __init__(self):
96         super(IpsilonTest, self).__init__('attrs', __file__)
97
98     def setup_servers(self, env=None):
99         print "Installing IDP server"
100         name = 'idp1'
101         addr = '127.0.0.10'
102         port = '45080'
103         idp = self.generate_profile(idp_g, idp_a, name, addr, port)
104         conf = self.setup_idp_server(idp, name, addr, port, env)
105
106         print "Starting IDP's httpd server"
107         self.start_http_server(conf, env)
108
109         print "Installing SP server"
110         name = 'sp1'
111         addr = '127.0.0.11'
112         port = '45081'
113         sp = self.generate_profile(sp_g, sp_a, name, addr, port)
114         conf = self.setup_sp_server(sp, name, addr, port, env)
115         fixup_sp_httpd(os.path.dirname(conf))
116
117         print "Starting SP's httpd server"
118         self.start_http_server(conf, env)
119
120
121 if __name__ == '__main__':
122
123     idpname = 'idp1'
124     spname = 'sp1'
125     user = pwd.getpwuid(os.getuid())[0]
126
127     sess = HttpSessions()
128     sess.add_server(idpname, 'http://127.0.0.10:45080', user, 'ipsilon')
129     sess.add_server(spname, 'http://127.0.0.11:45081')
130
131     print "attrs: Authenticate to IDP ...",
132     try:
133         sess.auth_to_idp(idpname)
134     except Exception, e:  # pylint: disable=broad-except
135         print >> sys.stderr, " ERROR: %s" % repr(e)
136         sys.exit(1)
137     print " SUCCESS"
138
139     print "attrs: Add SP Metadata to IDP ...",
140     try:
141         sess.add_sp_metadata(idpname, spname)
142     except Exception, e:  # pylint: disable=broad-except
143         print >> sys.stderr, " ERROR: %s" % repr(e)
144         sys.exit(1)
145     print " SUCCESS"
146
147     print "attrs: Access SP Protected Area Variables...",
148     try:
149         page = sess.fetch_page(idpname,
150                                'http://127.0.0.11:45081/sp/index.shtml')
151         page.expected_value('text()', 'Test User %s' % user)
152     except ValueError, e:
153         print >> sys.stderr, " ERROR: %s" % repr(e)
154         sys.exit(1)
155     print " SUCCESS"