summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_bug482935.html
blob: 17f5bfdb3dfe1e3ba0384e4b687ce725ef5740db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE HTML>
<html>
<head>
  <title>Test bug 482935</title>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="	/tests/SimpleTest/test.css" />
</head>
<body onload="onWindowLoad()">
<script class="testbody" type="text/javascript">

var url = "bug482935.sjs";

function clearCache() {
    SpecialPowers.Cc["@mozilla.org/netwerk/cache-storage-service;1"].
               getService(SpecialPowers.Ci.nsICacheStorageService).
               clear();
}

// Tests that the response is cached if the request is cancelled
// after it has reached state 4
function testCancelInPhase4() {

  clearCache();

  // First request - should be loaded from server
  var xhr = new XMLHttpRequest();
  xhr.addEventListener("readystatechange", function(e) {
    if (xhr.readyState < xhr.DONE) return;
    is(xhr.readyState, xhr.DONE, "wrong readyState");
    xhr.abort();
    SimpleTest.executeSoon(function() {
      // This request was cancelled, so the responseText should be empty string
      is(xhr.responseText, "", "Expected empty response to cancelled request");

      // Second request - should be found in cache
      var xhr2 = new XMLHttpRequest();

      xhr2.addEventListener("load", function() {
        is(xhr2.responseText, "0", "Received fresh value for second request");
        SimpleTest.finish();
      }, false);

      xhr2.open("GET", url);
      xhr2.setRequestHeader("X-Request", "1", false);

      try { xhr2.send(); }
      catch(e) {
        is(xhr2.status, "200", "Exception!");
      }
    });
  }, false);

  xhr.open("GET", url, true);
  xhr.setRequestHeader("X-Request", "0", false);
  try { xhr.send(); }
  catch(e) {
    is("Nothing", "Exception", "Boom: " + e);
  }
}

function onWindowLoad() {
  testCancelInPhase4();
}

SimpleTest.waitForExplicitFinish();
</script>
</body>
</html>