5

以下のコードを書いて、jquery ダイアログが例外的に表示されるかどうかをテストしてみます。

var jqueryMock = sinon.mock(jQuery);
var dialogExpectation = jqueryMock.expects("dialog");
dialogExpectation.once();

//call my function, in which create a jquery dialog.

equals(dialogExpectation.verify(), true, "Dialog is displayed");
jqueryMock.restore();   

ただし、次のエラーが表示されます: テスト #1 で死亡しました: 未定義のプロパティ ダイアログを関数としてラップしようとしました - { "メッセージ": "未定義のプロパティ ダイアログを関数としてラップしようとしました", "名前": "TypeError" }

jquery コードは非常に単純です。

displayMessage: function (message, title, hashId) { 

//some logic to build the message, title and hashId.  

 $(messageDiv).dialog({
            height: 240,
            width: 375,
            modal: true,
            title: title,
            resizable: false,
            buttons: [{
                text: localizedErrorMessages['OkText'],
                click: function () {
                    $(this).dialog("close");
                }
            }]             
        }); // end of dialog            
    } // end of displayMessage

このシナリオで jquery ダイアログをモックして単体テストを作成する方法を知っている人はいますか?

4

2 に答える 2

3

次のように jQuery.fn をモックする必要があります。

var jQueryMock = sinon.mock(jQuery.fn);
于 2012-04-20T10:42:05.513 に答える
0

実際の答えを示すためにjsFiddleを作成しました。

function displayMessage(message, title, hashId) { 

     $("#message").dialog(); 
} 

test("dialog was called", function() {

    var jQueryMock = sinon.mock($.fn); // jQuery.fn and $.fn are interchangeable
    var dialogExpectation = jQueryMock.expects("dialog");
    dialogExpectation.once();

    //call my function, in which create a jquery dialog.
    displayMessage("new message", "title", 1);

    equal(dialogExpectation.verify(), true, "Dialog was not displayed");
    jQueryMock.restore();   
});

// This demonstrates a failing test - since the method actuall calls "dialog".
// It also demonstrates a more compact approach to creating the mock
test("toggle was called", function() {

    var mock = sinon.mock(jQuery.fn).expects("toggle").once();
    displayMessage("new message", "title", 1);

    equal(mock.verify(), true, "Toggle was never called");
});
于 2014-04-18T03:07:15.033 に答える