X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=auto_tests%2Ftests%2Fcallback.js;h=601acebcc392b7383168406e4be9bd9e394a0fa8;hb=4c10c8d21b6858ea9029bdb789f487d9103d72f9;hp=0e6b4fa78b63d2e9d54af3fb74b0008d3d86b60e;hpb=3adf4a6f00d3577b925338891a0b021ebc5ae325;p=dygraphs.git diff --git a/auto_tests/tests/callback.js b/auto_tests/tests/callback.js index 0e6b4fa..601aceb 100644 --- a/auto_tests/tests/callback.js +++ b/auto_tests/tests/callback.js @@ -8,12 +8,14 @@ var CallbackTestCase = TestCase("callback"); CallbackTestCase.prototype.setUp = function() { document.body.innerHTML = "
"; + this.xhr = XMLHttpRequest; this.styleSheet = document.createElement("style"); this.styleSheet.type = "text/css"; document.getElementsByTagName("head")[0].appendChild(this.styleSheet); }; CallbackTestCase.prototype.tearDown = function() { + XMLHttpRequest = this.xhr; }; var data = "X,a\,b,c\n" + @@ -487,3 +489,35 @@ CallbackTestCase.prototype.testGapHighlight = function() { assertEquals(8, h_pts[0].yval); assertEquals('A', h_pts[0].name); }; + +CallbackTestCase.prototype.testFailedResponse = function() { + + // Fake out the XMLHttpRequest so it doesn't do anything. + XMLHttpRequest = function () {}; + XMLHttpRequest.prototype.open = function () {}; + XMLHttpRequest.prototype.send = function () {}; + + var highlightCallback = function(e, x, pts, row) { + fail("should not reach here"); + }; + + var graph = document.getElementById("graph"); + graph.style.border = "2px solid black"; + var g = new Dygraph(graph, "data.csv", { // fake name + width: 400, + height: 300, + highlightCallback : highlightCallback + }); + + DygraphOps.dispatchMouseOver_Point(g, 800, 800); + DygraphOps.dispatchMouseMove_Point(g, 100, 100); + DygraphOps.dispatchMouseMove_Point(g, 800, 800); + + var oldOnerror = window.onerror; + var failed = false; + window.onerror = function() { failed = true; return false; } + + DygraphOps.dispatchMouseOut_Point(g, 800, 800); // This call should not throw an exception. + + assertFalse("exception thrown during mouseout", failed); +};