summaryrefslogtreecommitdiff
path: root/chromium/net/websockets/websocket_errors_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/websockets/websocket_errors_unittest.cc')
-rw-r--r--chromium/net/websockets/websocket_errors_unittest.cc29
1 files changed, 29 insertions, 0 deletions
diff --git a/chromium/net/websockets/websocket_errors_unittest.cc b/chromium/net/websockets/websocket_errors_unittest.cc
new file mode 100644
index 00000000000..1a4fca61453
--- /dev/null
+++ b/chromium/net/websockets/websocket_errors_unittest.cc
@@ -0,0 +1,29 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "net/websockets/websocket_errors.h"
+
+#include "net/base/net_errors.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace net {
+namespace {
+
+// Confirm that the principle classes of errors are converted correctly. We
+// don't exhaustively test every error code, as it would be long, repetitive,
+// and add little value.
+TEST(WebSocketErrorToNetErrorTest, ResultsAreCorrect) {
+ EXPECT_EQ(OK, WebSocketErrorToNetError(kWebSocketNormalClosure));
+ EXPECT_EQ(ERR_WS_PROTOCOL_ERROR,
+ WebSocketErrorToNetError(kWebSocketErrorProtocolError));
+ EXPECT_EQ(ERR_MSG_TOO_BIG,
+ WebSocketErrorToNetError(kWebSocketErrorMessageTooBig));
+ EXPECT_EQ(ERR_CONNECTION_CLOSED,
+ WebSocketErrorToNetError(kWebSocketErrorNoStatusReceived));
+ EXPECT_EQ(ERR_SSL_PROTOCOL_ERROR,
+ WebSocketErrorToNetError(kWebSocketErrorTlsHandshake));
+}
+
+} // namespace
+} // namespace net