forked from webtorrent/bittorrent-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic.js
More file actions
75 lines (62 loc) · 1.78 KB
/
basic.js
File metadata and controls
75 lines (62 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
var Socket = require('../')
var test = require('tape')
var SOCKET_SERVER = 'wss://echo.websocket.org'
test('echo string', function (t) {
t.plan(3)
var socket = new Socket(SOCKET_SERVER)
socket.on('connect', function () {
t.pass('connect emitted')
socket.send('sup!')
socket.on('data', function (data) {
t.equal(data, 'sup!')
socket.destroy(function () {
t.pass('destroyed socket')
})
})
})
})
test('echo Uint8Array', function (t) {
t.plan(4)
var socket = new Socket(SOCKET_SERVER)
socket.on('connect', function () {
t.pass('connect emitted')
socket.send(new Uint8Array([1, 2, 3]))
socket.on('data', function (data) {
t.ok(Buffer.isBuffer(data), 'data is Buffer')
t.deepEqual(data, new Buffer([1, 2, 3]), 'got correct data')
socket.destroy(function () {
t.pass('destroyed socket')
})
})
})
})
test('echo Buffer', function (t) {
t.plan(4)
var socket = new Socket(SOCKET_SERVER)
socket.on('connect', function () {
t.pass('connect emitted')
socket.send(new Buffer([1, 2, 3]))
socket.on('data', function (data) {
t.ok(Buffer.isBuffer(data), 'data is Buffer')
t.deepEqual(data, new Buffer([1, 2, 3]), 'got correct data')
socket.destroy(function () {
t.pass('destroyed socket')
})
})
})
})
test('echo ArrayBuffer', function (t) {
t.plan(4)
var socket = new Socket(SOCKET_SERVER)
socket.on('connect', function () {
t.pass('connect emitted')
socket.send(new Uint8Array([1, 2, 3]).buffer)
socket.on('data', function (data) {
t.ok(Buffer.isBuffer(data), 'data is Buffer')
t.deepEqual(data, new Buffer([1, 2, 3]), 'got correct data')
socket.destroy(function () {
t.pass('destroyed socket')
})
})
})
})