| OLD | NEW | 
|   1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |   1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 
|   2 // for details. All rights reserved. Use of this source code is governed by a |   2 // for details. All rights reserved. Use of this source code is governed by a | 
|   3 // BSD-style license that can be found in the LICENSE file. |   3 // BSD-style license that can be found in the LICENSE file. | 
|   4  |   4  | 
|   5 // This test verifies that the bad certificate callback works in HttpClient. |   5 // This test verifies that the bad certificate callback works in HttpClient. | 
|   6  |   6  | 
|   7 import "dart:async"; |   7 import "dart:async"; | 
|   8 import "dart:io"; |   8 import "dart:io"; | 
|   9  |   9  | 
|  10 import "package:expect/expect.dart"; |  10 import "package:expect/expect.dart"; | 
|  11  |  11  | 
|  12 final HOST_NAME = 'localhost'; |  12 final HOST_NAME = 'localhost'; | 
|  13  |  13  | 
|  14 String localFile(path) => Platform.script.resolve(path).toFilePath(); |  14 String localFile(path) => Platform.script.resolve(path).toFilePath(); | 
|  15  |  15  | 
|  16 SecurityContext serverContext = new SecurityContext() |  16 SecurityContext serverContext = new SecurityContext() | 
|  17   ..useCertificateChainSync(localFile('certificates/server_chain.pem')) |  17   ..useCertificateChain(localFile('certificates/server_chain.pem')) | 
|  18   ..usePrivateKeySync(localFile('certificates/server_key.pem'), |  18   ..usePrivateKey(localFile('certificates/server_key.pem'), | 
|  19                       password: 'dartdart'); |  19                   password: 'dartdart'); | 
|  20  |  20  | 
|  21 class CustomException {} |  21 class CustomException {} | 
|  22  |  22  | 
|  23 main() async { |  23 main() async { | 
|  24   var HOST = (await InternetAddress.lookup(HOST_NAME)).first; |  24   var HOST = (await InternetAddress.lookup(HOST_NAME)).first; | 
|  25   var server = await HttpServer.bindSecure(HOST, 0, serverContext, backlog: 5); |  25   var server = await HttpServer.bindSecure(HOST, 0, serverContext, backlog: 5); | 
|  26   server.listen((request) { |  26   server.listen((request) { | 
|  27     request.listen((_) { |  27     request.listen((_) { | 
|  28     }, onDone: () { |  28     }, onDone: () { | 
|  29       request.response.close(); |  29       request.response.close(); | 
|  30     }); |  30     }); | 
|  31   }); |  31   }); | 
|  32  |  32  | 
|  33   SecurityContext goodContext = new SecurityContext() |  33   SecurityContext goodContext = new SecurityContext() | 
|  34     ..setTrustedCertificatesSync(localFile('certificates/trusted_certs.pem')); |  34     ..setTrustedCertificates(localFile('certificates/trusted_certs.pem')); | 
|  35   SecurityContext badContext = new SecurityContext(); |  35   SecurityContext badContext = new SecurityContext(); | 
|  36   SecurityContext defaultContext = SecurityContext.defaultContext; |  36   SecurityContext defaultContext = SecurityContext.defaultContext; | 
|  37  |  37  | 
|  38   await runClient(server.port, goodContext, true, 'pass'); |  38   await runClient(server.port, goodContext, true, 'pass'); | 
|  39   await runClient(server.port, goodContext, false, 'pass'); |  39   await runClient(server.port, goodContext, false, 'pass'); | 
|  40   await runClient(server.port, goodContext, 'fisk', 'pass'); |  40   await runClient(server.port, goodContext, 'fisk', 'pass'); | 
|  41   await runClient(server.port, goodContext, 'exception', 'pass'); |  41   await runClient(server.port, goodContext, 'exception', 'pass'); | 
|  42   await runClient(server.port, badContext, true, 'pass'); |  42   await runClient(server.port, badContext, true, 'pass'); | 
|  43   await runClient(server.port, badContext, false, 'fail'); |  43   await runClient(server.port, badContext, false, 'fail'); | 
|  44   await runClient(server.port, badContext, 'fisk', 'fail'); |  44   await runClient(server.port, badContext, 'fisk', 'fail'); | 
| (...skipping 27 matching lines...) Expand all  Loading... | 
|  72     Expect.notEquals(result, 'pass'); |  72     Expect.notEquals(result, 'pass'); | 
|  73     if (result == 'fail') { |  73     if (result == 'fail') { | 
|  74       Expect.isTrue(error is HandshakeException); |  74       Expect.isTrue(error is HandshakeException); | 
|  75     } else if (result == 'throw') { |  75     } else if (result == 'throw') { | 
|  76       Expect.isTrue(error is CustomException); |  76       Expect.isTrue(error is CustomException); | 
|  77     } else { |  77     } else { | 
|  78       Expect.fail('Unknown expectation $result'); |  78       Expect.fail('Unknown expectation $result'); | 
|  79     } |  79     } | 
|  80   } |  80   } | 
|  81 } |  81 } | 
| OLD | NEW |