node-minecraft-protocol/test/benchmark.js

48 lines
1.7 KiB
JavaScript
Raw Permalink Normal View History

/* eslint-env mocha */
2013-03-16 02:13:05 -04:00
const ITERATIONS = 10000
const mc = require('../')
const states = mc.states
2013-03-16 02:13:05 -04:00
2017-07-13 08:03:52 -04:00
const testDataWrite = [
2018-09-24 16:07:34 -04:00
{ 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 } }
2013-03-16 02:13:05 -04:00
// TODO: add more packets for better quality data
]
2013-03-16 02:13:05 -04:00
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) {
2018-09-24 16:07:34 -04:00
const serializer = mc.createSerializer({ state: states.PLAY, isServer: false, version: version.minecraftVersion })
2019-08-03 19:29:14 -04:00
let i, j
console.log('Beginning write test')
2019-08-03 19:29:14 -04:00
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()
})
2013-03-16 02:13:05 -04:00
it('bench parsing', function (done) {
2018-09-24 16:07:34 -04:00
const deserializer = mc.createDeserializer({ state: states.PLAY, isServer: true, version: version.minecraftVersion })
console.log('Beginning read test')
const start = Date.now()
2017-07-13 08:03:52 -04:00
for (let j = 0; j < inputData.length; j++) {
deserializer.parsePacketBuffer(inputData[j])
}
console.log('Finished read test in ' + (Date.now() - start) / 1000 + ' seconds')
done()
})
})
}