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

Unified Diff: tests/standalone/src/io/SocketExceptionTest.dart

Issue 10252020: test rename overhaul: step 12 - standalone (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 months 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/src/io/SocketCloseTest.dart ('k') | tests/standalone/src/io/SocketInfoTest.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/src/io/SocketExceptionTest.dart
diff --git a/tests/standalone/src/io/SocketExceptionTest.dart b/tests/standalone/src/io/SocketExceptionTest.dart
deleted file mode 100644
index ac668452680fa83e0eae9e721c129cd37e369185..0000000000000000000000000000000000000000
--- a/tests/standalone/src/io/SocketExceptionTest.dart
+++ /dev/null
@@ -1,208 +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.
-//
-// Tests socket exceptions.
-
-#import("dart:isolate");
-#import("dart:io");
-
-class SocketExceptionTest {
-
- static final PORT = 0;
- static final HOST = "127.0.0.1";
-
- static void serverSocketExceptionTest() {
- bool exceptionCaught = false;
- bool wrongExceptionCaught = false;
-
- ServerSocket server = new ServerSocket(HOST, PORT, 10);
- Expect.equals(true, server !== null);
- server.close();
- try {
- server.close();
- } catch (SocketIOException ex) {
- exceptionCaught = true;
- } catch (Exception ex) {
- wrongExceptionCaught = true;
- }
- Expect.equals(false, exceptionCaught);
- Expect.equals(true, !wrongExceptionCaught);
- }
-
- static void clientSocketExceptionTest() {
- bool exceptionCaught = false;
- bool wrongExceptionCaught = false;
-
- ServerSocket server = new ServerSocket(HOST, PORT, 10);
- Expect.equals(true, server !== null);
- int port = server.port;
- Socket client = new Socket(HOST, port);
- client.onConnect = () {
- Expect.equals(true, client !== null);
- InputStream input = client.inputStream;
- OutputStream output = client.outputStream;
- client.close();
- try {
- client.close();
- } catch (SocketIOException ex) {
- exceptionCaught = true;
- } catch (Exception ex) {
- wrongExceptionCaught = true;
- }
- Expect.equals(false, exceptionCaught);
- Expect.equals(true, !wrongExceptionCaught);
- exceptionCaught = false;
- try {
- client.available();
- } catch (SocketIOException ex) {
- exceptionCaught = true;
- } catch (Exception ex) {
- wrongExceptionCaught = true;
- }
- Expect.equals(true, exceptionCaught);
- Expect.equals(true, !wrongExceptionCaught);
- exceptionCaught = false;
- try {
- List<int> buffer = new List<int>(10);
- client.readList(buffer, 0 , 10);
- } catch (SocketIOException ex) {
- exceptionCaught = true;
- } catch (Exception ex) {
- wrongExceptionCaught = true;
- }
- Expect.equals(true, exceptionCaught);
- Expect.equals(true, !wrongExceptionCaught);
- exceptionCaught = false;
- try {
- List<int> buffer = new List<int>(10);
- client.writeList(buffer, 0, 10);
- } catch (SocketIOException ex) {
- exceptionCaught = true;
- } catch (Exception ex) {
- wrongExceptionCaught = true;
- }
- Expect.equals(true, exceptionCaught);
- Expect.equals(true, !wrongExceptionCaught);
- exceptionCaught = false;
- try {
- List<int> buffer = new List<int>(42);
- input.readInto(buffer, 0, 12);
- } catch (SocketIOException ex) {
- exceptionCaught = true;
- } catch (Exception ex) {
- wrongExceptionCaught = true;
- }
- Expect.equals(true, exceptionCaught);
- Expect.equals(true, !wrongExceptionCaught);
- exceptionCaught = false;
- try {
- List<int> buffer = new List<int>(42);
- output.writeFrom(buffer, 0, 12);
- } catch (SocketIOException ex) {
- exceptionCaught = true;
- } catch (Exception ex) {
- wrongExceptionCaught = true;
- }
- Expect.equals(true, exceptionCaught);
- Expect.equals(true, !wrongExceptionCaught);
-
- server.close();
- };
- }
-
- static void indexOutOfRangeExceptionTest() {
- bool exceptionCaught = false;
- bool wrongExceptionCaught = false;
-
- ServerSocket server = new ServerSocket(HOST, PORT, 10);
- Expect.equals(true, server !== null);
- int port = server.port;
- Socket client = new Socket(HOST, port);
- client.onConnect = () {
- Expect.equals(true, client !== null);
- try {
- List<int> buffer = new List<int>(10);
- client.readList(buffer, -1, 1);
- } catch (IndexOutOfRangeException ex) {
- exceptionCaught = true;
- } catch (Exception ex) {
- wrongExceptionCaught = true;
- }
- Expect.equals(true, exceptionCaught);
- Expect.equals(true, !wrongExceptionCaught);
- exceptionCaught = false;
-
- try {
- List<int> buffer = new List<int>(10);
- client.readList(buffer, 0, -1);
- } catch (IndexOutOfRangeException ex) {
- exceptionCaught = true;
- } catch (Exception ex) {
- wrongExceptionCaught = true;
- }
- Expect.equals(true, exceptionCaught);
- Expect.equals(true, !wrongExceptionCaught);
- exceptionCaught = false;
-
- try {
- List<int> buffer = new List<int>(10);
- client.writeList(buffer, -1, 1);
- } catch (IndexOutOfRangeException ex) {
- exceptionCaught = true;
- } catch (Exception ex) {
- wrongExceptionCaught = true;
- }
- Expect.equals(true, exceptionCaught);
- Expect.equals(true, !wrongExceptionCaught);
- exceptionCaught = false;
-
- try {
- List<int> buffer = new List<int>(10);
- client.writeList(buffer, 0, -1);
- } catch (IndexOutOfRangeException ex) {
- exceptionCaught = true;
- } catch (Exception ex) {
- wrongExceptionCaught = true;
- }
- Expect.equals(true, exceptionCaught);
- Expect.equals(true, !wrongExceptionCaught);
-
- server.close();
- client.close();
- };
- }
-
- static void unknownHostTest() {
- // Port to verify that the test completes.
- var port = new ReceivePort();
- port.receive((message, replyTo) => null);
-
- Socket s = new Socket("hede.hule.hest", 1234);
- s.onError = (e) => port.close();
- s.onConnect = () => Expect.fail("Connection completed");
- }
-
- static void unresponsiveHostTest() {
- // Port to keep the VM alive until test completes.
- var port = new ReceivePort();
- port.receive((message, replyTo) => null);
-
- Socket s = new Socket("127.0.0.1", 65535);
- s.onError = (e) => port.close();
- s.onConnect = () => Expect.fail("Connection completed");
- }
-
- static void testMain() {
- serverSocketExceptionTest();
- clientSocketExceptionTest();
- indexOutOfRangeExceptionTest();
- unknownHostTest();
- // TODO(sgjesse): This test seems to fail on the buildbot.
- //unresponsiveHostTest();
- }
-}
-
-main() {
- SocketExceptionTest.testMain();
-}
« no previous file with comments | « tests/standalone/src/io/SocketCloseTest.dart ('k') | tests/standalone/src/io/SocketInfoTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698