The Trunk: SqueakSSL-Tests-topa.19.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: SqueakSSL-Tests-topa.19.mcz

commits-2
Tobias Pape uploaded a new version of SqueakSSL-Tests to project The Trunk:
http://source.squeak.org/trunk/SqueakSSL-Tests-topa.19.mcz

==================== Summary ====================

Name: SqueakSSL-Tests-topa.19
Author: topa
Time: 21 August 2015, 10:01:44.036 am
UUID: 1263e0c7-7c4c-40e7-ba8f-796a374c9cc8
Ancestors: SqueakSSL-Tests-ul.18

Remove Yahoo OpenID test. Endpoint is gone with no replacement.

=============== Diff against SqueakSSL-Tests-ul.18 ===============

Item was removed:
- ----- Method: SqueakSSLTest>>testYahooOpenID (in category 'tests') -----
- testYahooOpenID
- "Yahoo sends an SSL shutdown sequence which we didn't handle in the past.
- Also, there were some issues with SecureSocketStream that were unearthed
- by using it via WebClient's chunking method (not easy to reproduce without WC)."
-
- Smalltalk at: #WebClient ifPresent:[:webClient|
- self shouldnt:[
- [webClient httpGet: 'https://open.login.yahoo.com/openid/op/auth']
- "Allow certificate errors on the Mac since cert validation isn't
- implemented yet."
- on: SqueakSSLCertificateError do:[:ex|
- SqueakSSL platformName = 'Mac OS'
- ifTrue:[ex resume]
- ifFalse:[ex pass]].
- ] raise: Error.
- ]..
- !