36 [
"medialist",
"guid",
"servicepane"],
37 [
"medialist",
"guid",
"menu"],
38 [
"medialist",
"type",
"servicepane"],
39 [
"medialist",
"type",
"menu"],
40 [
"library",
"guid",
"servicepane"],
41 [
"library",
"guid",
"menu"]
45 Constructor(
"@songbirdnest.com/Songbird/PlaylistCommandsBuilder;1",
46 "sbIPlaylistCommandsBuilder",
"init");
49 Components.classes[
"@songbirdnest.com/Songbird/PlaylistCommandsManager;1"]
50 .createInstance(Components.interfaces.sbIPlaylistCommandsManager);
66 this.mediaListOrLibrary = aMediaListOrLibrary;
70 this.typeOrGUID = aTypeOrGUID;
74 this.servicePaneOrMenu = aServicePaneOrMenu;
78 this.registerString = aRegisterString;
81 this.command = aCommand;
85 var
str =
"Command '" + this.command.id +
"' to '" + this.mediaListOrLibrary;
86 str +=
"' by '" + this.typeOrGUID +
"' in the '" + this.servicePaneOrMenu;
87 str +=
"' of '" + this.registerString +
"'";
96 if (typeof(SBProperties) ==
"undefined") {
97 Components.utils.import(
"resource://app/jsmodules/sbProperties.jsm");
99 throw new Error(
"Import of sbProperties module failed!");
102 log(
"Testing Playlist Commands:");
104 testCommandsBuilder();
115 function testCommandsBuilder() {
127 _log(
"Testing Playlist Command Registration");
132 .getService(
Ci.sbILibraryManager);
133 var databaseGUID =
"test_playlistcommands_registration";
136 libraryManager.registerLibrary(gTestLibrary,
false);
141 gPrimarySimpleList = gTestLibrary.createMediaList(
"simple");
142 gSecondarySimpleList = gTestLibrary.createMediaList(
"simple");
143 gSmartList = gTestLibrary.createMediaList(
"smart");
146 var newCommandId =
"test-command-02";
149 var newActionId = newCommandId +
"-action"
151 newCommand.appendAction(
null,
159 var instructions = constructRegistrationInstructions(gTestLibrary,
164 handleInstructions(instructions);
167 libraryManager.unregisterLibrary(gTestLibrary);
168 newCommand.shutdownCommands();
169 _log(
"Playlist Command Registration Test Complete");
178 function constructRegistrationInstructions(aLibrary, aMediaList, aCommand) {
179 _log(
"Constructing Test Instructions");
180 var instructions = [];
183 for (var
i = 0;
i < len;
i++) {
187 var registerString =
"";
189 if (params[0] ==
"library") {
191 registerString = aLibrary.guid;
193 else if (params[1] ==
"guid") {
195 registerString = aMediaList.guid;
199 registerString = aMediaList.type;
207 instructions.push(newInstruction);
217 function handleInstructions(aInstructions) {
218 _log(
"Enacting Instructions");
220 var len = aInstructions.length
221 for (var
i = 0;
i < len;
i++) {
222 var currInstruction = aInstructions[
i];
223 performInstruction(currInstruction);
224 assertInstruction(currInstruction);
225 reverseInstruction(currInstruction);
226 assertReversedInstruction(currInstruction);
233 function performInstruction(aInstruction) {
235 var targetServicePane = (aInstruction.servicePaneOrMenu ==
"servicepane");
237 if (aInstruction.mediaListOrLibrary ==
"library") {
238 gCmdMgr.registerPlaylistCommandsForLibrary(targetServicePane,
240 aInstruction.command);
247 var registerFunction = (targetServicePane ?
248 gCmdMgr.registerPlaylistCommandsMediaList :
249 gCmdMgr.registerPlaylistCommandsMediaItem);
254 var guid = (aInstruction.typeOrGUID ==
"guid" ? aInstruction.registerString :
257 var type = (aInstruction.typeOrGUID ==
"type" ? aInstruction.registerString :
261 registerFunction(guid, type, aInstruction.command);
268 function reverseInstruction(aInstruction) {
269 var targetServicePane = (aInstruction.servicePaneOrMenu ==
"servicepane");
271 if (aInstruction.mediaListOrLibrary ==
"library") {
272 gCmdMgr.unregisterPlaylistCommandsForLibrary(targetServicePane,
274 aInstruction.command);
281 var unregisterFunction = (targetServicePane ?
282 gCmdMgr.unregisterPlaylistCommandsMediaList :
283 gCmdMgr.unregisterPlaylistCommandsMediaItem);
284 var guid = (aInstruction.typeOrGUID ==
"guid" ? aInstruction.registerString :
287 var type = (aInstruction.typeOrGUID ==
"type" ? aInstruction.registerString :
290 unregisterFunction(guid, type, aInstruction.command);
298 function assertInstruction(aInstruction) {
299 if (aInstruction.mediaListOrLibrary ==
"library") {
300 assertLibraryInstruction(aInstruction,
true);
303 assertMediaListInstruction(aInstruction,
true);
311 function assertReversedInstruction(aInstruction) {
312 if (aInstruction.mediaListOrLibrary ==
"library") {
313 assertLibraryInstruction(aInstruction,
false);
316 assertMediaListInstruction(aInstruction,
false);
335 function assertLibraryInstruction(aInstruction, aExpectedToFind) {
337 var getFunction = (aInstruction.servicePaneOrMenu ==
"servicepane" ?
338 gCmdMgr.getPlaylistCommandsMediaList :
339 gCmdMgr.getPlaylistCommandsMediaItem);
343 var mediaLists = gTestLibrary.getItemsByProperty(SBProperties.isList,
"1");
344 mediaLists = mediaLists.QueryInterface(
Ci.nsIMutableArray);
345 mediaLists.appendElement(gTestLibrary,
false);
347 var len = mediaLists.length
348 for (var
i = 0;
i < len;
i++) {
349 var guid = mediaLists.queryElementAt(
i,
Ci.sbIMediaList).guid;
350 var rootCommand = getFunction(guid,
"");
352 var found = (rootCommand !=
null) &&
353 isSubCommandPresent(rootCommand, aInstruction.command);
355 "We expected this instruction on an existing list to " +
356 (aExpectedToFind ?
"work and it didn't" :
"be reversed and it wasn't") +
357 ":\n " + aInstruction.toString());
361 var newList = gTestLibrary.createMediaList(
"simple");
362 var newListRootCommand = getFunction(newList.guid,
"");
364 found = (newListRootCommand !=
null) &&
365 isSubCommandPresent(newListRootCommand, aInstruction.command);
367 "We expected this instruction on an added list to " +
368 (aExpectedToFind ?
"work and it didn't" :
"be reversed and it wasn't") +
369 ":\n " + aInstruction.toString());
372 gTestLibrary.remove(newList);
373 newListRootCommand = getFunction(newList.guid,
"");
374 found = (newListRootCommand !=
null) &&
375 isSubCommandPresent(newListRootCommand, aInstruction.command);
378 "Instruction's command present on added and removed list: " +
379 aInstruction.toString());
397 function assertMediaListInstruction(aInstruction, aExpectedToFind) {
399 var getFunction = (aInstruction.servicePaneOrMenu ==
"servicepane" ?
400 gCmdMgr.getPlaylistCommandsMediaList :
401 gCmdMgr.getPlaylistCommandsMediaItem);
404 var guid = (aInstruction.typeOrGUID ==
"guid" ? aInstruction.registerString :
407 var type = (aInstruction.typeOrGUID ==
"type" ? aInstruction.registerString :
410 var primaryRootCommand = getFunction(guid, type);
413 var found = (primaryRootCommand !=
null) &&
414 isSubCommandPresent(primaryRootCommand, aInstruction.command);
416 "We expected this instruction to " +
417 (aExpectedToFind ?
"work and it didn't" :
"be reversed and it wasn't") +
418 ":\n " + aInstruction.toString());
421 var secondaryRootCommand;
422 if (guid.length > 0) {
425 secondaryRootCommand = getFunction(gSecondarySimpleList.guid,
"");
430 secondaryRootCommand = getFunction(
"", gSmartList.type);
433 found = (secondaryRootCommand !=
null) &&
434 isSubCommandPresent(secondaryRootCommand, aInstruction.command);
439 "Instruction affected a type or guid it shouldn't have: " +
440 aInstruction.toString());
446 function isSubCommandPresent(aRootCommand, aSubCommand) {
447 for (var
i = 0;
i < aRootCommand.getNumCommands(
"",
"");
i++) {
448 var currCommand = aRootCommand.getCommandSubObject(
"",
i,
"");
449 if (currCommand == aSubCommand) {
const PlaylistCommandsBuilder
const REGISTRATION_PARAM_COMBOS
const NUMRECURSE
Playlist Commands Unit Test File.
function assertTrue(aTest, aMessage)
function makeTriggerCallback(aActionID)
function testSubmenus(aCommand, aMenuID, aTestLength, aNumSubCommands)
function testAppendInsertRemove(aCommand, aMenuID, aTestLength, aNumSubCommands)
function createLibrary(databaseGuid, databaseLocation)
function assertFalse(aTest, aMessage)
function _log(aMsg, aMenuID)
function testRegistration()
function testCommandCallbacksAndShortcuts(aCommand, aMenuID, aTestLength, aNumSubCommands)
function RegistrationInstruction(aMediaListOrLibrary, aTypeOrGUID, aServicePaneOrMenu, aRegisterString, aCommand)
_getSelectedPageStyle s i