| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ppapi/tests/test_websocket.h" | 5 #include "ppapi/tests/test_websocket.h" |
| 6 | 6 |
| 7 #include <string.h> | 7 #include <string.h> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "ppapi/c/dev/ppb_websocket_dev.h" | 10 #include "ppapi/c/dev/ppb_websocket_dev.h" |
| 11 #include "ppapi/c/pp_errors.h" | 11 #include "ppapi/c/pp_errors.h" |
| 12 #include "ppapi/c/pp_var.h" | 12 #include "ppapi/c/pp_var.h" |
| 13 #include "ppapi/c/pp_completion_callback.h" | 13 #include "ppapi/c/pp_completion_callback.h" |
| 14 #include "ppapi/c/ppb_core.h" | 14 #include "ppapi/c/ppb_core.h" |
| 15 #include "ppapi/c/ppb_var.h" | 15 #include "ppapi/c/ppb_var.h" |
| 16 #include "ppapi/cpp/instance.h" | 16 #include "ppapi/cpp/instance.h" |
| 17 #include "ppapi/cpp/module.h" | 17 #include "ppapi/cpp/module.h" |
| 18 #include "ppapi/tests/test_utils.h" | 18 #include "ppapi/tests/test_utils.h" |
| 19 #include "ppapi/tests/testing_instance.h" | 19 #include "ppapi/tests/testing_instance.h" |
| 20 | 20 |
| 21 static const char kEchoServerURL[] = | 21 static const char kEchoServerURL[] = |
| 22 "ws://localhost:8880/websocket/tests/hybi/echo"; | 22 "ws://localhost:8880/websocket/tests/hybi/echo"; |
| 23 | 23 |
| 24 static const char kProtocolTestServerURL[] = | 24 static const char kProtocolTestServerURL[] = |
| 25 "ws://localhost:8880/websocket/tests/hybi/protocol-test?protocol="; | 25 "ws://localhost:8880/websocket/tests/hybi/protocol-test?protocol="; |
| 26 | 26 |
| 27 static const char* kInvalidURLs[] = { | 27 static const char* kInvalidURLs[] = { |
| 28 "http://www.google.com/invalid_scheme", | 28 "http://www.google.com/invalid_scheme", |
| 29 "ws://www.google.com/invalid#fragment", | 29 "ws://www.google.com/invalid#fragment", |
| 30 // TODO(toyoshim): Add URL which has invalid port like | 30 "ws://www.google.com:65535/invalid_port", |
| 31 // ws://www.google.com:65535/invalid_port | |
| 32 NULL | 31 NULL |
| 33 }; | 32 }; |
| 34 | 33 |
| 35 REGISTER_TEST_CASE(WebSocket); | 34 REGISTER_TEST_CASE(WebSocket); |
| 36 | 35 |
| 37 bool TestWebSocket::Init() { | 36 bool TestWebSocket::Init() { |
| 38 websocket_interface_ = static_cast<const PPB_WebSocket_Dev*>( | 37 websocket_interface_ = static_cast<const PPB_WebSocket_Dev*>( |
| 39 pp::Module::Get()->GetBrowserInterface(PPB_WEBSOCKET_DEV_INTERFACE)); | 38 pp::Module::Get()->GetBrowserInterface(PPB_WEBSOCKET_DEV_INTERFACE)); |
| 40 var_interface_ = static_cast<const PPB_Var*>( | 39 var_interface_ = static_cast<const PPB_Var*>( |
| 41 pp::Module::Get()->GetBrowserInterface(PPB_VAR_INTERFACE)); | 40 pp::Module::Get()->GetBrowserInterface(PPB_VAR_INTERFACE)); |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 core_interface_->ReleaseResource(ws); | 231 core_interface_->ReleaseResource(ws); |
| 233 | 232 |
| 234 PASS(); | 233 PASS(); |
| 235 } | 234 } |
| 236 | 235 |
| 237 // TODO(toyoshim): Add tests for GetBufferedAmount(). | 236 // TODO(toyoshim): Add tests for GetBufferedAmount(). |
| 238 // For now, the function doesn't work fine because update callback in WebKit is | 237 // For now, the function doesn't work fine because update callback in WebKit is |
| 239 // not landed yet. | 238 // not landed yet. |
| 240 | 239 |
| 241 // TODO(toyoshim): Add other function tests. | 240 // TODO(toyoshim): Add other function tests. |
| OLD | NEW |