Search code examples
javascriptnode.jsmocha.jsbasic-authenticationsupertest

Setting Basic Auth in Mocha and SuperTest


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();
        });
});

Solution

  • 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