背景:如何單元測試與DOM元素交互的Javascript代碼
我來自Java背景,所以不太熟悉Javascript。
我們正在計劃推出JavaScript的單元測試,以我們現有的(傳統)代碼和未來的工作都。我們主要是Java商店(Spring,Weblogic等)。
我們正在研究,讓我們與IDE(IntelliJ IDEA的)和聲納良好的集成方案,以及能夠運行它們作爲持續集成的一部分。
JsTestDriver似乎勾出所有的箱子。
問:
很多我們現有的JavaScript代碼是內嵌內的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世界中的方式重構事情變得非常複雜,使它更容易被測試。
所以,對於上述樣品的情況下任何建議,將不勝感激!
另請參見[在茉莉花測試中測試DOM操作](http://stackoverflow.com/questions/7672389/testing-dom-manipulating-in-jasmine-test) –
還檢查出phantomjs headless webkit – obimod