node-minecraft-protocol/test/benchmark.js
u9g 3813d4de7d
Make ci clearer as to what version is being tested (#861)
* Make ci clearer as to what version is being tested

* Update ci.yml

* fix

* fix
2021-06-13 04:54:16 +02:00

47 lines
1.7 KiB
JavaScript

/* eslint-env mocha */
const ITERATIONS = 10000
const mc = require('../')
const states = mc.states
const testDataWrite = [
{ name: 'keep_alive', params: { keepAliveId: 957759560 } },
{ name: 'chat', params: { message: '<Bob> Hello World!' } },
{ name: 'position_look', params: { x: 6.5, y: 65.62, stance: 67.24, z: 7.5, yaw: 0, pitch: 0, onGround: true } }
// TODO: add more packets for better quality data
]
for (const supportedVersion of mc.supportedVersions) {
const mcData = require('minecraft-data')(supportedVersion)
const version = mcData.version
describe('benchmark ' + version.minecraftVersion, function () {
this.timeout(60 * 1000)
const inputData = []
it('bench serializing', function (done) {
const serializer = mc.createSerializer({ state: states.PLAY, isServer: false, version: version.minecraftVersion })
let i, j
console.log('Beginning write test')
const start = Date.now()
for (i = 0; i < ITERATIONS; i++) {
for (j = 0; j < testDataWrite.length; j++) {
inputData.push(serializer.createPacketBuffer(testDataWrite[j]))
}
}
const result = (Date.now() - start) / 1000
console.log('Finished write test in ' + result + ' seconds')
done()
})
it('bench parsing', function (done) {
const deserializer = mc.createDeserializer({ state: states.PLAY, isServer: true, version: version.minecraftVersion })
console.log('Beginning read test')
const start = Date.now()
for (let j = 0; j < inputData.length; j++) {
deserializer.parsePacketBuffer(inputData[j])
}
console.log('Finished read test in ' + (Date.now() - start) / 1000 + ' seconds')
done()
})
})
}