Revision 149c83d77d05dafea4a5a4dadf6670bfadc8e360 authored by moz-wptsync-bot on 16 March 2018, 13:38:52 UTC, committed by moz-wptsync-bot on 16 March 2018, 13:38:52 UTC
bugzilla-url: https://bugzilla.mozilla.org/show_bug.cgi?id=1445883
gecko-commit: 0f81334efa0a008db8931a41eef2d26a77d0e800
gecko-integration-branch: mozilla-inbound
gecko-reviewers: smaug
1 parent 1cbb928
Raw File
send-usp.any.js
const NUM_TESTS = 128;

function encode(n) {
  if (n === 0x20) {
    return "\x2B";
  }

  if (n === 0x2A || n === 0x2D || n === 0x2E ||
      (0x30 <= n && n <= 0x39) || (0x41 <= n && n <= 0x5A) ||
      n === 0x5F || (0x61 <= n && n <= 0x7A)) {
    return String.fromCharCode(n);
  }

  var s = n.toString(16).toUpperCase();
  return "%" + (s.length === 2 ? s : '0' + s);
}

  var tests = [];
  var overall_test = async_test("Overall fetch with URLSearchParams");
  for (var i = 0; i < NUM_TESTS; i++) {
    // Multiple subtests so that failures can be fine-grained
    tests[i] = async_test("XMLHttpRequest.send(URLSearchParams) (" + i + ")");
  }

  // We use a single XHR since this test tends to time out
  // with 128 consecutive fetches when run in parallel
  // with many other WPT tests.
  var x = new XMLHttpRequest();
  x.onload = overall_test.step_func(function() {
    var response_split = x.response.split("&");
    overall_test.done();
    for (var i = 0; i < NUM_TESTS; i++) {
      tests[i].step(function() {
        assert_equals(response_split[i], "a" + i + "="+encode(i));
        tests[i].done();
      });
    }
  });
  x.onerror = overall_test.unreached_func();

  x.open("POST", "resources/content.py");
  var usp = new URLSearchParams();
  for (var i = 0; i < NUM_TESTS; i++) {
    usp.append("a" + i, String.fromCharCode(i));
  }
  x.send(usp)
back to top