test_transcodeconfigurator.js
Go to the documentation of this file.
1 /*
2  *=BEGIN SONGBIRD GPL
3  *
4  * This file is part of the Songbird web player.
5  *
6  * Copyright(c) 2005-2009 POTI, Inc.
7  * http://www.songbirdnest.com
8  *
9  * This file may be licensed under the terms of of the
10  * GNU General Public License Version 2 (the ``GPL'').
11  *
12  * Software distributed under the License is distributed
13  * on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either
14  * express or implied. See the GPL for the specific language
15  * governing rights and limitations.
16  *
17  * You should have received a copy of the GPL along with this
18  * program. If not, go to http://www.gnu.org/licenses/gpl.html
19  * or write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21  *
22  *=END SONGBIRD GPL
23  */
24 
25 
26 var gTestFileLocation = "testharness/transcodeservice/files/";
27 
35 function testHasConfigurated(configurator, aState) {
36 
37  const EXPECTED_VALUES = [
38  {
39  // not initialized
40  "muxer" : new Error(),
41  "videoEncoder" : new Error(),
42  "videoFormat": new Error(),
43  "videoEncoderProperties": new Error(),
44  "audioEncoder": new Error(),
45  "audioFormat": new Error(),
46  "audioEncoderProperties": new Error()
47  },
48  {
49  // determined output format, but not configurated
50  "muxer" : "oggmux",
51  "videoEncoder" : "theoraenc",
52  "videoFormat": new Error(),
53  "videoEncoderProperties": new Error(),
54  "audioEncoder": "vorbisenc",
55  "audioFormat": new Error(),
56  "audioEncoderProperties": new Error()
57  },
58  {
59  // configurated
60  "muxer" : "oggmux",
61  "videoEncoder" : "theoraenc",
62  "videoFormat": {videoWidth: 1280,
63  videoHeight: 720},
64  // Mock device supports a bitrate of up to 4 * 1024 * 1024; this is high
65  // enough resolution to get limited by that, so use that.
66  "videoEncoderProperties": {bitrate: 4194},
67  "audioEncoder": "vorbisenc",
68  "audioFormat": {sampleRate: 44100,
69  channels: 1},
70  "audioEncoderProperties": {"max-bitrate": 128000}
71  },
72  ];
73 
74  var expected = EXPECTED_VALUES[aState];
75  for (let prop in expected) {
76  if (expected[prop] instanceof Error) {
77  try {
78  configurator[prop];
79  doFail("attempt to get property " + prop + " unexpectedly succeeded; " +
80  "got value: " + configurator[prop]);
81  } catch (err) {
82  // error expected
83  }
84  }
85  else if (typeof(expected[prop]) == "string") {
86  // not an error; look at the value (which may throw), and make sure
87  // it's equal.
88  assertEqual(configurator[prop], expected[prop],
89  "error in stage " + aState + ": " +
90  "attribute " + prop + " not equal");
91  }
92  else {
93  for (let subprop in expected[prop]) {
94  let result = null;
95  if (configurator[prop] instanceof Ci.nsIPropertyBag2) {
96  assertTrue(configurator[prop].hasKey(subprop),
97  "error in stage " + aState + ": " +
98  "property " + subprop + " of " +
99  "attribute " + prop + " missing");
100  result = configurator[prop].getProperty(subprop);
101  } else {
102  result = configurator[prop][subprop];
103  }
104  assertEqual(result, expected[prop][subprop],
105  "error in stage " + aState + ": " +
106  "property " + subprop + " of " +
107  "attribute " + prop + " not equal");
108  }
109  // not implemented
110  }
111  }
112 }
113 
114 function runTest() {
115  // Set up a test library with a test item to use for the configurator.
116  var testlib = createLibrary("test_transcodeconfigurator");
117  var testFile = newAppRelativeFile(gTestFileLocation);
118  testFile.append("transcode_configurator_test.mkv");
119  var localTestFileURI = newFileURI(testFile);
120  assertTrue(localTestFileURI, "failed to get configurator test media file");
121  var testItem = testlib.createMediaItem(localTestFileURI, null, true);
122  assertTrue(testItem, "failed to create media item");
123 
124  // Create a new configurator to test with.
125  var configurator =
126  Cc["@songbirdnest.com/Songbird/Mediacore/Transcode/Configurator/Device/GStreamer;1"]
127  .createInstance(Ci.sbIDeviceTranscodingConfigurator);
128  assertTrue(configurator, "failed to create configurator");
129  // need to set an input URI so the error handling can report something;
130  // the value actually used here isn't important.
131  configurator.inputUri = newURI("data:text/plain,does_not_exist");
132 
133  // First test to make sure functions that need configurate called first throw
134  // the NS_ERROR_NOT_INITIALIZED.
135  testHasConfigurated(configurator, 0);
136 
137  // Test that determineOutputFormat fails due to lack of a device
138  try {
139  configurator.determineOutputType();
140  doFail("configurator determineOutputType successful with no device set");
141  } catch (err) {
142  // expected fail
143  }
144 
145  // Test the configurator by setting a device on it
146  var device = Cc["@songbirdnest.com/Songbird/Device/DeviceTester/MockDevice;1"]
147  .createInstance(Ci.sbIDevice);
148  configurator.device = device;
149  configurator.determineOutputType();
150  testHasConfigurated(configurator, 1);
151 
152  // try to set the device again; this should fail
153  try {
154  configurator.device = null;
155  doFail("set device succeeded after determining output type");
156  } catch (err) {
157  // expected failure
158  }
159 
160  // Try to configurate before setting the input format.
161  try {
162  configurator.configurate();
163  doFail("Configurate successfully called with out an input");
164  }
165  catch (err) {
166  // All good
167  }
168 
169  // We have to inspect a mediaItem in order to get a mediaFormat
170  var mediaInspector =
171  Cc["@songbirdnest.com/Songbird/Mediacore/mediainspector;1"]
172  .createInstance(Ci.sbIMediaInspector);
173  var inputFormat = mediaInspector.inspectMedia(testItem);
174  assertTrue(inputFormat, "failed to inspect configurator test file");
175 
176  // Set the input format, this should not throw NS_ERROR_ALREADY_INITIALIZED
177  configurator.inputFormat = inputFormat;
178  assertEqual(configurator.inputFormat, inputFormat);
179 
180  configurator.configurate();
181 
182  // test to make sure we get back expected values.
183  testHasConfigurated(configurator, 2);
184 
185  // Try to set again and this should throw NS_ERROR_ALREADY_INITIALIZED
186  try {
187  configurator.inputFormat = inputFormat;
188  doFail("Setting inputFormat twice worked when it should not have");
189  }
190  catch (err) {
191  // All good
192  }
193 
194  return;
195 }
const Cc
function newAppRelativeFile(path)
function assertTrue(aTest, aMessage)
function assertEqual(aExpected, aActual, aMessage)
function runTest()
Advanced DataRemote unit tests.
var gTestFileLocation
function testHasConfigurated(configurator, aState)
Test to see if the attribute and functions in sbITranscodingConfigurator throw when Configurate has n...
function newFileURI(file)
return null
Definition: FeedWriter.js:1143
function createLibrary(databaseGuid, databaseLocation)
Definition: test_load.js:151
function newURI(aURLString)
var expected
function testItem(aItem, aContentType)
const Ci
function doFail(text)
restoreWindow aState