summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/indexOf/position-tointeger-toprimitive.js
blob: 68a89ae176af152095a1ac1bcbd103c1033e69b5 (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
// Copyright (C) 2017 Josh Wolfe. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: String.prototype.indexOf type coercion for position parameter
esid: sec-string.prototype.indexof
info: |
  String.prototype.indexOf ( searchString [ , position ] )

  4. Let pos be ? ToInteger(position).
features: [Symbol.toPrimitive, computed-property-names]
---*/

function err() {
  throw new Test262Error();
}

function MyError() {}

assert.sameValue("aaaa".indexOf("aa", {
  [Symbol.toPrimitive]: function() {
    return 1;
  },
  valueOf: err,
  toString: err
}), 1, "ToPrimitive: @@toPrimitive takes precedence");
assert.sameValue("aaaa".indexOf("aa", {
  valueOf: function() {
    return 1;
  },
  toString: err
}), 1, "ToPrimitive: valueOf takes precedence over toString");
assert.sameValue("aaaa".indexOf("aa", {
  toString: function() {
    return 1;
  }
}), 1, "ToPrimitive: toString with no valueOf");
assert.sameValue("aaaa".indexOf("aa", {
  [Symbol.toPrimitive]: undefined,
  valueOf: function() {
    return 1;
  }
}), 1, "ToPrimitive: skip @@toPrimitive when it's undefined");
assert.sameValue("aaaa".indexOf("aa", {
  [Symbol.toPrimitive]: null,
  valueOf: function() {
    return 1;
  }
}), 1, "ToPrimitive: skip @@toPrimitive when it's null");
assert.sameValue("aaaa".indexOf("aa", {
  valueOf: null,
  toString: function() {
    return 1;
  }
}), 1, "ToPrimitive: skip valueOf when it's not callable");
assert.sameValue("aaaa".indexOf("aa", {
  valueOf: 1,
  toString: function() {
    return 1;
  }
}), 1, "ToPrimitive: skip valueOf when it's not callable");
assert.sameValue("aaaa".indexOf("aa", {
  valueOf: {},
  toString: function() {
    return 1;
  }
}), 1, "ToPrimitive: skip valueOf when it's not callable");
assert.sameValue("aaaa".indexOf("aa", {
  valueOf: function() {
    return {};
  },
  toString: function() {
    return 1;
  }
}), 1, "ToPrimitive: skip valueOf when it returns an object");
assert.sameValue("aaaa".indexOf("aa", {
  valueOf: function() {
    return Object(12345);
  },
  toString: function() {
    return 1;
  }
}), 1, "ToPrimitive: skip valueOf when it returns an object");
assert.throws(TypeError, function() {
  "".indexOf("", {
    [Symbol.toPrimitive]: 1
  });
}, "ToPrimitive: throw when @@toPrimitive is not callable");
assert.throws(TypeError, function() {
  "".indexOf("", {
    [Symbol.toPrimitive]: {}
  });
}, "ToPrimitive: throw when @@toPrimitive is not callable");
assert.throws(TypeError, function() {
  "".indexOf("", {
    [Symbol.toPrimitive]: function() {
      return Object(1);
    }
  });
}, "ToPrimitive: throw when @@toPrimitive returns an object");
assert.throws(TypeError, function() {
  "".indexOf("", {
    [Symbol.toPrimitive]: function() {
      return {};
    }
  });
}, "ToPrimitive: throw when @@toPrimitive returns an object");
assert.throws(MyError, function() {
  "".indexOf("", {
    [Symbol.toPrimitive]: function() {
      throw new MyError();
    }
  });
}, "ToPrimitive: propagate errors from @@toPrimitive");
assert.throws(MyError, function() {
  "".indexOf("", {
    valueOf: function() {
      throw new MyError();
    }
  });
}, "ToPrimitive: propagate errors from valueOf");
assert.throws(MyError, function() {
  "".indexOf("", {
    toString: function() {
      throw new MyError();
    }
  });
}, "ToPrimitive: propagate errors from toString");
assert.throws(TypeError, function() {
  "".indexOf("", {
    valueOf: null,
    toString: null
  });
}, "ToPrimitive: throw when skipping both valueOf and toString");
assert.throws(TypeError, function() {
  "".indexOf("", {
    valueOf: 1,
    toString: 1
  });
}, "ToPrimitive: throw when skipping both valueOf and toString");
assert.throws(TypeError, function() {
  "".indexOf("", {
    valueOf: {},
    toString: {}
  });
}, "ToPrimitive: throw when skipping both valueOf and toString");
assert.throws(TypeError, function() {
  "".indexOf("", {
    valueOf: function() {
      return Object(1);
    },
    toString: function() {
      return Object(1);
    }
  });
}, "ToPrimitive: throw when skipping both valueOf and toString");
assert.throws(TypeError, function() {
  "".indexOf("", {
    valueOf: function() {
      return {};
    },
    toString: function() {
      return {};
    }
  });
}, "ToPrimitive: throw when skipping both valueOf and toString");

reportCompare(0, 0);