OLD | NEW |
1 This directory contains resources used by WebSocket server for testing. | 1 This directory contains resources used by WebSocket server for testing. |
2 Multiple tests may share one resource, or URI handler. | 2 Multiple tests may share one resource, or URI handler. |
3 | 3 |
4 - connect_check.html : A page provides simple WebSocket connectivity check. | 4 - connect_check.html : A page provides simple WebSocket connectivity check. |
5 This page changes page title to "PASS" to notify content::TitleWatcher. | 5 This page changes page title to "PASS" to notify content::TitleWatcher. |
6 Used by ProxyBrowserTest.BasicAuthWSConnect, | 6 Used by ProxyBrowserTest.BasicAuthWSConnect, |
7 SSLUITest.TestWSSInvalidCertAndGoForward, SSLUITest.TestWSSClientCert, | 7 SSLUITest.TestWSSInvalidCertAndGoForward, SSLUITest.TestWSSClientCert, |
8 and SSLUITestIgnoreCertErrors.TestWSS. | 8 and SSLUITestIgnoreCertErrors.TestWSS. |
9 | 9 |
10 - split_packet_check.html : A page for testing split packet handling. Here, | 10 - split_packet_check.html : A page for testing split packet handling. Here, |
(...skipping 16 matching lines...) Expand all Loading... |
27 - counted_connection.html : A page that creates a WebSocket connection | 27 - counted_connection.html : A page that creates a WebSocket connection |
28 to count-connection_wsh. | 28 to count-connection_wsh. |
29 This file does NOT close the established connection. | 29 This file does NOT close the established connection. |
30 Used by SendCloseFrameWhenTabIsClosed. | 30 Used by SendCloseFrameWhenTabIsClosed. |
31 | 31 |
32 - count_connection.html : A page that creates a WebSocket connection | 32 - count_connection.html : A page that creates a WebSocket connection |
33 to count-connection_wsh and checks the number of open and closed | 33 to count-connection_wsh and checks the number of open and closed |
34 websocket connections to the handler. | 34 websocket connections to the handler. |
35 Used by SendCloseFrameWhenTabIsClosed. | 35 Used by SendCloseFrameWhenTabIsClosed. |
36 | 36 |
| 37 - multiple-connections.html : Verify that HTTP connection limits are not applied |
| 38 to WebSockets. Used by WebSocketBrowserTest.SSLConnectionLimit. |
| 39 |
37 - websocket_worker_simple.js : A JavaScript runs on Workers created from the | 40 - websocket_worker_simple.js : A JavaScript runs on Workers created from the |
38 websocket_shared_worker.html. | 41 websocket_shared_worker.html. |
39 Used by WorkerTest.WebSocketSharedWorker. | 42 Used by WorkerTest.WebSocketSharedWorker. |
40 | 43 |
41 - echo-with-no-extension_wsh.py : A WebSocket URL handler for echo testing. | 44 - echo-with-no-extension_wsh.py : A WebSocket URL handler for echo testing. |
42 This handler disables all WebSocket extension so that we can perform | 45 This handler disables all WebSocket extension so that we can perform |
43 frame data dependent tests. | 46 frame data dependent tests. |
44 Used by kinds of PPAPI tests for WebSocket, ExtensionApiTest.WebSocket, | 47 Used by kinds of PPAPI tests for WebSocket, ExtensionApiTest.WebSocket, |
45 and WorkerTest.WebSocketSharedWorker. | 48 and WorkerTest.WebSocketSharedWorker. |
46 | 49 |
(...skipping 13 matching lines...) Expand all Loading... |
60 WebSocketBrowserTest.SecureWebSocketSplitRecords. | 63 WebSocketBrowserTest.SecureWebSocketSplitRecords. |
61 | 64 |
62 - count-connection_wsh.py : counts the number of open and closed websocket | 65 - count-connection_wsh.py : counts the number of open and closed websocket |
63 connections to this handler. | 66 connections to this handler. |
64 It sends the numbers after each connection establishment. | 67 It sends the numbers after each connection establishment. |
65 Used by SendCloseFrameWhenTabIsClosed. | 68 Used by SendCloseFrameWhenTabIsClosed. |
66 | 69 |
67 - protocol-test_wsh.py : A WebSocket URL handler for testing outgoing opening | 70 - protocol-test_wsh.py : A WebSocket URL handler for testing outgoing opening |
68 handshake protocol. | 71 handshake protocol. |
69 Used by kinds of PPAPI tests for WebSocket. | 72 Used by kinds of PPAPI tests for WebSocket. |
OLD | NEW |