1

パッケージでTinytestを使用して単体テストに取り組んでおり、メソッドが例外を発生させることをテストしたかったので、test.throws().

私は隕石プロジェクトを作成します:

meteor create myapp
cd myapp
meteor add tinytest

パッケージを作成するには、

meteor create --package test-exception

そして、これは私の簡単なテスト
ファイルですtest-exception.js

Joe = {
    init: function () {
        throw "an exception";
    }
}

ファイルpackage.js

Package.describe({
  name: 'tinytest-throws',
  version: '0.0.1'
});

Package.onUse(function(api) {
  api.versionsFrom('1.2.0.2');
  api.use('ecmascript');
  api.addFiles('tinytest-throws.js');

  api.export('Joe', 'server'); // create a global variable for the server side
});

Package.onTest(function(api) {
  api.use('ecmascript');
  api.use('tinytest');
  api.use('tinytest-throws');
  api.addFiles('tinytest-throws-tests.js', 'server'); // launch this test only as server
});

ファイルtest-exception-tests.js

Tinytest.add('Call a method that raise an exception', function (test) {
    test.throws(
        Joe.init, // That could be a way, but this fails
        "This is an exception"
    );

    test.throws(
        Joe.init(),
        "This is an exception"
    );
});

例外が適切に発生していることをテストする方法を知っている人はいますか?

4

1 に答える 1

1

わかったよ。まず、Meteor.Error を使用する必要があります。だから私のJoeオブジェクトは次のようになります:

Joe = {
    init: function () {
        throw new Meteor.Error("This is an exception");
    }
}

これで、次を使用してエラーをキャッチできますTest.throws

test.throws(
    function() {
        Joe.init()
    },
    "n except" // a substring of the exception message
);
于 2015-10-19T15:38:50.080 に答える