Test case for medium-sdk

50 Views Asked by At

I have a function which return an object. In the function I am calling function of medium-sdk. I want to stub the call to library function want to test the returned value from the callback function.Below is the function which I need to test.

getOAuthAccessToken: function (clientKey, clientSecret, code, redirectUri) {

    let orgInstallation = {
        client_key: clientKey,
        client_secret: clientSecret
    };

    let client = this.getInstance(orgInstallation);

    client.exchangeAuthorizationCode(code, redirectUri, (err, tokenResponse) => {

        if(tokenResponse){
            return {
                consumer_key: clientKey,
                consumer_secret: clientSecret,
                token: tokenResponse.access_token
            };
        }
        debugError(`There was an error retrieving access token: ${ _.get(err, 'message') }`);
        return null;
    });
},

I am trying to do like this:

 beforeEach(() => {
        client = new Medium.medium.MediumClient({
            clientId: clientKey,
            clientSecret: clientSecret
        });

        stubbed = sinon.stub(client, 'exchangeAuthorizationCode')

    });

    afterEach(() => {
        stubbed.restore();

    });
 it('should return the access token', (done) => {   
        stubbed.withArgs(code,redirectUri).yields(null, tokenResponse)

   Medium.getOAuthAccessToken(clientKey,clientSecret,code,redirectUri)


    });


});

Can anyone help me with this? I am new to Node.

0

There are 0 best solutions below