バックグラウンド:
私は 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 の世界で行っているように、よりテストしやすくするためにリファクタリングすることが非常に複雑になります。
したがって、サンプルケースに対する上記の提案は大歓迎です!