summaryrefslogtreecommitdiffstats
path: root/dom/media/test/test_mediarecorder_record_audionode.html
blob: ec38609e7af80371d379c0ccc1c8117c9ee7e782 (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE HTML>
<html>
<head>
  <title>Test MediaRecorder Record AudioContext Node</title>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
  <script type="text/javascript" src="manifest.js"></script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=968109">Mozilla Bug 968109</a>

<script class="testbody" type="text/javascript">

SimpleTest.waitForExplicitFinish();

function setUpSource(contextType, nodeType) {
  // Use contextType to choose offline or real-time context.
  var context = contextType === 'offline'?
    new OfflineAudioContext(2 , 80920, 44100) : new AudioContext();
  var buffer = context.createBuffer(2, 80920, context.sampleRate);
  for (var i = 0; i < 80920; ++i) {
    buffer.getChannelData(0)[i] = Math.sin(1000 * 2 * Math.PI * i / context.sampleRate);
    buffer.getChannelData(1)[i] = Math.sin(1000 * 2 * Math.PI * i / context.sampleRate);
  }

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

  source.start(0);

  // nodeType decides which node in graph should be the source of recording.
  var node;
  if (nodeType === 'source') {
    node = source;
  } else if (nodeType === 'splitter') {
    var splitter = context.createChannelSplitter();
    source.connect(splitter);
    node = splitter;
  } else if (nodeType == 'destination') {
    source.connect(context.destination);
    node = context.destination;
  }
  // Explicitly start offline context.
  if (contextType === 'offline') {
    context.startRendering();
  }

  return node;
}

function testRecord(source, done) {
  ok(source, 'source node should be ok');
  var recorder;
  var didThrow = false;
  try {
    recorder = new MediaRecorder(source);
  } catch (e) {
    didThrow = true;
  }
  ok(!didThrow, 'MediaRecorder(AudioNode) should be visible after pref turned on');

  recorder.onwarning = function() {
    ok(false, 'should not fire onwarning');
  };

  recorder.onerror = function() {
    ok(false, 'should not fire onerror');
  };

  recorder.onstop = function() {
    is(recorder.state, 'inactive', 'state should become "inactive" after calling stop()');
    done();
  };

  recorder.ondataavailable = function (e) {
    if (recorder.state == 'recording') {
      is('audio/ogg', recorder.mimeType, 'mimetype should be audio/ogg, not ' + recorder.mimeType);
      ok(e.data && e.data.size > 0, 'should get data and its length should be > 0');
      recorder.stop();
    }
  };

  try {
    recorder.start(1000);
    is('recording', recorder.state, 'state should become "recording" after calling start()');
  } catch (e) {
    didThrow = true;
  }
  ok(!didThrow, 'start() should succeed');
}

addLoadEvent(function() {
  var src = setUpSource();
  var recorder;
  var didThrow = false;
  try {
    recorder = new MediaRecorder(src);
  } catch (e) {
    didThrow = true;
  }
  ok(didThrow, 'MediaRecorder(AudioNode) should be hidden behind a pref');

  SpecialPowers.pushPrefEnv({"set": [[ 'media.recorder.audio_node.enabled', true ]]},
    function () {
      // Test with various context and source node types.
      var done1 = new Promise(function (resolve, reject) {
        testRecord(setUpSource('', 'source'), resolve);
      });
      var done2 = new Promise(function (resolve, reject) {
        testRecord(setUpSource('', 'splitter'), resolve);
      });
      var done3 = new Promise(function (resolve, reject) {
        testRecord(setUpSource('offline', 'destination'), resolve);
      });
      // Finish test after all is done.
      Promise.all([done1, done2, done3]).then(
        function () { SimpleTest.finish(); }
      );
    });
});

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