Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(554)

Unified Diff: tests/standalone/io/tls_stream_test.dart

Issue 11419138: Rename TlsSocket to SecureSocket, and all other Tls... items to Secure.... (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rename C++ class from Filter to SSLFilter. Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/standalone/io/tls_socket_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/tls_stream_test.dart
diff --git a/tests/standalone/io/tls_stream_test.dart b/tests/standalone/io/tls_stream_test.dart
deleted file mode 100644
index c726efd95917ec39a59941741ccb162ba4c88978..0000000000000000000000000000000000000000
--- a/tests/standalone/io/tls_stream_test.dart
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-//
-// VMOptions=
-// VMOptions=--short_socket_read
-// The --short_socket_write option does not work with external server
-// www.google.dk. Add this to the test when we have secure server sockets.
-// See TODO below.
-
-#import("dart:isolate");
-#import("dart:io");
-
-void main() {
- var testPkcertDatabase =
- new Path.fromNative(new Options().script).directoryPath.append('pkcert/');
- TlsSocket.setCertificateDatabase(testPkcertDatabase.toNativePath());
- // TODO(3593): Use a Dart HTTPS server for this test using TLS server sockets.
- // When we use a Dart HTTPS server, allow --short_socket_write. The flag
- // causes fragmentation of the client hello message, which doesn't seem to
- // work with www.google.dk.
- var tls = new TlsSocket("www.google.dk", 443);
- List<String> chunks = <String>[];
- var input = tls.inputStream;
- var output = tls.outputStream;
-
- output.write("GET / HTTP/1.0\r\nHost: www.google.dk\r\n\r\n".charCodes);
- output.close();
- input.onData = () {
- chunks.add(new String.fromCharCodes(input.read()));
- };
- input.onClosed = () {
- String fullPage = Strings.concatAll(chunks);
- Expect.isTrue(fullPage.contains('</body></html>'));
- };
-}
« no previous file with comments | « tests/standalone/io/tls_socket_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698