postman-runtime
Version:
Underlying library of executing Postman Collections (used by Newman)
113 lines (101 loc) • 3.79 kB
JavaScript
var expect = require('chai').expect;
describe('basic auth', function () {
var testrun,
runOptions = {
collection: {
item: {
name: 'DigestAuth',
request: {
url: 'https://postman-echo.com/basic-auth',
auth: {
type: 'basic',
basic: {
username: '{{uname}}',
password: '{{pass}}'
}
}
}
}
}
};
describe('with correct details', function () {
before(function (done) {
runOptions.environment = {
values: [{
key: 'uname',
value: 'postman'
}, {
key: 'pass',
value: 'password'
}]
};
// perform the collection run
this.run(runOptions, function (err, results) {
testrun = results;
done(err);
});
});
it('should have completed the run', function () {
expect(testrun).to.be.ok;
expect(testrun).to.nested.include({
'done.callCount': 1
});
testrun.done.getCall(0).args[0] && console.error(testrun.done.getCall(0).args[0].stack);
expect(testrun.done.getCall(0).args[0]).to.be.null;
expect(testrun).to.nested.include({
'start.callCount': 1
});
});
it('should have sent the request once', function () {
expect(testrun).to.nested.include({
'request.callCount': 1
});
var err = testrun.request.firstCall.args[0],
request = testrun.request.firstCall.args[3],
response = testrun.request.firstCall.args[2];
expect(err).to.be.null;
expect(request.url.toString()).to.eql('https://postman-echo.com/basic-auth');
expect(response).to.have.property('code', 200);
});
});
describe('with incorrect details', function () {
before(function (done) {
runOptions.environment = {
values: [{
key: 'uname',
value: 'iamnotpostman'
}, {
key: 'pass',
value: 'password'
}]
};
// perform the collection run
this.run(runOptions, function (err, results) {
testrun = results;
done(err);
});
});
it('should have completed the run', function () {
expect(testrun).to.be.ok;
expect(testrun).to.nested.include({
'done.callCount': 1
});
testrun.done.getCall(0).args[0] && console.error(testrun.done.getCall(0).args[0].stack);
expect(testrun.done.getCall(0).args[0]).to.be.null;
expect(testrun).to.nested.include({
'start.callCount': 1
});
});
it('should have sent the request once', function () {
expect(testrun).to.nested.include({
'request.callCount': 1
});
var err = testrun.request.firstCall.args[0],
request = testrun.request.lastCall.args[3],
response = testrun.request.lastCall.args[2];
expect(err).to.be.null;
expect(request.url.toString()).to.eql('https://postman-echo.com/basic-auth');
expect(response).to.have.property('code', 401);
});
});
});