UNPKG

minecraft-data

Version:
55 lines (51 loc) 1.68 kB
/* eslint-env mocha */ const fs = require('fs') const path = require('path') // checks for duplicates names and jumps in ids require('./version_iterator')(function (p, versionString) { describe('audit items ' + versionString, function () { it('audit items', function () { let items const pFile = path.join(p, 'items.json') if (fs.existsSync(pFile)) { items = require(pFile) } else { // console.log('No items for version ' + versionString) } if (items) { const displayNames = {} const names = {} let lastItemId = 0 items.forEach(item => { if (item.displayName == null) { console.log('Missing displayName:', item.id) } else { const otherBlock = displayNames[item.displayName] if (otherBlock) { // console.log('Duplicate displayName:', otherBlock.id, 'and', item.id, // 'both share', item.displayName) } else { displayNames[item.displayName] = item } } if (item.name == null) { console.log('Missing name:', item.id) } else { const otherBlock = names[item.name] if (otherBlock) { // console.log('Duplicate name:', otherBlock.id, 'and', item.id, // 'both share', item.name) } else { names[item.name] = item } } const delta = item.id - lastItemId if (delta !== 1) { // console.log('jump from', lastItemId, 'to', item.id) } lastItemId = item.id }) } }) }) })