summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/TypedArray/prototype/findLastIndex/return-index-predicate-result-is-true.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /js/src/tests/test262/built-ins/TypedArray/prototype/findLastIndex/return-index-predicate-result-is-true.js
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/tests/test262/built-ins/TypedArray/prototype/findLastIndex/return-index-predicate-result-is-true.js')
-rw-r--r--js/src/tests/test262/built-ins/TypedArray/prototype/findLastIndex/return-index-predicate-result-is-true.js58
1 files changed, 58 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/TypedArray/prototype/findLastIndex/return-index-predicate-result-is-true.js b/js/src/tests/test262/built-ins/TypedArray/prototype/findLastIndex/return-index-predicate-result-is-true.js
new file mode 100644
index 0000000000..c81fb38cdf
--- /dev/null
+++ b/js/src/tests/test262/built-ins/TypedArray/prototype/findLastIndex/return-index-predicate-result-is-true.js
@@ -0,0 +1,58 @@
+// Copyright (C) 2021 Microsoft. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-%typedarray%.prototype.findlastindex
+description: >
+ Return index if predicate return a boolean true value.
+info: |
+ %TypedArray%.prototype.findLastIndex ( predicate [ , thisArg ] )
+
+ ...
+ 5. Let k be len - 1.
+ 6. Repeat, while k ≥ 0
+ ...
+ c. Let testResult be ! ToBoolean(? Call(predicate, thisArg, « kValue, 𝔽(k), O »)).
+ d. If testResult is true, return 𝔽(k).
+ ...
+includes: [testTypedArray.js]
+features: [Symbol, TypedArray, array-find-from-last]
+---*/
+
+testWithTypedArrayConstructors(function(TA) {
+ var sample = new TA([39, 3, 9]);
+ var called = 0;
+
+ var result = sample.findLastIndex(function() {
+ called++;
+ return true;
+ });
+
+ assert.sameValue(result, 2, "returned true on sample[2]");
+ assert.sameValue(called, 1, "predicate was called once");
+
+ called = 0;
+ result = sample.findLastIndex(function(val) {
+ called++;
+ return val === 39;
+ });
+
+ assert.sameValue(called, 3, "predicate was called three times");
+ assert.sameValue(result, 0, "returned true on sample[0]");
+
+ result = sample.findLastIndex(function() { return "string"; });
+ assert.sameValue(result, 2, "ToBoolean(string)");
+
+ result = sample.findLastIndex(function() { return {}; });
+ assert.sameValue(result, 2, "ToBoolean(object)");
+
+ result = sample.findLastIndex(function() { return Symbol(""); });
+ assert.sameValue(result, 2, "ToBoolean(symbol)");
+
+ result = sample.findLastIndex(function() { return 1; });
+ assert.sameValue(result, 2, "ToBoolean(number)");
+
+ result = sample.findLastIndex(function() { return -1; });
+ assert.sameValue(result, 2, "ToBoolean(negative number)");
+});
+
+reportCompare(0, 0);