mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-31 20:29:55 +02:00
60 lines
1.8 KiB
TypeScript
60 lines
1.8 KiB
TypeScript
//
|
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
|
// Copyright © 2021 Hardcore Engineering Inc.
|
|
//
|
|
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License. You may
|
|
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
//
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
import { readResponse, serialize } from '@anticrm/platform'
|
|
import type { Token } from '@anticrm/server-core'
|
|
import { encode } from 'jwt-simple'
|
|
import WebSocket from 'ws'
|
|
|
|
describe('server', () => {
|
|
function connect (): WebSocket {
|
|
const payload: Token = {
|
|
workspace: 'ws1'
|
|
}
|
|
const token = encode(payload, 'secret')
|
|
return new WebSocket('wss://pacific-refuge-43514.herokuapp.com/' + token)
|
|
}
|
|
|
|
it('should connect to server', (done) => {
|
|
const conn = connect()
|
|
conn.on('open', () => {
|
|
conn.close()
|
|
})
|
|
conn.onclose = () => { console.log('closed'); done() }
|
|
})
|
|
|
|
it('should send many requests', (done) => {
|
|
const conn = connect()
|
|
const total = 10
|
|
const start = Date.now()
|
|
conn.on('open', () => {
|
|
for (let i = 0; i < total; i++) {
|
|
conn.send(serialize({ method: 'findAll', params: ['core:class:Class', {}], id: i }))
|
|
}
|
|
})
|
|
let received = 0
|
|
conn.on('message', (msg: string) => {
|
|
const resp = readResponse(msg)
|
|
console.log(resp.id)
|
|
if (++received === total) {
|
|
console.log(' Time: ', Date.now() - start)
|
|
conn.close()
|
|
}
|
|
})
|
|
conn.onclose = () => { console.log('closed'); done() }
|
|
})
|
|
})
|