summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/xhr/send-data-es-object.any.js
blob: 92286bca6dd00b82b78de39fcf7988ba1c424d07 (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
// META: title=XMLHttpRequest.send(ES object)

function do_test(obj, expected, name) {
  var test = async_test(name)
  test.step(function() {
    var client = new XMLHttpRequest()
    client.onload = test.step_func(function () {
      assert_equals(client.responseText, expected)
      test.done()
    });
    client.open('POST', 'resources/content.py')
    if (expected.exception) {
      if (expected.exception.identity) {
        assert_throws_exactly(expected.exception.identity,
                              function(){client.send(obj)})
      } else {
        assert_throws_js(expected.exception.ctor,
                         function(){client.send(obj)})
      }
      test.done()
    } else {
      client.send(obj)
    }
  });
}

do_test({}, '[object Object]', 'sending a plain empty object')
do_test(Math, '[object Math]', 'sending the ES Math object')
do_test(new XMLHttpRequest, '[object XMLHttpRequest]', 'sending a new XHR instance')
do_test(new ReadableStream, '[object ReadableStream]', 'sending a new ReadableStream instance')
do_test({toString:function(){}}, 'undefined', 'sending object that stringifies to undefined')
do_test({toString:function(){return null}}, 'null', 'sending object that stringifies to null')
var ancestor = {toString: function(){
  var ar=[]
  for (var prop in this) {
    if (this.hasOwnProperty(prop)) {
      ar.push(prop+'='+this[prop])
    }
  };
  return ar.join('&')
}};

var myObj = Object.create(ancestor, {foo:{value:1, enumerable: true},  bar:{value:'foo', enumerable:true}})
do_test(myObj, 'foo=1&bar=foo', 'object that stringifies to query string')

var myFakeJSON = {a:'a', b:'b', toString:function(){ return JSON.stringify(this, function(key, val){ return key ==='toString'?undefined:val; }) }}
do_test(myFakeJSON, '{"a":"a","b":"b"}', 'object that stringifies to JSON string')

var myFakeDoc1 = {valueOf:function(){return document}}
do_test(myFakeDoc1, '[object Object]', 'object whose valueOf() returns a document - ignore valueOf(), stringify')

var myFakeDoc2 = {toString:function(){return document}}
var expectedError = self.GLOBAL.isWorker() ? ReferenceError : TypeError;
do_test(myFakeDoc2, {exception: { ctor: expectedError } }, 'object whose toString() returns a document, expected to throw')

var err = {name:'FooError', message:'bar'};
var myThrower = {toString:function(){throw err;}};
do_test(myThrower, {exception: { identity: err }}, 'object whose toString() throws, expected to throw')