asciinema.org/spec/javascripts/player/brush_spec.js.coffee

103 lines
3.0 KiB
CoffeeScript
Raw Normal View History

describe 'AsciiIo.Brush', ->
2012-02-05 13:21:10 +00:00
describe '.clearCache', ->
it 'resets cache hash', ->
AsciiIo.Brush.create()
expect(_(AsciiIo.Brush.cache).keys().length > 0).toBeTruthy()
AsciiIo.Brush.clearCache()
expect(_(AsciiIo.Brush.cache).keys().length).toEqual(0)
2012-08-28 21:32:01 +00:00
describe '.hash', ->
it 'returns string with all brush properties', ->
attrs =
fg : 1
bg : 2
blink : false
bright : true
italic : false
underline: true
hash = AsciiIo.Brush.hash attrs
expect(hash).toEqual '1_2_false_true_false_true'
2012-02-05 13:21:10 +00:00
describe '.create', ->
beforeEach ->
AsciiIo.Brush.clearCache()
it 'returns new brush instance if not cached', ->
2012-08-28 21:32:01 +00:00
brush = AsciiIo.Brush.create({ fg: 1 })
2012-02-05 13:21:10 +00:00
expect(brush instanceof AsciiIo.Brush).toBeTruthy()
it 'returns existing brush instance if cached', ->
2012-08-28 21:32:01 +00:00
brush = AsciiIo.Brush.create({ fg: 1 })
2012-02-05 13:21:10 +00:00
otherBrush = AsciiIo.Brush.create({ fg: 1, bg: 100 })
2012-08-28 21:32:01 +00:00
anotherBrush = AsciiIo.Brush.create({ fg: 1 })
2012-02-05 13:21:10 +00:00
expect(_(AsciiIo.Brush.cache).keys().length).toEqual(2)
expect(brush is anotherBrush).toBeTruthy()
2012-08-28 21:32:01 +00:00
describe '#fgColor', ->
it 'returns 7 if fg is undefined', ->
brush = new AsciiIo.Brush fg: undefined
expect(brush.fgColor()).toEqual 7
2012-11-23 20:59:09 +00:00
it 'returns fg if bright is off', ->
brush = new AsciiIo.Brush fg: 3, bright: false
expect(brush.fgColor()).toEqual 3
2012-08-28 21:32:01 +00:00
it 'returns fg+8 if bright is on', ->
brush = new AsciiIo.Brush fg: 3, bright: true
expect(brush.fgColor()).toEqual 11
2012-11-23 21:42:39 +00:00
it 'returns bg if reverse is on', ->
brush = new AsciiIo.Brush fg: 1, bg: 2, reverse: true
expect(brush.fgColor()).toEqual 2
2012-08-28 21:32:01 +00:00
describe '#bgColor', ->
it 'returns 0 if bg is undefined', ->
brush = new AsciiIo.Brush bg: undefined
expect(brush.bgColor()).toEqual 0
2012-11-23 20:59:09 +00:00
it 'returns bg if blink is off', ->
brush = new AsciiIo.Brush bg: 4, blink: false
expect(brush.bgColor()).toEqual 4
2012-08-28 21:32:01 +00:00
it 'returns bg+8 if blink is on', ->
brush = new AsciiIo.Brush bg: 4, blink: true
expect(brush.bgColor()).toEqual 12
2012-11-23 21:42:39 +00:00
it 'returns fg if reverse is on', ->
brush = new AsciiIo.Brush fg: 1, bg: 2, reverse: true
expect(brush.bgColor()).toEqual 1
2012-08-28 21:32:01 +00:00
describe '#attributes', ->
it 'includes fg, bg, blink, bright, italic, underline', ->
brush = new AsciiIo.Brush
attrs = brush.attributes()
expectedAttrs = ['fg', 'bg', 'blink', 'bright', 'italic', 'underline']
expect(_(attrs).keys().length).toEqual _(expectedAttrs).keys().length
for attr in expectedAttrs
expect(_(attrs).has(attr)).toBeTruthy()
2012-11-23 21:42:39 +00:00
describe '#applyChanges', ->
it 'returns new brush', ->
brush = new AsciiIo.Brush
newBrush = brush.applyChanges fg: 5
expect(newBrush).toNotEqual brush
it 'applies changes to attributes', ->
brush = new AsciiIo.Brush fg: 1
newBrush = brush.applyChanges fg: 2
expect(newBrush.fg).toEqual 2