Bug 115282

Summary: [WK2] Regression tests can't load HTTPS pages with NetworkProcess due to self-signed certificate
Product: WebKit Reporter: Alexey Proskuryakov <ap>
Component: Tools / TestsAssignee: mitz
Status: RESOLVED FIXED    
Severity: Normal CC: andersca, beidson, mitz, ossy, sam
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Mac   
OS: Unspecified   
Bug Depends on: 135327    
Bug Blocks: 135472    
Attachments:
Description Flags
Make WebKitTestRunner trust localhost sam: review+

Description Alexey Proskuryakov 2013-04-26 15:35:02 PDT
We have solutions for self-signed certificates when loading is in WebProcess (e.g. on Mac, we call +[NSURLRequest setAllowsAnyHTTPSCertificate:forHost:]).

We need a solution for NetworkProcess too.
Comment 1 mitz 2014-07-30 18:38:12 PDT
Created attachment 235794 [details]
Make WebKitTestRunner trust localhost
Comment 2 Alexey Proskuryakov 2014-07-31 09:26:29 PDT
Comment on attachment 235794 [details]
Make WebKitTestRunner trust localhost

View in context: https://bugs.webkit.org/attachment.cgi?id=235794&action=review

> Tools/WebKitTestRunner/TestController.cpp:1263
> +        // Any non-empty credential signals tp accept the server trust. Since the cross-platform API

Typo: "tp".
Comment 3 mitz 2014-07-31 09:45:59 PDT
(In reply to comment #2)
> (From update of attachment 235794 [details])
> View in context: https://bugs.webkit.org/attachment.cgi?id=235794&action=review
> 
> > Tools/WebKitTestRunner/TestController.cpp:1263
> > +        // Any non-empty credential signals tp accept the server trust. Since the cross-platform API
> 
> Typo: "tp".

Corrected!

Fixed in <http://trac.webkit.org/r171859>.