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
|
#!/usr/bin/python
"""
Copyright 2007-2008, Red Hat, Inc
Michael DeHaan <mdehaan@redhat.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA
"""
from xmlrpclib import ServerProxy
import optparse
if __name__ == "__main__":
p = optparse.OptionParser()
p.add_option("-u","--user",dest="user",default="test")
p.add_option("-p","--pass",dest="password",default="test")
# NOTE: if you've changed your xmlrpc_rw port or
# disabled xmlrpc_rw this test probably won't work
sp = ServerProxy("http://127.0.0.1:25152")
(options, args) = p.parse_args()
print "- trying to login with user=%s" % options.user
token = sp.login(options.user,options.password)
print "- token: %s" % token
print "- authenticated ok, now seeing if user is authorized"
check = sp.check_access(token,"imaginary_method_name")
print "- access ok? %s" % check
|