У меня есть функция, которая возвращает объект.В функции я называю функцию medium-sdk.Я хочу заблокировать вызов функции библиотеки, хочу проверить возвращаемое значение из функции обратного вызова. Ниже приведена функция, которую мне нужно проверить.
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;
});
},
Я пытаюсь сделать так:
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)
});
});
Кто-нибудь может мне помочь с этим?Я новичок в Node.