dom/media/webaudio/test/test_mediaStreamAudioDestinationNode.html
author Emilio Cobos Álvarez <emilio@crisal.io>
Tue, 28 Mar 2023 08:20:09 +0000
changeset 658112 702d4a62e5d03a2b36b3a17645718208a30ddb08
parent 469641 ba6f655fd68963530c866d0d4a48c3db3d307777
permissions -rw-r--r--
Bug 1824304 - Fix PiP window type hint after bug 1823350. r=stransky Differential Revision: https://phabricator.services.mozilla.com/D173677

<!DOCTYPE HTML>
<html>
<head>
  <title>Test MediaStreamAudioDestinationNode</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="webaudio.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<pre id="test">
<audio id="audioelem"></audio>
<script class="testbody" type="text/javascript">

SimpleTest.waitForExplicitFinish();
SimpleTest.requestFlakyTimeout("This test uses a live media element so it needs to wait for the media stack to do some work.");
addLoadEvent(function() {
  var context = new AudioContext();
  var buffer = context.createBuffer(1, 2048, context.sampleRate);
  for (var i = 0; i < 2048; ++i) {
    buffer.getChannelData(0)[i] = Math.sin(440 * 2 * Math.PI * i / context.sampleRate);
  }

  var source = context.createBufferSource();
  source.buffer = buffer;

  var dest = new MediaStreamAudioDestinationNode(context);
  source.connect(dest);

  var elem = document.getElementById('audioelem');
  elem.srcObject = dest.stream;
  elem.onloadedmetadata = function() {
    ok(true, "got metadata event");
    setTimeout(function() {
      is(elem.played.length, 1, "should have a played interval");
      is(elem.played.start(0), 0, "should have played immediately");
      isnot(elem.played.end(0), 0, "should have played for a non-zero interval");

      // This will end the media element.
      dest.stream.getTracks()[0].stop();
    }, 2000);
  };
  elem.onended = function() {
    ok(true, "media element ended after destination track.stop()");
    SimpleTest.finish();
  };

  source.start(0);
  elem.play();
});
</script>