img-stats_test.js 2.96 KB
/*global require:true, process:true, console: true*/
(function( exports ){
  "use strict";

  var img_stats = require('../lib/img-stats.js');

  /*
    ======== A Handy Little Nodeunit Reference ========
    https://github.com/caolan/nodeunit

    Test methods:
      test.expect(numAssertions)
      test.done()
    Test assertions:
      test.ok(value, [message])
      test.equal(actual, expected, [message])
      test.notEqual(actual, expected, [message])
      test.deepEqual(actual, expected, [message])
      test.notDeepEqual(actual, expected, [message])
      test.strictEqual(actual, expected, [message])
      test.notStrictEqual(actual, expected, [message])
      test.throws(block, [error], [message])
      test.doesNotThrow(block, [error], [message])
      test.ifError(value)
  */

  exports['img-stats'] = {
    setUp: function(done) {
      // setup here
      done();
    },
    'no args': function( test ) {
      test.expect(1);
      // tests here
      test.throws( function(){
        img_stats.stats();
      }, Error , 'Needs a filename.');
      test.done();
    },
    'cat.png async': function( test ){
      test.expect(3);
      img_stats.stats( process.cwd() + '/test/files/cat.png' , function( data ){
        test.equal( data.width , 100 , "Width should be 100" );
        test.equal( data.height , 100 , "Height should be 100" );
        test.equal( data.type , 'PNG' , "Cat should be a png" );
        test.done();
      });
    },
    'cat.png Sync': function( test ){
      test.expect(3);
      var data = img_stats.statsSync( process.cwd() + '/test/files/cat.png' );
      test.equal( data.width , 100 , "Width should be 100" );
      test.equal( data.height , 100 , "Height should be 100" );
      test.equal( data.type , 'PNG' , "Cat should be a png" );
      test.done();
    },
    'bear.svg async': function( test ){
      test.expect(3);
      img_stats.stats( process.cwd() + '/test/files/bear.svg' , function( data ){
        test.equal( data.width , "100" , "Bear width should be 100" );
        test.equal( data.height , "62.905" , "Bear height should be 100" );
        test.equal( data.type , "SVG" , "Bear should be an SVG" );
        test.done();
      });
    },
    'bear.svg sync': function( test ){
      test.expect(3);
      var data = img_stats.statsSync( process.cwd() + '/test/files/bear.svg' );
      test.equal( data.width , "100" , "Bear width should be 100" );
      test.equal( data.height , "62.905" , "Bear height should be 100" );
      test.equal( data.type , "SVG" , "Bear should be an SVG" );
      test.done();
    },
    'bear-2.svg sync': function( test ){
      test.expect(3);
      var data = img_stats.statsSync( process.cwd() + '/test/files/bear-2.svg' );
      test.equal( data.width , "100" , "Bear width should be 100" );
      test.equal( data.height , "62.905" , "Bear height should be 100" );
      test.equal( data.type , "SVG" , "Bear should be an SVG" );
      test.done();
    }
  };
}(typeof exports === 'object' && exports || this));