2014-11-19 12:45:56 +00:00
|
|
|
expect = require('chai').expect
|
|
|
|
device = require('./device')
|
|
|
|
|
|
|
|
describe 'Device:', ->
|
|
|
|
|
|
|
|
describe '#getDisplayName()', ->
|
|
|
|
|
|
|
|
it 'should return Raspberry Pi for that device', ->
|
|
|
|
possibleNames = [
|
|
|
|
'raspberry-pi'
|
|
|
|
'raspberrypi'
|
|
|
|
'rpi'
|
|
|
|
]
|
|
|
|
|
|
|
|
for name in possibleNames
|
2014-11-19 12:50:11 +00:00
|
|
|
expect(device.getDisplayName(name)).to.equal('Raspberry Pi')
|
|
|
|
|
|
|
|
it 'should return unknown if no matches', ->
|
|
|
|
unknownNames = [
|
|
|
|
'hello'
|
|
|
|
'foobar'
|
|
|
|
{}
|
|
|
|
123
|
|
|
|
]
|
|
|
|
|
|
|
|
for name in unknownNames
|
|
|
|
expect(device.getDisplayName(name)).to.equal('Unknown')
|
2014-11-24 12:25:45 +00:00
|
|
|
|
|
|
|
describe '#getSupportedDevices()', ->
|
|
|
|
|
|
|
|
it 'should return an array', ->
|
|
|
|
result = device.getSupportedDevices()
|
|
|
|
expect(result).to.be.an.instanceof(Array)
|