| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269 |
- var assert = require('assert'),
- Directive = require('../../src/directive'),
- directives = require('../../src/directives')
- describe('UNIT: Directive', function () {
- describe('.parse()', function () {
-
- it('should return null if directive name does not have correct prefix', function () {
- var d = Directive.parse('ds-test', 'abc')
- assert.ok(d === null)
- })
- it('should return null if directive is unknown', function () {
- var d = Directive.parse('sd-directive-that-does-not-exist', 'abc')
- assert.ok(d === null)
- })
- it('should return null if the expression is invalid', function () {
- var d = Directive.parse('sd-text', ''),
- e = Directive.parse('sd-text', ' '),
- f = Directive.parse('sd-text', '|'),
- g = Directive.parse('sd-text', ' | ')
- assert.ok(d === null, 'empty')
- assert.ok(e === null, 'spaces')
- assert.ok(f === null, 'single pipe')
- assert.ok(g === null, 'pipe with spaces')
- })
- it('should return an instance of Directive if args are good', function () {
- var d = Directive.parse('sd-text', 'abc')
- assert.ok(d instanceof Directive)
- })
- })
- describe('instantiation', function () {
- var test = function () {}
- directives.test = test
- var obj = {
- bind: function () {},
- update: function () {},
- unbind: function () {},
- custom: function () {}
- }
- directives.obj = obj
-
- it('should copy the definition as _update if the def is a function', function () {
- var d = Directive.parse('sd-test', 'abc')
- assert.ok(d._update === test)
- })
- it('should copy methods if the def is an object', function () {
- var d = Directive.parse('sd-obj', 'abc')
- assert.ok(d._update === obj.update, 'update should be copied as _update')
- assert.ok(d._unbind === obj.unbind, 'unbind should be copied as _unbind')
- assert.ok(d.bind === obj.bind)
- assert.ok(d.custom === obj.custom, 'should copy any custom methods')
- })
- it('should trim the expression', function () {
- var exp = ' fsfsef | fsef a ',
- d = Directive.parse('sd-text', exp)
- assert.ok(d.expression === exp.trim())
- })
- it('should extract correct argument', function () {
- var d = Directive.parse('sd-text', 'todo:todos'),
- e = Directive.parse('sd-text', 'todo:todos + abc'),
- f = Directive.parse('sd-text', 'todo:todos | fsf fsef')
- assert.ok(d.arg === 'todo', 'simple')
- assert.ok(e.arg === 'todo', 'expression')
- assert.ok(f.arg === 'todo', 'with filters')
- })
- it('should extract correct nesting info', function () {
- var d = Directive.parse('sd-text', 'abc'),
- e = Directive.parse('sd-text', '^abc'),
- f = Directive.parse('sd-text', '^^^abc'),
- g = Directive.parse('sd-text', '$abc')
- assert.ok(d.nesting === false && d.root === false && d.key === 'abc', 'no nesting')
- assert.ok(e.nesting === 1 && e.root === false && e.key === 'abc', '1 level')
- assert.ok(f.nesting === 3 && f.root === false && f.key === 'abc', '3 levels')
- assert.ok(g.root === true && g.nesting === false && g.key === 'abc', 'root')
- })
- it('should be able to determine whether the key is an expression', function () {
- var d = Directive.parse('sd-text', 'abc'),
- e = Directive.parse('sd-text', '!abc'),
- f = Directive.parse('sd-text', 'abc + bcd * 5 / 2'),
- g = Directive.parse('sd-text', 'abc && (bcd || eee)'),
- h = Directive.parse('sd-text', 'test(abc)')
- assert.ok(d.isExp === false)
- assert.ok(e.isExp, 'negation')
- assert.ok(f.isExp, 'math')
- assert.ok(g.isExp, 'logic')
- assert.ok(g.isExp, 'function invocation')
- })
- it('should have a filter prop of null if no filters are present', function () {
- var d = Directive.parse('sd-text', 'abc'),
- e = Directive.parse('sd-text', 'abc |'),
- f = Directive.parse('sd-text', 'abc ||'),
- g = Directive.parse('sd-text', 'abc | | '),
- h = Directive.parse('sd-text', 'abc | unknown | nothing at all | whaaat')
- assert.ok(d.filters === null)
- assert.ok(e.filters === null, 'single')
- assert.ok(f.filters === null, 'double')
- assert.ok(g.filters === null, 'with spaces')
- assert.ok(h.filters === null, 'with unknown filters')
- })
- it('should extract correct filters (single filter)', function () {
- var d = Directive.parse('sd-text', 'abc | uppercase'),
- f = d.filters[0]
- assert.ok(f.name === 'uppercase' && f.args === null)
- assert.ok(f.apply('test') === 'TEST')
- })
- it('should extract correct filters (single filter with args)', function () {
- var d = Directive.parse('sd-text', 'abc | pluralize item \'arg with spaces\''),
- f = d.filters[0]
- assert.ok(f.name === 'pluralize', 'name')
- assert.ok(f.args.length === 2, 'args length')
- assert.ok(f.args[0] === 'item' && f.args[1] === 'arg with spaces', 'args value')
- })
- it('should extract correct filters (multiple filters)', function () {
- // intentional double pipe
- var d = Directive.parse('sd-text', 'abc | uppercase | pluralize item || lowercase'),
- f1 = d.filters[0],
- f2 = d.filters[1],
- f3 = d.filters[2]
- assert.ok(d.filters.length === 3)
- assert.ok(f1.name === 'uppercase')
- assert.ok(f2.name === 'pluralize' && f2.args[0] === 'item')
- assert.ok(f3.name === 'lowercase')
- })
- })
- describe('.applyFilters()', function () {
-
- it('should work', function () {
- var d = Directive.parse('sd-text', 'abc | pluralize item | capitalize'),
- v = d.applyFilters(2)
- assert.ok(v === 'Items')
- })
- })
- describe('.apply()', function () {
- var test,
- applyTest = function (val) { test = val }
- directives.applyTest = applyTest
- it('should invole the _update function', function () {
- var d = Directive.parse('sd-applyTest', 'abc')
- d.apply(12345)
- assert.ok(test === 12345)
- })
-
- it('should apply the filter if there is any', function () {
- var d = Directive.parse('sd-applyTest', 'abc | currency £')
- d.apply(12345)
- assert.ok(test === '£123,45.00')
- })
- })
- describe('.update()', function () {
-
- var d = Directive.parse('sd-text', 'abc'),
- applied = false
- d.apply = function () {
- applied = true
- }
- it('should apply() for first time update, even if the value is undefined', function () {
- d.update(undefined, true)
- assert.ok(applied === true)
- })
- it('should apply() when a different value is given', function () {
- applied = false
- d.update(123)
- assert.ok(d.value === 123 && applied === true)
- })
- it('should not apply() if the value is the same', function () {
- applied = false
- d.update(123)
- assert.ok(!applied)
- })
- })
- describe('.refresh()', function () {
-
- var d = Directive.parse('sd-text', 'abc'),
- applied = false,
- el = 1, vm = 2,
- value = {
- get: function (ctx) {
- return ctx.el + ctx.vm
- }
- }
- d.el = el
- d.vm = vm
- d.apply = function () {
- applied = true
- }
- d.refresh(value)
- it('should set the value if value arg is given', function () {
- assert.ok(d.value === value)
- })
- it('should get its el&vm context and get correct computedValue', function () {
- assert.ok(d.computedValue === el + vm)
- })
- it('should call apply()', function () {
- assert.ok(applied)
- })
- it('should not call apply() if computedValue is the same', function () {
- applied = false
- d.refresh()
- assert.ok(!applied)
- })
- })
- describe('.unbind()', function () {
-
- var d = Directive.parse('sd-text', 'abc'),
- unbound = false,
- val
- d._unbind = function (v) {
- val = v
- unbound = true
- }
- it('should not work if it has no element yet', function () {
- d.unbind()
- assert.ok(unbound === false)
- })
- it('should call _unbind() if it has an element', function () {
- d.el = true
- d.unbind(true)
- assert.ok(unbound === true)
- // should not null everything unless it's an update
- assert.ok(d.el && d.vm)
- })
- it('should null everything if it\'s called for VM destruction', function () {
- d.unbind()
- assert.ok(d.el === null && d.vm === null && d.binding === null && d.compiler === null)
- })
- })
- })
|