Change attrs test to check for fullname
[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          'info_nss': 'yes',
45          'pam': 'no',
46          'krb': 'no',
47          'ipa': 'no',
48          'server_debugging': 'True'}
49
50
51 sp_g = {'HTTPDCONFD': '${TESTDIR}/${NAME}/conf.d',
52         'SAML2_TEMPLATE': '${TESTDIR}/templates/install/saml2/sp.conf',
53         'SAML2_CONFFILE': '${TESTDIR}/${NAME}/conf.d/ipsilon-saml.conf',
54         'SAML2_HTTPDIR': '${TESTDIR}/${NAME}/saml2'}
55
56
57 sp_a = {'hostname': '${ADDRESS}:${PORT}',
58         'saml_idp_metadata': 'http://127.0.0.10:45080/idp1/saml2/metadata',
59         'saml_secure_setup': 'False',
60         'saml_auth': '/sp',
61         'httpd_user': '${TEST_USER}'}
62
63
64 def fixup_sp_httpd(httpdir):
65     merge = """
66     MellonSetEnv "FULLNAME" "fullname"
67 </Location>"""
68     with open(httpdir + '/conf.d/ipsilon-saml.conf', 'r') as f:
69         conf = f.read()
70     conf = conf.replace('</Location>', merge, 1)
71     with open(httpdir + '/conf.d/ipsilon-saml.conf', 'w') as f:
72         f.write(conf)
73
74     location = """
75
76 Alias /sp ${HTTPDIR}/sp
77
78 <Directory ${HTTPDIR}/sp>
79     Require all granted
80     Options +Includes
81 </Directory>
82 """
83     t = Template(location)
84     text = t.substitute({'HTTPDIR': httpdir})
85     with open(httpdir + '/conf.d/ipsilon-saml.conf', 'a') as f:
86         f.write(text)
87
88     index = """<!--#echo var="MELLON_FULLNAME" -->"""
89     os.mkdir(httpdir + '/sp')
90     with open(httpdir + '/sp/index.shtml', 'w') as f:
91         f.write(index)
92
93
94 class IpsilonTest(IpsilonTestBase):
95
96     def __init__(self):
97         super(IpsilonTest, self).__init__('attrs', __file__)
98
99     def setup_servers(self, env=None):
100         print "Installing IDP server"
101         name = 'idp1'
102         addr = '127.0.0.10'
103         port = '45080'
104         idp = self.generate_profile(idp_g, idp_a, name, addr, port)
105         conf = self.setup_idp_server(idp, name, addr, port, env)
106
107         print "Starting IDP's httpd server"
108         self.start_http_server(conf, env)
109
110         print "Installing SP server"
111         name = 'sp1'
112         addr = '127.0.0.11'
113         port = '45081'
114         sp = self.generate_profile(sp_g, sp_a, name, addr, port)
115         conf = self.setup_sp_server(sp, name, addr, port, env)
116         fixup_sp_httpd(os.path.dirname(conf))
117
118         print "Starting SP's httpd server"
119         self.start_http_server(conf, env)
120
121
122 if __name__ == '__main__':
123
124     idpname = 'idp1'
125     spname = 'sp1'
126     userpwd = pwd.getpwuid(os.getuid())
127     user = userpwd[0]
128
129     sess = HttpSessions()
130     sess.add_server(idpname, 'http://127.0.0.10:45080', user, 'ipsilon')
131     sess.add_server(spname, 'http://127.0.0.11:45081')
132
133     print "attrs: Authenticate to IDP ...",
134     try:
135         sess.auth_to_idp(idpname)
136     except Exception, e:  # pylint: disable=broad-except
137         print >> sys.stderr, " ERROR: %s" % repr(e)
138         sys.exit(1)
139     print " SUCCESS"
140
141     print "attrs: Add SP Metadata to IDP ...",
142     try:
143         sess.add_sp_metadata(idpname, spname)
144     except Exception, e:  # pylint: disable=broad-except
145         print >> sys.stderr, " ERROR: %s" % repr(e)
146         sys.exit(1)
147     print " SUCCESS"
148
149     print "attrs: Access SP Protected Area Variables...",
150     try:
151         page = sess.fetch_page(idpname,
152                                'http://127.0.0.11:45081/sp/index.shtml')
153         page.expected_value('text()', str(userpwd[4]))
154     except ValueError, e:
155         print >> sys.stderr, " ERROR: %s" % repr(e)
156         sys.exit(1)
157     print " SUCCESS"