Mocha - 使用 ti-mocha 访问命名函数

Mocha - Accessing named functions with ti-mocha

我正在使用 mocha 的混合版本 ti-mocha 来为基于 Titanium SDK 的应用构建单元测试。我对 BDD 和 mocha 完全陌生,所以 API 学习曲线非常陡峭。这是我关于精简测试工具的问题。我可以访问 index.js 模块及其方法和属性。但是,我不知道如何访问该模块中的命名函数,在本例中为 doClick()。

我正在使用 mocha + should.js。在下面的测试工具中,上下文 "index" 通过,但上下文 "doClick" 失败。我对这个 API 很陌生,所以我不确定我是否正确地提出了这个问题。如何访问模块中的函数?

index-mocha.js

// creates the "mocha" global necessary to run a test suite anywhere in your app
var should = require('should');

module.exports = function(index) {
    // create the test suite
    describe('mochatest', function() {

        context('index', function() {

            it('index exists', function() {
                should.exist(index);
            });

            it('index.open function', function() {
                should(index.open).be.a.Function;
            }); 

            it('id = index', function() {
                index.id.should.equal('index');
            });
        });

        context('doClick', function() {

            it('doClick exists', function() {
                should.exist(index.doClick);
                // return;
            });

            it('doClick is a function', function() {
                should(index.doClick).be.a.Function;
            });
        });
    });

    var outputFile = Ti.Filesystem.getFile(Ti.Filesystem.tempDirectory, 'results.json');
    outputFile.createFile();

    mocha.setup({
        reporter: 'ti-spec', // the reporter to use with your tests
        outputFile: outputFile, // write results to the given Ti.Filesystem.File file
        quiet: false // if true, suppress all console logging
    });

    // run the tests
    mocha.run();
    };

index.js

function doClick(e) {
    alert($.label.text);
}

if(runTests){
    require('ti-mocha');

    $.index.addEventListener('open', function(){
        require('index-mocha')($.index);
    });
}

$.index.open();

很高兴看到有人在 Titanium 中进行测试:)

为了澄清一件事,变量 $ 指的是当前控制器的一个实例。此外,Alloy 为您提供了对已通过此变量定义了 id 的视图元素的引用;这可能被视为一点糖,因为所有这些视图都可以通过 $.getViews().

访问

因此,您的控制器文件中定义的所有函数只能从该控制器中访问。如果您希望它们可以从外部访问,最简单和最干净的方法是 exports 它们。

这可以通过两种方式完成:

  • 通过直接将它们添加到控制器对象

    $.doClick = doClick;

  • 通过使用 exports 变量

    exports.doClick = doClick;

结果将完全相同,在编译过程中,Alloy 将合并 exports 变量(最初只是一个空对象)与您的控制器 a.k.a $.

然后,只需通过 require 而不是 index 视图传递控制器,即可访问这两个视图和新添加的侦听器。