##// END OF EJS Templates
test-url: skip test when ssl module is unavailable
Augie Fackler -
r12725:24f16c2c default
parent child Browse files
Show More
@@ -1,48 +1,53
1 #!/usr/bin/env python
1 #!/usr/bin/env python
2 import sys
3 try:
4 import ssl
5 except ImportError:
6 sys.exit(80)
2
7
3 def check(a, b):
8 def check(a, b):
4 if a != b:
9 if a != b:
5 print (a, b)
10 print (a, b)
6
11
7 def cert(cn):
12 def cert(cn):
8 return dict(subject=((('commonName', cn),),))
13 return dict(subject=((('commonName', cn),),))
9
14
10 from mercurial.url import _verifycert
15 from mercurial.url import _verifycert
11
16
12 # Test non-wildcard certificates
17 # Test non-wildcard certificates
13 check(_verifycert(cert('example.com'), 'example.com'),
18 check(_verifycert(cert('example.com'), 'example.com'),
14 None)
19 None)
15 check(_verifycert(cert('example.com'), 'www.example.com'),
20 check(_verifycert(cert('example.com'), 'www.example.com'),
16 'certificate is for example.com')
21 'certificate is for example.com')
17 check(_verifycert(cert('www.example.com'), 'example.com'),
22 check(_verifycert(cert('www.example.com'), 'example.com'),
18 'certificate is for www.example.com')
23 'certificate is for www.example.com')
19
24
20 # Test wildcard certificates
25 # Test wildcard certificates
21 check(_verifycert(cert('*.example.com'), 'www.example.com'),
26 check(_verifycert(cert('*.example.com'), 'www.example.com'),
22 None)
27 None)
23 check(_verifycert(cert('*.example.com'), 'example.com'),
28 check(_verifycert(cert('*.example.com'), 'example.com'),
24 'certificate is for *.example.com')
29 'certificate is for *.example.com')
25 check(_verifycert(cert('*.example.com'), 'w.w.example.com'),
30 check(_verifycert(cert('*.example.com'), 'w.w.example.com'),
26 'certificate is for *.example.com')
31 'certificate is for *.example.com')
27
32
28 # Avoid some pitfalls
33 # Avoid some pitfalls
29 check(_verifycert(cert('*.foo'), 'foo'),
34 check(_verifycert(cert('*.foo'), 'foo'),
30 'certificate is for *.foo')
35 'certificate is for *.foo')
31 check(_verifycert(cert('*o'), 'foo'),
36 check(_verifycert(cert('*o'), 'foo'),
32 'certificate is for *o')
37 'certificate is for *o')
33
38
34 import time
39 import time
35 lastyear = time.gmtime().tm_year - 1
40 lastyear = time.gmtime().tm_year - 1
36 nextyear = time.gmtime().tm_year + 1
41 nextyear = time.gmtime().tm_year + 1
37 check(_verifycert({'notAfter': 'May 9 00:00:00 %s GMT' % lastyear},
42 check(_verifycert({'notAfter': 'May 9 00:00:00 %s GMT' % lastyear},
38 'example.com'),
43 'example.com'),
39 'certificate expired May 9 00:00:00 %s GMT' % lastyear)
44 'certificate expired May 9 00:00:00 %s GMT' % lastyear)
40 check(_verifycert({'notBefore': 'May 9 00:00:00 %s GMT' % nextyear},
45 check(_verifycert({'notBefore': 'May 9 00:00:00 %s GMT' % nextyear},
41 'example.com'),
46 'example.com'),
42 'certificate not valid before May 9 00:00:00 %s GMT' % nextyear)
47 'certificate not valid before May 9 00:00:00 %s GMT' % nextyear)
43 check(_verifycert({'notAfter': 'Sep 29 15:29:48 %s GMT' % nextyear,
48 check(_verifycert({'notAfter': 'Sep 29 15:29:48 %s GMT' % nextyear,
44 'subject': ()},
49 'subject': ()},
45 'example.com'),
50 'example.com'),
46 'no commonName found in certificate')
51 'no commonName found in certificate')
47 check(_verifycert(None, 'example.com'),
52 check(_verifycert(None, 'example.com'),
48 'no certificate received')
53 'no certificate received')
General Comments 0
You need to be logged in to leave comments. Login now