* Flesh out the formerly incomplete ItemSlug class * Convert all uses of text item slugs to use ItemSlug * Move the ItemSlug class under models where it properly belongs * Avoid the use of `slug` as a local variable or item attribute wherever possible to avoid confusion between various kinds of slugs * Merge the InventoryParser class into the Inventory class as it is unlikely to need to support multiple versions * Simplify the ModPack/Mod/ModVersion interfaces by replacing the use of various "helper" methods with equivalent use of more generic methods * Update the various methods of ModPack/Mod/ModVersion to be able to work with qualified or unqualified ItemSlugs * Remove the unused BaseCollection class * Add tests for ItemSlug and update all other tests to reflect all the other changes
97 lines
3.7 KiB
CoffeeScript
97 lines
3.7 KiB
CoffeeScript
###
|
|
Crafting Guide - mod_version.test.coffee
|
|
|
|
Copyright (c) 2014-2015 by Redwood Labs
|
|
All rights reserved.
|
|
###
|
|
|
|
Item = require '../src/scripts/models/item'
|
|
ItemSlug = require '../src/scripts/models/item_slug'
|
|
ModVersion = require '../src/scripts/models/mod_version'
|
|
|
|
########################################################################################################################
|
|
|
|
modVersion = null
|
|
|
|
########################################################################################################################
|
|
|
|
describe 'mod_version.coffee', ->
|
|
|
|
beforeEach ->
|
|
modVersion = new ModVersion modSlug:'test', version:'0.0'
|
|
modVersion.addItem new Item name:'underscore', group:'punctuation'
|
|
modVersion.addItem new Item name:'bravo', group:'letter'
|
|
modVersion.addItem new Item name:'alpha', group:'letter'
|
|
modVersion.addItem new Item name:'one', group:'number'
|
|
modVersion.addItem new Item name:'two', group:'number'
|
|
|
|
describe 'constructor', ->
|
|
|
|
it 'requires a mod slug', ->
|
|
expect(-> new ModVersion version:'0.0').to.throw Error, 'attributes.modSlug is required'
|
|
|
|
it 'requires a mod version', ->
|
|
expect(-> new ModVersion modSlug:'test').to.throw Error, 'attributes.version is required'
|
|
|
|
describe 'addItem', ->
|
|
|
|
it 'refuses to add duplicates', ->
|
|
modVersion.addItem new Item name:'Wool'
|
|
expect(-> modVersion.addItem new Item name:'Wool').to.throw Error, 'duplicate item for Wool'
|
|
|
|
it 'adds an item indexed by its slug', ->
|
|
modVersion.addItem new Item name:'Wool'
|
|
modVersion._items.wool.name.should.equal 'Wool'
|
|
|
|
it 'sets the modVersion', ->
|
|
modVersion.addItem new Item name:'Wool'
|
|
modVersion._items.wool.modVersion.should.equal modVersion
|
|
|
|
describe 'eachGroup', ->
|
|
|
|
it 'returns all the groups in order', ->
|
|
groupNames = []
|
|
modVersion.eachGroup (groupName)-> groupNames.push groupName
|
|
groupNames.should.eql ['letter', 'number', 'punctuation']
|
|
|
|
describe 'eachItemInGroup', ->
|
|
|
|
it 'returns immediately for unknown group', ->
|
|
slugs = []
|
|
modVersion.eachItemInGroup 'foobar', (item)-> slugs.push item.slug.qualified
|
|
slugs.should.eql []
|
|
|
|
it 'calls callback for exactly the items in a group in order', ->
|
|
slugs = []
|
|
modVersion.eachItemInGroup 'letter', (item)-> slugs.push item.slug.qualified
|
|
slugs.should.eql ['test__alpha', 'test__bravo']
|
|
|
|
slugs = []
|
|
modVersion.eachItemInGroup 'number', (item)-> slugs.push item.slug.qualified
|
|
slugs.should.eql ['test__one', 'test__two']
|
|
|
|
|
|
describe 'findItemByName', ->
|
|
|
|
it 'locates items by slugified name', ->
|
|
modVersion.addItem new Item name:'Crafting Table'
|
|
modVersion.findItemByName('Crafting Table').slug.qualified.should.equal 'test__crafting_table'
|
|
|
|
describe 'findRecipes', ->
|
|
|
|
beforeEach ->
|
|
modVersion = new ModVersion modSlug:'test', version:'1.0'
|
|
modVersion.parse """
|
|
schema:1
|
|
|
|
item: Cake
|
|
recipe:; input: Milk, Sugar, Egg, Wheat; pattern: 000 121 333; extras: 3 Bucket
|
|
recipe:; input: Milk, Cocoa Beans, Egg, Wheat; pattern: 000 121 333; extras: 3 Bucket
|
|
item: Bucket
|
|
recipe:; input: Iron Ingot; pattern: ... 0.0 .0.
|
|
"""
|
|
|
|
it 'finds all recipes which list item as output', ->
|
|
recipes = modVersion.findRecipes ItemSlug.slugify('Bucket')
|
|
(r.output[0].itemSlug.item for r in recipes).sort().should.eql ['bucket', 'cake', 'cake']
|