summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/sort/comparefn-nonfunction-call-throws.js
blob: c35b0f876e68a2d11e0ae088119241f5de8782c1 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// Copyright (C) 2017 Jordan Harband. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-array.prototype.sort
description: throws on a non-undefined non-function
info: |
  22.1.3.25 Array.prototype.sort ( comparefn )

  Upon entry, the following steps are performed to initialize evaluation
  of the sort function:

  ...
  1. If _comparefn_ is not *undefined* and IsCallable(_comparefn_) is *false*, throw a *TypeError* exception.
  ...
features: [Symbol]
---*/

var sample = [1];
var poisoned = {
  get length() {
    throw new Test262Error("IsCallable(comparefn) should be observed before this.length");
  }
};

assert.throws(TypeError, function() {
 sample.sort(null);
}, "sample.sort(null);");

assert.throws(TypeError, function() {
  [].sort.call(poisoned, null);
}, "[].sort.call(poisoned, null);");

assert.throws(TypeError, function() {
  sample.sort(true);
}, "sample.sort(true);");

assert.throws(TypeError, function() {
  [].sort.call(poisoned, true);
}, "[].sort.call(poisoned, true);");

assert.throws(TypeError, function() {
  sample.sort(false);
}, "sample.sort(false);");

assert.throws(TypeError, function() {
  [].sort.call(poisoned, false);
}, "[].sort.call(poisoned, false);");

assert.throws(TypeError, function() {
  sample.sort('');
}, "sample.sort('');");

assert.throws(TypeError, function() {
  [].sort.call(poisoned, '');
}, "[].sort.call(poisoned, '');");

assert.throws(TypeError, function() {
  sample.sort(/a/g);
}, "sample.sort(/a/g);");

assert.throws(TypeError, function() {
  [].sort.call(poisoned, /a/g);
}, "[].sort.call(poisoned, /a/g);");

assert.throws(TypeError, function() {
  sample.sort(42);
}, "sample.sort(42);");

assert.throws(TypeError, function() {
  [].sort.call(poisoned, 42);
}, "[].sort.call(poisoned, 42);");

assert.throws(TypeError, function() {
  sample.sort([]);
}, "sample.sort([]);");

assert.throws(TypeError, function() {
  [].sort.call(poisoned, []);
}, "[].sort.call(poisoned, []);");

assert.throws(TypeError, function() {
  sample.sort({});
}, "sample.sort({});");

assert.throws(TypeError, function() {
  [].sort.call(poisoned, {});
}, "[].sort.call(poisoned, {});");

assert.throws(TypeError, function() {
  sample.sort(Symbol());
}, "sample.sort(Symbol());");

assert.throws(TypeError, function() {
  [].sort.call(poisoned, Symbol());
}, "[].sort.call(poisoned, Symbol());");