summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webaudio/the-audio-api/the-audioparam-interface/retrospective-setValueCurveAtTime.html
blob: 451b6ea82969506aa75d65e0fa3170c106c87abb (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
<!doctype html>
<html>
  <head>
    <title>Test SetValueCurve with start time in the past</title>
    <script src=/resources/testharness.js></script>
    <script src=/resources/testharnessreport.js></script>
    <script src="/webaudio/resources/audit-util.js"></script>
    <script src="/webaudio/resources/audit.js"></script>
    <script src="retrospective-test.js"></script>
  </head>
  </body>
    <script>
      let audit = Audit.createTaskRunner();

      audit.define(
          {
            label: 'test',
            description: 'Test SetValueCurve with start time in the past'
          },
          (task, should) => {
            let {context, source, test, reference} = setupRetrospectiveGraph();

            // Suspend the context at this frame so we can synchronously set up
            // automations.
            const suspendFrame = 128;

            context.suspend(suspendFrame / context.sampleRate)
                .then(() => {
                  // Call setValueAtTime with a time in the past
                  test.gain.setValueCurveAtTime(
                      new Float32Array([1.0, 0.1]), 0.5 * context.currentTime,
                      1.0);
                  reference.gain.setValueCurveAtTime(
                      new Float32Array([1.0, 0.1]), context.currentTime, 1.0);
                })
                .then(() => context.resume());

            source.start();

            context.startRendering()
                .then(resultBuffer => {
                  let testValue = resultBuffer.getChannelData(0);
                  let referenceValue = resultBuffer.getChannelData(1);

                  // Until the suspendFrame, both should be exactly equal to 1.
                  should(
                      testValue.slice(0, suspendFrame),
                      `Test[0:${suspendFrame - 1}]`)
                      .beConstantValueOf(1);
                  should(
                      referenceValue.slice(0, suspendFrame),
                      `Reference[0:${suspendFrame - 1}]`)
                      .beConstantValueOf(1);

                  // After the suspendFrame, both should be equal (and not
                  // constant)
                  should(
                      testValue.slice(suspendFrame), `Test[${suspendFrame}:]`)
                      .beEqualToArray(referenceValue.slice(suspendFrame));
                })
                .then(() => task.done());
          });

      audit.run();
    </script>
  </body>
</html>