37 const EXPECTED_VALUES = [
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()
51 "videoEncoder" :
"theoraenc",
52 "videoFormat":
new Error(),
53 "videoEncoderProperties":
new Error(),
54 "audioEncoder":
"vorbisenc",
55 "audioFormat":
new Error(),
56 "audioEncoderProperties":
new Error()
61 "videoEncoder" :
"theoraenc",
62 "videoFormat": {videoWidth: 1280,
66 "videoEncoderProperties": {bitrate: 4194},
67 "audioEncoder":
"vorbisenc",
68 "audioFormat": {sampleRate: 44100,
70 "audioEncoderProperties": {
"max-bitrate": 128000}
75 for (let prop in expected) {
76 if (expected[prop] instanceof Error) {
79 doFail(
"attempt to get property " + prop +
" unexpectedly succeeded; " +
80 "got value: " + configurator[prop]);
85 else if (typeof(expected[prop]) ==
"string") {
89 "error in stage " +
aState +
": " +
90 "attribute " + prop +
" not equal");
93 for (let subprop in expected[prop]) {
95 if (configurator[prop] instanceof
Ci.nsIPropertyBag2) {
97 "error in stage " +
aState +
": " +
98 "property " + subprop +
" of " +
99 "attribute " + prop +
" missing");
100 result = configurator[prop].getProperty(subprop);
102 result = configurator[prop][subprop];
105 "error in stage " +
aState +
": " +
106 "property " + subprop +
" of " +
107 "attribute " + prop +
" not equal");
118 testFile.append(
"transcode_configurator_test.mkv");
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");
126 Cc[
"@songbirdnest.com/Songbird/Mediacore/Transcode/Configurator/Device/GStreamer;1"]
127 .createInstance(
Ci.sbIDeviceTranscodingConfigurator);
128 assertTrue(configurator,
"failed to create configurator");
131 configurator.inputUri =
newURI(
"data:text/plain,does_not_exist");
139 configurator.determineOutputType();
140 doFail(
"configurator determineOutputType successful with no device set");
146 var device =
Cc[
"@songbirdnest.com/Songbird/Device/DeviceTester/MockDevice;1"]
147 .createInstance(
Ci.sbIDevice);
148 configurator.device = device;
149 configurator.determineOutputType();
154 configurator.device =
null;
155 doFail(
"set device succeeded after determining output type");
162 configurator.configurate();
163 doFail(
"Configurate successfully called with out an input");
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");
177 configurator.inputFormat = inputFormat;
178 assertEqual(configurator.inputFormat, inputFormat);
180 configurator.configurate();
187 configurator.inputFormat = inputFormat;
188 doFail(
"Setting inputFormat twice worked when it should not have");
function newAppRelativeFile(path)
function assertTrue(aTest, aMessage)
function assertEqual(aExpected, aActual, aMessage)
function runTest()
Advanced DataRemote unit tests.
function testHasConfigurated(configurator, aState)
Test to see if the attribute and functions in sbITranscodingConfigurator throw when Configurate has n...
function newFileURI(file)
function createLibrary(databaseGuid, databaseLocation)
function newURI(aURLString)
function testItem(aItem, aContentType)