Node.js   发布时间:2022-04-24  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了node.js – 轮询URL直到在JSON响应中设置某个值:Mocha,Integration testing大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用Mocha自动化端到端场景.
我有一个url端点,它将被轮询,直到在结果响应中获得某个值.有什么办法吗?

解决方法

使用 request和回调方法的示例:

const request = require('request');

describe('example',() => {
    it('polling',function (donE) {
        this.timeout(5000);

        let attemptsLeft = 10;
        const expectedValue = '42';
        const delaybetweenrequest = 100;

        function check() {
            request('http://www.google.com',(error,response,body) => {
                if (body === expectedvalue) return done();
                attemptsLeft -= 1;
                if (!attemptsLeft) return done(new Error('All attempts used'));
                setTimeout(check,delaybetweenrequest);
            });
        }

        check();
    });
});

got和async / await方法的示例:

const utils = require('util');
const got = require('got');

const wait = utils.promisify(setTimeout);

describe('example',async function (donE) {
        this.timeout(5000);
        const expectedValue = '42';
        const delaybetweenrequest = 100;

        for (let attemptsLeft = 10; attemptsLeft; attemptsLeft -= 1) {
            const resp = await got.get('http://www.google.com');
            if (resp.body === expectedvalue) return done();
            await wait(delaybetweenrequest);
        }

        done(new Error('All attempts used'));
    });
});

大佬总结

以上是大佬教程为你收集整理的node.js – 轮询URL直到在JSON响应中设置某个值:Mocha,Integration testing全部内容,希望文章能够帮你解决node.js – 轮询URL直到在JSON响应中设置某个值:Mocha,Integration testing所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。