5

バックグラウンド:

私は Java のバックグラウンドを持っているので、Javascript にはあまり詳しくありません。

JavaScript 単体テストを既存の (レガシー) コードと将来の作業の両方に導入する予定です。私たちは主にJavaショップ(Spring、Weblogicなど)です。

私たちは、IDE (IntelliJ のアイデア) とソナーとの適切な統合を実現し、継続的統合の一部としてそれらを実行できるオプションを検討しています。

JsTestDriver は、すべてのボックスにチェックを入れているようです。

質問:

既存の JavaScript コードの多くは、a) JSP 内に埋め込まれており、b) jQuery を利用してページ要素と直接対話しています。

DOM に大きく依存している関数をテストするにはどうすればよいでしょうか。私が話している関数のコード例を次に示します。

function enableOccupationDetailsText (){
    $( "#fldOccupation" ).val("Unknown");
    $( "#fldOccupation_Details" ).attr("disabled", "");
    $( "#fldOccupation_Details" ).val("");
    $( "#fldOccupation_Details" ).focus();
}

また

jQuery(document).ready(function(){

    var oTable = $('#policies').dataTable( {
            "sDom" : 'frplitip',
                "bProcessing": true,
                "bServerSide": true,
                "sAjaxSource": "xxxx.do",
                "sPaginationType": "full_numbers",
                "aaSorting": [[ 1, "asc" ]],
                "oLanguage": {
                    "sProcessing":   "Processing...",
                    "sLengthMenu":   "Show _MENU_ policies",
                    "sZeroRecords":  "No matching policies found",
                    "sInfo":         "Showing _START_ to _END_ of _TOTAL_ policies",
                    "sInfoEmpty":    "Showing 0 to 0 of 0 policies",
                    "sInfoFiltered": "(filtered from _MAX_ total policies)",
                    "sInfoPostFix":  "",
                    "sSearch":       "Search:",
                    "sUrl":          "",
                    "oPaginate": {
                        "sFirst":    "First",
                        "sPrevious": "Previous",
                        "sNext":     "Next",
                        "sLast":     "Last"
                }
            },
                "fnRowCallback": function( nRow, aData, iDisplayIndex, iDisplayIndexFull ) {
                        $('td:eq(0)', nRow).html( "<a href='/ole/policy/general_details.do?policy_id="+aData[0]+"'>"+aData[0]+"</a>" );
                        return nRow;

                },

                "fnServerData" : function ( url, data, callback, settings ) {

                settings.jqXHR = $.ajax( {
                    "url": url,
                    "data": data,
                    "success": function (json) {
                        if (json.errorMessage != null) {
                            var an = settings.aanFeatures.r;
                            an[0].style.fontSize="18px";
                            an[0].style.backgroundColor="red";
                            an[0].style.height="70px";
                            an[0].innerHTML=json.errorMessage;
                            setTimeout('window.location="/xxxx"',1000);
                            //window.location="/xxxxx";
                        } else {
                            $(settings.oInstance).trigger('xhr', settings);
                            callback( json );
                        }
                    },
                    "dataType": "json",
                    "cache": false,
                    "error": function (xhr, error, thrown) {
                        if ( error == "parsererror" ) {
                            alert( "Unexpected error, please contact system administrator. Press OK to be redirected to home page." );
                            window.location="/xxxx";
                        }
                    }
                } );
                }

            } );
        $("#policies_filter :text").attr('id', 'fldKeywordSearch');
        $("#policies_length :input").attr('id', 'fldNumberOfRows');
        $("body").find("span > span").css("border","3px solid red");
        oTable.fnSetFilteringDelay(500);
        oTable.fnSearchHighlighting();
        $("#fldKeywordSearch").focus();

}
);

後者の場合、私のアプローチは、問題の関数が大きすぎるため、テストできるように、より小さな (単位) に分割する必要があるというものです。しかし、DOM、jQuery、データテーブル、ajax などとのすべての相互作用ポイントにより、Java の世界で行っているように、よりテストしやすくするためにリファクタリングすることが非常に複雑になります。

したがって、サンプルケースに対する上記の提案は大歓迎です!

4

2 に答える 2

6

次のコードをテストするには:

function enableOccupationDetailsText (){
    $( "#fldOccupation" ).val("Unknown");
    $( "#fldOccupation_Details" ).attr("disabled", "");
    $( "#fldOccupation_Details" ).val("");
    $( "#fldOccupation_Details" ).focus();
}

次のコードを使用できます。

// First, create the elements
$( '<input>', { id: 'fldOccupation' } ).appendTo( document.body );
$( '<input>', { disabled: true, id: 'fldOccupation_Details' } )
    .appendTo( document.body );

// Then, run the function to test
enableOccupationDetailsText();

// And test
assert( $( '#fldOccupation' ).val(), 'Unknown' );
assert( $( '#fldOccupation_Details' ).prop( 'disabled' ), false );

ご覧のとおり、これは単なる古典的なsetup > run > assertパターンです。

于 2012-06-18T13:23:43.347 に答える
4

たぶんSelenium/SeleniumGridはあなたにとって便利です:http ://seleniumhq.org/

定義ごとの「UnitTest」ではありませんが、単体テストとしてjavaまたはpython(およびその他多数...)を使用してSeleniumテストを作成できます。Seleniumtestsは、実際のブラウザーでWebテストを開始し、フロントエンド(およびDOM操作)のテストに適しています。

編集:今日、私は特にjQueryのバックグラウンドでユニットテストのさまざまな方法を説明しているこのサイトに出くわしました:http://addyosmani.com/blog/jquery-testing-tools/

于 2012-06-18T13:17:48.953 に答える