我正在尝试测试一个调用 window.location.search 的简单函数。我试图了解如何存根此调用,以便我可以返回我选择的 url。
功能:
getParameterByName: (name) =>
name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]")
regexS = "[\\?&]" + name + "=([^&#]*)"
regex = new RegExp(regexS)
results = regex.exec(window.location.search) //Stub call to window.location.search
if(results == null)
return ""
else
return decodeURIComponent(results[1].replace(/\+/g, " "))
测试用例:
describe "Data tests", () ->
it "Should parse parameter from url", () ->
data = new Data()
console.log("search string: " + window.location.search) //prints "search string:"
window.location.search = "myUrl"
console.log("search string: " + window.location.search) //prints "search string:"
console.log(data.getParameterByName('varName'))
expect(true).toBe(true)
我最初的尝试是直接返回一个值,如下所示:
sinon.stub(window.location.search).returns("myUrl")
这当然行不通。我认为我没有正确指定存根,但它显示了我的意图。
任何有关如何解决此问题的想法将不胜感激。