var assert = require("assert"), path = require("path"), /* let's name it */ colors = require(path.join(__dirname, '..', 'colour.min.js')); var s = 'string'; function a(s, code) { return '\x1B[' + code.toString() + 'm' + s + '\x1B[39m'; } function aE(s, color, code) { assert.equal(s[color], a(s, code)); assert.equal(colors[color](s), a(s, code)); assert.equal(s[color], colors[color](s)); assert.equal(s[color].stripColors, s); assert.equal(s[color].stripColors, colors.stripColors(s)); } function h(s, color) { return '' + s + ''; // that's pretty dumb approach to testing it } var stylesColors = ['white', 'grey', 'black', 'blue', 'cyan', 'green', 'magenta', 'red', 'yellow']; var stylesAll = stylesColors.concat(['bold', 'italic', 'underline', 'inverse', 'rainbow']); colors.mode = 'console'; assert.equal(s.bold, '\x1B[1m' + s + '\x1B[22m'); assert.equal(s.italic, '\x1B[3m' + s + '\x1B[23m'); assert.equal(s.underline, '\x1B[4m' + s + '\x1B[24m'); assert.equal(s.strikethrough, '\x1B[9m' + s + '\x1B[29m'); assert.equal(s.inverse, '\x1B[7m' + s + '\x1B[27m'); assert.ok(s.rainbow); aE(s, 'white', 37); aE(s, 'grey', 90); aE(s, 'black', 30); aE(s, 'blue', 34); aE(s, 'cyan', 36); aE(s, 'green', 32); aE(s, 'magenta', 35); aE(s, 'red', 31); aE(s, 'yellow', 33); assert.equal(s, 'string'); colors.setTheme({error:'red'}); assert.equal(typeof("astring".red),'string'); assert.equal(typeof("astring".error),'string'); colors.mode = "browser"; assert.equal(s.bold, '' + s + ''); assert.equal(s.italic, '' + s + ''); assert.equal(s.underline, '' + s + ''); assert.equal(s.strikethrough, '' + s + ''); assert.equal(s.inverse, '' + s + ''); assert.ok(s.rainbow); stylesColors.forEach(function (color) { assert.equal(s[color], h(s, color)); assert.equal(colors[color](s), h(s, color)); }); assert.equal(typeof("astring".red),'string'); assert.equal(typeof("astring".error),'string'); colors.mode = 'none'; stylesAll.forEach(function (style) { assert.equal(s[style], s); assert.equal(colors[style](s), s); }); assert.equal(typeof("astring".red),'string'); assert.equal(typeof("astring".error),'string'); assert.ok(typeof "hello".red !== 'undefined'); colors.uninstall(); assert.ok(typeof "hello".red === 'undefined'); colors.install(); assert.ok(typeof "hello".red !== 'undefined'); console.log("OK");