123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- 'use strict'
- var test = require('tape')
- var util = require('util')
- var redeyed = require('..')
- function inspect(obj) {
- return util.inspect(obj, false, 5, true)
- }
- test('adding custom asserts ... ', function(t) {
- t.constructor.prototype.assertSurrounds = function(code, opts, expected) {
- var result = redeyed(code, opts).code
- this.equals(result, expected, inspect(code) + ' => ' + inspect(expected))
- return this
- }
- t.end()
- })
- test('\nfunction config, keywords', function(t) {
- var opts001 = { Keyword: { _default: function(s) { return '*' + s + '&' } } }
- t.test('\n# ' + inspect(opts001), function(t) {
- t.assertSurrounds('this', opts001, '*this&')
- t.assertSurrounds('this ', opts001, '*this& ')
- t.assertSurrounds(' this', opts001, ' *this&')
- t.assertSurrounds(' this ', opts001, ' *this& ')
- t.assertSurrounds('if (a == 1) return', opts001, '*if& (a == 1) *return&')
- t.assertSurrounds('var n = new Test();', opts001, '*var& n = *new& Test();')
- t.assertSurrounds(
- [ 'function foo (bar) {'
- , ' var a = 3;'
- , ' return bar + a;'
- , '}'
- ].join('\n')
- , opts001
- , [ '*function& foo (bar) {'
- , ' *var& a = 3;'
- , ' *return& bar + a;'
- , '}'
- ].join('\n'))
- t.end()
- })
- var opts002 = {
- Keyword: {
- 'function': function(s) { return '^' + s + '&' }
- , 'return': function(s) { return '(' + s + ')' }
- , _default: function(s) { return '*' + s + '&' }
- }
- }
- t.test('\n# ' + inspect(opts002), function(t) {
- t.assertSurrounds(
- [ 'function foo (bar) {'
- , ' var a = 3;'
- , ' return bar + a;'
- , '}'
- ].join('\n')
- , opts002
- , [ '^function& foo (bar) {'
- , ' *var& a = 3;'
- , ' (return) bar + a;'
- , '}'
- ].join('\n'))
- t.end()
- })
- t.end()
- })
- test('#\n functin config - resolving', function(t) {
- var opts001 = {
- Keyword: {
- 'var': function(s) { return '^' + s + '&' }
- }
- , _default: function(s) { return '*' + s + '&' }
- }
- t.test('\n# specific but no type default and root default - root default not applied' + inspect(opts001), function(t) {
- t.assertSurrounds('var n = new Test();', opts001, '^var& n = new Test();').end()
- })
- var opts002 = {
- Keyword: {
- 'var': function(s) { return '^' + s + '&' }
- , _default: function(s) { return '*' + s + '&' }
- }
- , _default: function(s) { return '(' + s + ')' }
- }
- t.test('\n# no type default but root default' + inspect(opts002), function(t) {
- t.assertSurrounds('var n = new Test();', opts002, '^var& n = *new& Test();').end()
- })
- t.end()
- })
- test('#\n function config - replacing', function(t) {
- var opts001 = {
- Keyword: {
- 'var': function() { return 'const' }
- }
- }
- t.test('\n# type default and root default (type wins)' + inspect(opts001), function(t) {
- t.assertSurrounds('var n = new Test();', opts001, 'const n = new Test();').end()
- })
- var opts002 = {
- Keyword: {
- _default: function() { return 'const' }
- }
- }
- t.test('\n# type default' + inspect(opts002), function(t) {
- t.assertSurrounds('var n = new Test();', opts002, 'const n = const Test();').end()
- })
- var opts003 = {
- Keyword: {
- 'new': function() { return 'NEW' }
- , _default: function() { return 'const' }
- }
- }
- t.test('\n# specific and type default' + inspect(opts003), function(t) {
- t.assertSurrounds('var n = new Test();', opts003, 'const n = NEW Test();').end()
- })
- var opts004 = {
- Keyword: {
- _default: function(s) { return s.toUpperCase() }
- }
- , _default: function(s) { return 'not applied' }
- }
- t.test('\n# type default and root default (type wins)' + inspect(opts004), function(t) {
- t.assertSurrounds('var n = new Test();', opts004, 'VAR n = NEW Test();').end()
- })
- var opts005 = {
- Keyword: { }
- , _default: function(s) { return s.toUpperCase() }
- }
- t.test('\n# no type default only root default - not applied' + inspect(opts005), function(t) {
- t.assertSurrounds('var n = new Test();', opts005, 'var n = new Test();').end()
- })
- t.end()
- })
|