代码之家  ›  专栏  ›  技术社区  ›  Krishna Kalubandi

Sinon存根包含同步和异步函数的对象

  •  2
  • Krishna Kalubandi  · 技术社区  · 7 年前

    我在一个项目中观察该节点的每个绑定层功能的类型。js javascript层调用。为了观察类型,我使用 sinon 看起来像这样

    var originalProcessBinding = process.binding;
    sinon.stub(process, 'binding').callsFake(function (data) {
      var res = originalProcessBinding(data);
      // custom code here
      return res;
    }
    

    所以,我的想法是 object 在…内 res 看看是不是 Function . 如果是,请创建一个记录状态的存根,然后调用原始 作用 . 这个 custom code 看起来像

    _.forEach(res, function(value, key) {
      if (_.isFunction(value)) {
        sinon.stub(res, key).callsFake(function() {
          var args = arguments;
          // do some processing with the arguments
          save(args);
          // call the original function
          return value(...arguments);
        }
      }
    }
    

    然而,我不确定这是否能处理所有类型的退货。例如,如何处理错误?如果函数是异步的,会发生什么?

    我运行了 node.js 测试套件并发现了许多失败的测试用例。是否有更好的方法来存根函数。谢谢

    编辑:失败的测试用例有如下常见错误 Callback was already called Timeout Expected Error .

    1 回复  |  直到 7 年前
        1
  •  0
  •   Krishna Kalubandi    7 年前

    不幸的是,即使许多错误可以修复,也很难添加 sinon 到构建过程。我在vanilla js中使用自己的存根方法来解决这个问题。任何想在内部存根的人 node.js 函数应该会发现这很有用。

    (function() { process.binding = function(args) {
        const org = process.binding;
        const util = require('util');
    
        var that = org(args),
          thatc = that;
          for (let i in thatc) {
            if (util.isFunction(thatc[i]) && (!thatc[i].__isStubbed)) {
              let fn = thatc[i];
              if (i[0] !== i[0].toUpperCase()) {
                // hacky workaround to avoid stubbing function constructors.
                thatc[i] = function() {
                  save(arguments);
                  return fn.apply(that, arguments);
                }
                thatc[i].__isStubbed = true; 
              }
            }
          }
        return thatc;
      } 
    })();
    

    此代码通过了当前节点主节点的所有测试。js。正在添加 西农 似乎改变了触发内部v8检查失败的函数对象。