forked from mirrors/gecko-dev
		
	 0a8ff0ad85
			
		
	
	
		0a8ff0ad85
		
	
	
	
	
		
			
			# ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D35951 --HG-- extra : source : 62f3501af4bc1c0bd1ee1977a28aee04706a6663
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			722 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			722 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| importScripts("websocket_helpers.js");
 | |
| importScripts("websocket_tests.js");
 | |
| importScripts("websocket_worker_helpers.js");
 | |
| 
 | |
| var tests = [
 | |
|   test11, // a simple hello echo;
 | |
|   test12, // client sends a message containing unpaired surrogates
 | |
|   test13, //server sends an invalid message;
 | |
|   test14, // server sends the close frame, it doesn't close the tcp connection
 | |
|   // and it keeps sending normal ws messages;
 | |
|   test15, // server closes the tcp connection, but it doesn't send the close
 | |
|   // frame;
 | |
|   test16, // client calls close() and tries to send a message;
 | |
|   test18, // client tries to connect to an http resource;
 | |
|   test19, // server closes the tcp connection before establishing the ws
 | |
|   // connection;
 | |
| ];
 | |
| 
 | |
| doTest();
 |