123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723 |
- var assert = require('assert'),
- fs = require('fs'),
- path = require('path'),
- read = fs.readFileSync,
- sass = process.env.NODESASS_COV ? require('../lib-cov') : require('../lib'),
- fixture = path.join.bind(null, __dirname, 'fixtures'),
- resolveFixture = path.resolve.bind(null, __dirname, 'fixtures');
- describe('api', function() {
- describe('.render(options)', function() {
- it('should compile sass to css with file', function(done) {
- var expected = read(fixture('simple/expected.css'), 'utf8').trim();
- sass.render({
- file: fixture('simple/index.scss'),
- success: function(result) {
- assert.equal(result.css.trim(), expected.replace(/\r\n/g, '\n'));
- done();
- }
- });
- });
- it('should compile sass to css with outFile set to absolute url', function(done) {
- sass.render({
- file: fixture('simple/index.scss'),
- sourceMap: true,
- outFile: fixture('simple/index-test.css'),
- success: function(result) {
- assert.equal(JSON.parse(result.map).file, 'index-test.css');
- done();
- }
- });
- });
- it('should compile sass to css with outFile set to relative url', function(done) {
- sass.render({
- file: fixture('simple/index.scss'),
- sourceMap: true,
- outFile: './index-test.css',
- success: function(result) {
- assert.equal(JSON.parse(result.map).file, 'index-test.css');
- done();
- }
- });
- });
- it('should compile sass to css with outFile and sourceMap set to relative url', function(done) {
- sass.render({
- file: fixture('simple/index.scss'),
- sourceMap: './deep/nested/index.map',
- outFile: './index-test.css',
- success: function(result) {
- assert.equal(JSON.parse(result.map).file, '../../index-test.css');
- done();
- }
- });
- });
- it('should compile sass to css with data', function(done) {
- var src = read(fixture('simple/index.scss'), 'utf8');
- var expected = read(fixture('simple/expected.css'), 'utf8').trim();
- sass.render({
- data: src,
- success: function(result) {
- assert.equal(result.css.trim(), expected.replace(/\r\n/g, '\n'));
- done();
- }
- });
- });
- it('should compile sass to css using indented syntax', function(done) {
- var src = read(fixture('indent/index.sass'), 'utf8');
- var expected = read(fixture('indent/expected.css'), 'utf8').trim();
- sass.render({
- data: src,
- indentedSyntax: true,
- success: function(result) {
- assert.equal(result.css.trim(), expected.replace(/\r\n/g, '\n'));
- done();
- }
- });
- });
- it('should throw error status 1 for bad input', function(done) {
- sass.render({
- data: '#navbar width 80%;',
- error: function(error) {
- assert(error.message);
- assert.equal(error.status, 1);
- done();
- }
- });
- });
- it('should compile with include paths', function(done) {
- var src = read(fixture('include-path/index.scss'), 'utf8');
- var expected = read(fixture('include-path/expected.css'), 'utf8').trim();
- sass.render({
- data: src,
- includePaths: [
- fixture('include-path/functions'),
- fixture('include-path/lib')
- ],
- success: function(result) {
- assert.equal(result.css.trim(), expected.replace(/\r\n/g, '\n'));
- done();
- }
- });
- });
- it('should compile with image path', function(done) {
- var src = read(fixture('image-path/index.scss'), 'utf8');
- var expected = read(fixture('image-path/expected.css'), 'utf8').trim();
- sass.render({
- data: src,
- imagePath: '/path/to/images',
- success: function(result) {
- assert.equal(result.css.trim(), expected.replace(/\r\n/g, '\n'));
- done();
- }
- });
- });
- it('should throw error with non-string image path', function(done) {
- var src = read(fixture('image-path/index.scss'), 'utf8');
- assert.throws(function() {
- sass.render({
- data: src,
- imagePath: ['/path/to/images']
- });
- });
- done();
- });
- it('should render with --precision option', function(done) {
- var src = read(fixture('precision/index.scss'), 'utf8');
- var expected = read(fixture('precision/expected.css'), 'utf8').trim();
- sass.render({
- data: src,
- precision: 10,
- success: function(result) {
- assert.equal(result.css.trim(), expected.replace(/\r\n/g, '\n'));
- done();
- }
- });
- });
- it('should contain all included files in stats when data is passed', function(done) {
- var src = read(fixture('include-files/index.scss'), 'utf8');
- var expected = [
- fixture('include-files/bar.scss').replace(/\\/g, '/'),
- fixture('include-files/foo.scss').replace(/\\/g, '/')
- ];
- sass.render({
- data: src,
- includePaths: [fixture('include-files')],
- success: function(result) {
- assert.deepEqual(result.stats.includedFiles, expected);
- done();
- }
- });
- });
- });
- describe('.render(importer)', function() {
- var src = read(fixture('include-files/index.scss'), 'utf8');
- it('should override imports with "data" as input and fires callback with file and contents', function(done) {
- sass.render({
- data: src,
- success: function(result) {
- assert.equal(result.css.trim(), 'div {\n color: yellow; }\n\ndiv {\n color: yellow; }');
- done();
- },
- importer: function(url, prev, done) {
- done({
- file: '/some/other/path.scss',
- contents: 'div {color: yellow;}'
- });
- }
- });
- });
- it('should override imports with "file" as input and fires callback with file and contents', function(done) {
- sass.render({
- file: fixture('include-files/index.scss'),
- success: function(result) {
- assert.equal(result.css.trim(), 'div {\n color: yellow; }\n\ndiv {\n color: yellow; }');
- done();
- },
- importer: function(url, prev, done) {
- done({
- file: '/some/other/path.scss',
- contents: 'div {color: yellow;}'
- });
- }
- });
- });
- it('should override imports with "data" as input and returns file and contents', function(done) {
- sass.render({
- data: src,
- success: function(result) {
- assert.equal(result.css.trim(), 'div {\n color: yellow; }\n\ndiv {\n color: yellow; }');
- done();
- },
- importer: function(url, prev) {
- return {
- file: prev + url,
- contents: 'div {color: yellow;}'
- };
- }
- });
- });
- it('should override imports with "file" as input and returns file and contents', function(done) {
- sass.render({
- file: fixture('include-files/index.scss'),
- success: function(result) {
- assert.equal(result.css.trim(), 'div {\n color: yellow; }\n\ndiv {\n color: yellow; }');
- done();
- },
- importer: function(url, prev) {
- return {
- file: prev + url,
- contents: 'div {color: yellow;}'
- };
- }
- });
- });
- it('should override imports with "data" as input and fires callback with file', function(done) {
- sass.render({
- data: src,
- success: function(result) {
- assert.equal(result.css.trim(), '');
- done();
- },
- importer: function(url, /* jshint unused:false */ prev, done) {
- done({
- file: path.resolve(path.dirname(fixture('include-files/index.scss')), url + (path.extname(url) ? '' : '.scss'))
- });
- }
- });
- });
- it('should override imports with "file" as input and fires callback with file', function(done) {
- sass.render({
- file: fixture('include-files/index.scss'),
- success: function(result) {
- assert.equal(result.css.trim(), '');
- done();
- },
- importer: function(url, prev, done) {
- done({
- file: path.resolve(path.dirname(prev), url + (path.extname(url) ? '' : '.scss'))
- });
- }
- });
- });
- it('should override imports with "data" as input and returns file', function(done) {
- sass.render({
- data: src,
- success: function(result) {
- assert.equal(result.css.trim(), '');
- done();
- },
- importer: function(url, /* jshint unused:false */ prev) {
- return {
- file: path.resolve(path.dirname(fixture('include-files/index.scss')), url + (path.extname(url) ? '' : '.scss'))
- };
- }
- });
- });
- it('should override imports with "file" as input and returns file', function(done) {
- sass.render({
- file: fixture('include-files/index.scss'),
- success: function(result) {
- assert.equal(result.css.trim(), '');
- done();
- },
- importer: function(url, prev) {
- return {
- file: path.resolve(path.dirname(prev), url + (path.extname(url) ? '' : '.scss'))
- };
- }
- });
- });
-
- it('should override imports with "data" as input and fires callback with contents', function(done) {
- sass.render({
- data: src,
- success: function(result) {
- assert.equal(result.css.trim(), 'div {\n color: yellow; }\n\ndiv {\n color: yellow; }');
- done();
- },
- importer: function(url, prev, done) {
- done({
- contents: 'div {color: yellow;}'
- });
- }
- });
- });
- it('should override imports with "file" as input and fires callback with contents', function(done) {
- sass.render({
- file: fixture('include-files/index.scss'),
- success: function(result) {
- assert.equal(result.css.trim(), 'div {\n color: yellow; }\n\ndiv {\n color: yellow; }');
- done();
- },
- importer: function(url, prev, done) {
- done({
- contents: 'div {color: yellow;}'
- });
- }
- });
- });
- it('should override imports with "data" as input and returns contents', function(done) {
- sass.render({
- data: src,
- success: function(result) {
- assert.equal(result.css.trim(), 'div {\n color: yellow; }\n\ndiv {\n color: yellow; }');
- done();
- },
- importer: function() {
- return {
- contents: 'div {color: yellow;}'
- };
- }
- });
- });
- it('should override imports with "file" as input and returns contents', function(done) {
- sass.render({
- file: fixture('include-files/index.scss'),
- success: function(result) {
- assert.equal(result.css.trim(), 'div {\n color: yellow; }\n\ndiv {\n color: yellow; }');
- done();
- },
- importer: function() {
- return {
- contents: 'div {color: yellow;}'
- };
- }
- });
- });
- });
- describe('.renderSync(options)', function() {
- it('should compile sass to css with file', function(done) {
- var expected = read(fixture('simple/expected.css'), 'utf8').trim();
- var result = sass.renderSync({file: fixture('simple/index.scss')});
- assert.equal(result.css.trim(), expected.replace(/\r\n/g, '\n'));
- done();
- });
- it('should compile sass to css with outFile set to absolute url', function(done) {
- var result = sass.renderSync({
- file: fixture('simple/index.scss'),
- sourceMap: true,
- outFile: fixture('simple/index-test.css')
- });
- assert.equal(JSON.parse(result.map).file, 'index-test.css');
- done();
- });
- it('should compile sass to css with outFile set to relative url', function(done) {
- var result = sass.renderSync({
- file: fixture('simple/index.scss'),
- sourceMap: true,
- outFile: './index-test.css'
- });
- assert.equal(JSON.parse(result.map).file, 'index-test.css');
- done();
- });
- it('should compile sass to css with outFile and sourceMap set to relative url', function(done) {
- var result = sass.renderSync({
- file: fixture('simple/index.scss'),
- sourceMap: './deep/nested/index.map',
- outFile: './index-test.css'
- });
- assert.equal(JSON.parse(result.map).file, '../../index-test.css');
- done();
- });
- it('should compile sass to css with data', function(done) {
- var src = read(fixture('simple/index.scss'), 'utf8');
- var expected = read(fixture('simple/expected.css'), 'utf8').trim();
- var result = sass.renderSync({data: src});
- assert.equal(result.css.trim(), expected.replace(/\r\n/g, '\n'));
- done();
- });
- it('should compile sass to css using indented syntax', function(done) {
- var src = read(fixture('indent/index.sass'), 'utf8');
- var expected = read(fixture('indent/expected.css'), 'utf8').trim();
- var css = sass.renderSync({
- data: src,
- indentedSyntax: true
- }).css.trim();
- assert.equal(css, expected.replace(/\r\n/g, '\n'));
- done();
- });
- it('should throw error for bad input', function(done) {
- assert.throws(function() {
- sass.renderSync({data: '#navbar width 80%;'});
- });
- done();
- });
- });
- describe('.renderSync(importer)', function() {
- var src = read(fixture('include-files/index.scss'), 'utf8');
- it('should override imports with "data" as input and returns file and contents', function(done) {
- var result = sass.renderSync({
- data: src,
- importer: function(url, prev) {
- return {
- file: prev + url,
- contents: 'div {color: yellow;}'
- };
- }
- });
- assert.equal(result.css.trim(), 'div {\n color: yellow; }\n\ndiv {\n color: yellow; }');
- done();
- });
- it('should override imports with "file" as input and returns file and contents', function(done) {
- var result = sass.renderSync({
- file: fixture('include-files/index.scss'),
- importer: function(url, prev) {
- return {
- file: prev + url,
- contents: 'div {color: yellow;}'
- };
- }
- });
- assert.equal(result.css.trim(), 'div {\n color: yellow; }\n\ndiv {\n color: yellow; }');
- done();
- });
- it('should override imports with "data" as input and returns file', function(done) {
- var result = sass.renderSync({
- data: src,
- importer: function(url, /* jshint unused:false */ prev) {
- return {
- file: path.resolve(path.dirname(fixture('include-files/index.scss')), url + (path.extname(url) ? '' : '.scss'))
- };
- }
- });
- assert.equal(result.css.trim(), '');
- done();
- });
- it('should override imports with "file" as input and returns file', function(done) {
- var result = sass.renderSync({
- file: fixture('include-files/index.scss'),
- importer: function(url, prev) {
- return {
- file: path.resolve(path.dirname(prev), url + (path.extname(url) ? '' : '.scss'))
- };
- }
- });
- assert.equal(result.css.trim(), '');
- done();
- });
-
- it('should override imports with "data" as input and returns contents', function(done) {
- var result = sass.renderSync({
- data: src,
- importer: function() {
- return {
- contents: 'div {color: yellow;}'
- };
- }
- });
- assert.equal(result.css.trim(), 'div {\n color: yellow; }\n\ndiv {\n color: yellow; }');
- done();
- });
- it('should override imports with "file" as input and returns contents', function(done) {
- var result = sass.renderSync({
- file: fixture('include-files/index.scss'),
- importer: function() {
- return {
- contents: 'div {color: yellow;}'
- };
- }
- });
- assert.equal(result.css.trim(), 'div {\n color: yellow; }\n\ndiv {\n color: yellow; }');
- done();
- });
- });
- describe('.render({stats: {}})', function() {
- var start = Date.now();
- it('should provide a start timestamp', function(done) {
- sass.render({
- file: fixture('include-files/index.scss'),
- success: function(result) {
- assert(typeof result.stats.start === 'number');
- assert(result.stats.start >= start);
- done();
- },
- error: function(err) {
- assert(!err);
- done();
- }
- });
- });
- it('should provide an end timestamp', function(done) {
- sass.render({
- file: fixture('include-files/index.scss'),
- success: function(result) {
- assert(typeof result.stats.end === 'number');
- assert(result.stats.end >= result.stats.start);
- done();
- },
- error: function(err) {
- assert(!err);
- done();
- }
- });
- });
- it('should provide a duration', function(done) {
- sass.render({
- file: fixture('include-files/index.scss'),
- success: function(result) {
- assert(typeof result.stats.duration === 'number');
- assert.equal(result.stats.end - result.stats.start, result.stats.duration);
- done();
- },
- error: function(err) {
- assert(!err);
- done();
- }
- });
- });
- it('should contain the given entry file', function(done) {
- sass.render({
- file: fixture('include-files/index.scss'),
- success: function(result) {
- assert.equal(result.stats.entry, fixture('include-files/index.scss'));
- done();
- },
- error: function(err) {
- assert(!err);
- done();
- }
- });
- });
- it('should contain an array of all included files', function(done) {
- var expected = [
- fixture('include-files/bar.scss').replace(/\\/g, '/'),
- fixture('include-files/foo.scss').replace(/\\/g, '/'),
- fixture('include-files/index.scss').replace(/\\/g, '/')
- ];
- sass.render({
- file: fixture('include-files/index.scss'),
- success: function(result) {
- assert.deepEqual(result.stats.includedFiles, expected);
- done();
- },
- error: function(err) {
- assert(!err);
- done();
- }
- });
- });
- it('should contain array with the entry if there are no import statements', function(done) {
- var expected = fixture('simple/index.scss').replace(/\\/g, '/');
- sass.render({
- file: fixture('simple/index.scss'),
- success: function(result) {
- assert.deepEqual(result.stats.includedFiles, [expected]);
- done();
- }
- });
- });
- it('should state `data` as entry file', function(done) {
- sass.render({
- data: read(fixture('simple/index.scss'), 'utf8'),
- success: function(result) {
- assert.equal(result.stats.entry, 'data');
- done();
- }
- });
- });
- it('should contain an empty array as includedFiles', function(done) {
- sass.render({
- data: read(fixture('simple/index.scss'), 'utf8'),
- success: function(result) {
- assert.deepEqual(result.stats.includedFiles, []);
- done();
- }
- });
- });
- });
- describe('.renderSync({stats: {}})', function() {
- var start = Date.now();
- var result = sass.renderSync({
- file: fixture('include-files/index.scss')
- });
- it('should provide a start timestamp', function(done) {
- assert(typeof result.stats.start === 'number');
- assert(result.stats.start >= start);
- done();
- });
- it('should provide an end timestamp', function(done) {
- assert(typeof result.stats.end === 'number');
- assert(result.stats.end >= result.stats.start);
- done();
- });
- it('should provide a duration', function(done) {
- assert(typeof result.stats.duration === 'number');
- assert.equal(result.stats.end - result.stats.start, result.stats.duration);
- done();
- });
- it('should contain the given entry file', function(done) {
- assert.equal(result.stats.entry, resolveFixture('include-files/index.scss'));
- done();
- });
- it('should contain an array of all included files', function(done) {
- var expected = [
- fixture('include-files/bar.scss').replace(/\\/g, '/'),
- fixture('include-files/foo.scss').replace(/\\/g, '/'),
- fixture('include-files/index.scss').replace(/\\/g, '/')
- ];
- assert.equal(result.stats.includedFiles[0], expected[0]);
- assert.equal(result.stats.includedFiles[1], expected[1]);
- assert.equal(result.stats.includedFiles[2], expected[2]);
- done();
- });
- it('should contain array with the entry if there are no import statements', function(done) {
- var expected = fixture('simple/index.scss').replace(/\\/g, '/');
- var result = sass.renderSync({
- file: fixture('simple/index.scss')
- });
- assert.deepEqual(result.stats.includedFiles, [expected]);
- done();
- });
- it('should state `data` as entry file', function(done) {
- var result = sass.renderSync({
- data: read(fixture('simple/index.scss'), 'utf8')
- });
- assert.equal(result.stats.entry, 'data');
- done();
- });
- it('should contain an empty array as includedFiles', function(done) {
- var result = sass.renderSync({
- data: read(fixture('simple/index.scss'), 'utf8')
- });
- assert.deepEqual(result.stats.includedFiles, []);
- done();
- });
- });
- describe('.info()', function() {
- it('should return a correct version info', function(done) {
- assert.equal(sass.info(), [
- 'node-sass version: ' + require('../package.json').version,
- 'libsass version: ' + require('../package.json').libsass
- ].join('\n'));
- done();
- });
- });
- });
|