| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>test ws connection</title> | 4 <title>test ws split packet</title> |
| 5 <script type="text/javascript"> | 5 <script type="text/javascript"> |
| 6 | 6 |
| 7 var href = window.location.href; | 7 var href = window.location.href; |
| 8 var hostBegin = href.indexOf('/') + 2; | 8 var hostBegin = href.indexOf('/') + 2; |
| 9 var hostEnd = href.lastIndexOf(':'); | 9 var hostEnd = href.lastIndexOf(':'); |
| 10 var host = href.slice(hostBegin, hostEnd); | 10 var host = href.slice(hostBegin, hostEnd); |
| 11 var portBegin = hostEnd + 1; | 11 var portBegin = hostEnd + 1; |
| 12 var portEnd = href.lastIndexOf('/'); | 12 var portEnd = href.lastIndexOf('/'); |
| 13 var port = href.slice(portBegin, portEnd); | 13 var port = href.slice(portBegin, portEnd); |
| 14 var scheme = href.indexOf('https') >= 0 ? 'wss' : 'ws'; | 14 var scheme = href.indexOf('https') >= 0 ? 'wss' : 'ws'; |
| 15 var url = scheme + '://' + host + ':' + port + '/echo-with-no-extension'; | 15 var url = scheme + '://' + host + ':' + port + '/close-with-split-packet'; |
| 16 | 16 |
| 17 // Do connection test. | 17 // Do connection test. |
| 18 var ws = new WebSocket(url); | 18 var ws = new WebSocket(url); |
| 19 | 19 |
| 20 ws.onopen = function() | 20 ws.onopen = function() |
| 21 { | 21 { |
| 22 // Set document title to 'PASS'. The test observer catches this title changes | 22 // Close WebSocket connection once it is established. |
| 23 // to know the result. | 23 ws.close(); |
| 24 document.title = 'PASS'; | |
| 25 } | 24 } |
| 26 | 25 |
| 27 ws.onclose = function() | 26 ws.onclose = function(event) |
| 28 { | 27 { |
| 29 // Set document title to 'FAIL'. | 28 // Check wasClean, then set proper title. |
| 30 document.title = 'FAIL'; | 29 if (event.wasClean) |
| 30 document.title = 'PASS'; |
| 31 else |
| 32 document.title = 'FAIL'; |
| 31 } | 33 } |
| 32 | 34 |
| 33 </script> | 35 </script> |
| 34 </head> | 36 </head> |
| 35 </html> | 37 </html> |
| OLD | NEW |