diff options
| author | Adam Meadows <[email protected]> | 2015-08-12 14:58:19 -0700 |
|---|---|---|
| committer | Adam Meadows <[email protected]> | 2015-08-12 15:02:39 -0700 |
| commit | c66864d65f355e3d4b3f4e69e9fd63998f501331 (patch) | |
| tree | 8c77d851f08e3c0a38857495add3cf4170eb9e9c /test | |
| parent | ef96cf7b8147318dc164181adc2a7a626c0a14f4 (diff) | |
| download | node-coveralls-c66864d65f355e3d4b3f4e69e9fd63998f501331.tar.xz node-coveralls-c66864d65f355e3d4b3f4e69e9fd63998f501331.zip | |
Added support for process.env.COVERALLS_ENDPOINT
To allow using this tool with Coveralls Enterprise, I've added
support in `sendToCoveralls` to read the host from a `COVERALLS_ENDPOINT`
environment variable (if it exists), else default to coveralls.io (as before).
Diffstat (limited to 'test')
| -rw-r--r-- | test/sendToCoveralls.js | 31 |
1 files changed, 29 insertions, 2 deletions
diff --git a/test/sendToCoveralls.js b/test/sendToCoveralls.js index 937df95..f809319 100644 --- a/test/sendToCoveralls.js +++ b/test/sendToCoveralls.js @@ -5,9 +5,20 @@ var index = require('../index'); logger = require('log-driver')({level : false}); describe("sendToCoveralls", function(){ + var realCoverallsHost; + beforeEach(function() { + realCoverallsHost = process.env.COVERALLS_ENDPOINT; + }); + afterEach(function() { sinon.restoreAll(); + if (realCoverallsHost !== undefined) { + process.env.COVERALLS_ENDPOINT = realCoverallsHost; + } else { + delete process.env.COVERALLS_ENDPOINT; + } }); + it ("passes on the correct params to request.post", function(done){ sinon.stub(request, 'post', function(obj, cb){ obj.url.should.equal('https://coveralls.io/api/v1/jobs'); @@ -16,12 +27,28 @@ describe("sendToCoveralls", function(){ }); var obj = {"some":"obj"}; - index.sendToCoveralls(obj, function(err, response, body){ + index.sendToCoveralls(obj, function(err, response, body){ + err.should.equal('err'); + response.should.equal('response'); + body.should.equal('body'); + done(); + }); + }); + + it ("allows sending to enterprise url", function(done){ + process.env.COVERALLS_ENDPOINT = 'https://coveralls-ubuntu.domain.com'; + sinon.stub(request, 'post', function(obj, cb){ + obj.url.should.equal('https://coveralls-ubuntu.domain.com/api/v1/jobs'); + obj.form.should.eql({json : '{"some":"obj"}'}); + cb('err', 'response', 'body'); + }); + + var obj = {"some":"obj"}; + index.sendToCoveralls(obj, function(err, response, body){ err.should.equal('err'); response.should.equal('response'); body.should.equal('body'); done(); - }); }); }); |
