From 9b06b9ebd3199a6fcc56b12d2bdb36daec5b6c8b Mon Sep 17 00:00:00 2001 From: Aaron Heckmann Date: Fri, 17 Aug 2012 15:12:48 -0700 Subject: [PATCH] added; test case for #68 --- test/68.js | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 test/68.js diff --git a/test/68.js b/test/68.js new file mode 100644 index 0000000..dfa028a --- /dev/null +++ b/test/68.js @@ -0,0 +1,47 @@ + +// gm - Copyright Aaron Heckmann (MIT Licensed) +var assert = require('assert') +var url = require('url') +var http = require('http') + +module.exports = function (_, dir, finish, gm) { + return finish(); + + // use this test when gm is not installed. + // it demonstrates that err is often passed as null (timing) + // to detect the stream error that the gm command is not installed, + // you must test the stderr output manually for "execvp(): No such file or directory" + + function done (err){ + if (err) return finish(done.ran = err); + if (done.ran) return; + finish(); + } + + http.get(url.parse('http://www.google.com/images/srpr/logo3w.png'), function (resp) { + gm(resp, 'logo3w.png').stream(function (err, stdout, stderr) { + return finish(); + + if (err) { + console.error('Error processing image', err) + } else { + stdout.on('data', function (chunk) { + console.log('Chunk recieved', chunk.toString()) + }) + stdout.on('end', function () { + console.log('Stream ended') + }) + stderr.on('data', function (chunk) { + console.log('err Chunk recieved', chunk.toString()) + }) + stderr.on('end', function () { + console.log('err Stream ended') + }) + } + }) + }) + .on('error', function (err) { + console.error('Error fetching image', err) + }) + +}