Setting Basic Auth in Mocha and SuperTest

Peter Chappy picture Peter Chappy · Feb 27, 2015 · Viewed 12.6k times · Source

I'm trying to set us a test to verify the username and password of a path blocked by the basic auth of a username and password.

it('should receive a status code of 200 with login', function(done) {
    request(url)
        .get("/staging")
        .expect(200)
        .set('Authorization', 'Basic username:password')
        .end(function(err, res) {
            if (err) {
                throw err;
            }

            done();
        });
});

Answer

Yves M. picture Yves M. · May 4, 2015

Using the auth method

SuperTest is based on SuperAgent which provides the auth method to facilitate Basic Authentication:

it('should receive a status code of 200 with login', function(done) {
    request(url)
        .get('/staging')
        .auth('the-username', 'the-password')
        .expect(200, done);
});

Source: http://visionmedia.github.io/superagent/#basic-authentication


PS: You can pass done straight to any of the .expect() calls