Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/dom/media/webaudio/test/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 2 kB image not shown  

Quelle  test_decodeAudioError.html   Sprache: HTML

 
 products/Sources/formale Sprachen/C/Firefox/dom/media/webaudio/test/test_decodeAudioError.html


<!DOCTYPE HTML>
<html>
<head>
  <title>Test the decodeAudioData Errors</title>

  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
  <script src="webaudio.js"></script>
</head>
<body>
<pre id="test">
<script class="testbody" type="text/javascript">

SimpleTest.waitForExplicitFinish();
addLoadEvent(function() {

var finished = 0;

var ctx = new AudioContext();

function errorExpectedWithFile(file, errorMsg) {
  var xhr = new XMLHttpRequest();
  function test(e) {
    ok(e instanceof DOMException,
      "The exception should be an instance of DOMException");
    ok(e.name == "EncodingError",
      "The exception name should be EncodingError");
    ok(e.message == errorMsg,
       "The exception message is not the one intended.\n" +
       "\tExpected : " + errorMsg + "\n" +
       "\tGot : " + e.message );
    finish();
  }
  xhr.open("GET", file, true);
  xhr.responseType = "arraybuffer";
  xhr.onload = function() {
    ctx.decodeAudioData(xhr.response, () => {
      ok(false, "You should not be able to decode that");
      finish();
    }, e => test(e))
    .then(() => {
      ok(false, "You should not be able to decode that");
      finish();
    })
    .catch(e => test(e));
  };
  xhr.send();
}

function finish() {
  if (++finished == 4) {
    SimpleTest.finish();
  }
}

// Unknown Content
errorExpectedWithFile("404""The buffer passed to decodeAudioData contains an unknown content type.");

// Invalid Content
errorExpectedWithFile("invalidContent.flac""The buffer passed to decodeAudioData contains invalid content which cannot be decoded successfully.");

// No Audio
// # Bug 1656032
// Think about increasing the finish counter to 6 when activating this line
// errorExpectedWithFile("noaudio.webm""The buffer passed to decodeAudioData does not contain any audio.");

// Unknown Error
// errorExpectedWithFile("There is no file we can't handle""An unknown error occurred while processing decodeAudioData.");
});

</script>
</pre>
</body>
</html>

Messung V0.5
C=92 H=93 G=92

¤ Dauer der Verarbeitung: 0.18 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.