File: observable-find.any.js

package info (click to toggle)
firefox 144.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,637,504 kB
  • sloc: cpp: 7,576,692; javascript: 6,430,831; ansic: 3,748,119; python: 1,398,978; xml: 628,810; asm: 438,679; java: 186,194; sh: 63,212; makefile: 19,159; objc: 13,086; perl: 12,986; yacc: 4,583; cs: 3,846; pascal: 3,448; lex: 1,720; ruby: 1,003; exp: 762; php: 436; lisp: 258; awk: 247; sql: 66; sed: 53; csh: 10
file content (85 lines) | stat: -rw-r--r-- 2,876 bytes parent folder | download | duplicates (17)
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
promise_test(async () => {
  let inactiveAfterB = false;
  const source = new Observable(subscriber => {
    subscriber.next("a");
    subscriber.next("b");
    inactiveAfterB = !subscriber.active;
    subscriber.next("c");
    subscriber.complete();
  });

  const value = await source.find((value) => value === "b");

  assert_equals(value, "b", "Promise resolves with the first value that passes the predicate");

  assert_true(inactiveAfterB, "subscriber is inactive after the first value that passes the predicate");
}, "find(): Promise resolves with the first value that passes the predicate");

promise_test(async () => {
  const source = new Observable(subscriber => {
    subscriber.next("a");
    subscriber.next("b");
    subscriber.next("c");
    subscriber.complete();
  });

  const value = await source.find(() => false);

  assert_equals(value, undefined, "Promise resolves with undefined if no value passes the predicate");
}, "find(): Promise resolves with undefined if no value passes the predicate");

promise_test(async t => {
  const error = new Error("error from source");
  const source = new Observable(subscriber => {
    subscriber.error(error);
  });

  promise_rejects_exactly(t, error, source.find(() => true), "Promise " +
      "rejects with the error emitted from the source Observable");
}, "find(): Promise rejects with the error emitted from the source Observable");

promise_test(async t => {
  const source = new Observable(subscriber => {
    subscriber.next("ignored");
  });

  const error = new Error("thrown from predicate");
  promise_rejects_exactly(t, error, source.find(() => {throw error}),
      "Promise rejects with any error thrown from the predicate");
}, "find(): Promise rejects with any error thrown from the predicate");

promise_test(async () => {
  let indices = [];

  const source = new Observable(subscriber => {
    subscriber.next("a");
    subscriber.next("b");
    subscriber.next("c");
    subscriber.complete();
  });

  const value = await source.find((value, index) => {
    indices.push(index);
    return false;
  });

  assert_equals(value, undefined, "Promise resolves with undefined if no value passes the predicate");

  assert_array_equals(indices, [0, 1, 2], "find(): Passes the index of the value to the predicate");
}, "find(): Passes the index of the value to the predicate");

promise_test(async t => {
  const controller = new AbortController();
  const source = new Observable(subscriber => {
    subscriber.next("a");
    subscriber.next("b");
    subscriber.next("c");
    subscriber.complete();
  });

  controller.abort();
  const promise = source.find(() => true, { signal: controller.signal });

  promise_rejects_dom(t, 'AbortError', promise, "Promise rejects with " +
      "DOMException when the signal is aborted");
}, "find(): Rejects with AbortError when the signal is aborted");