test_removalmonitor.js
Go to the documentation of this file.
1 /*
2 //
3 // BEGIN SONGBIRD GPL
4 //
5 // This file is part of the Songbird web player.
6 //
7 // Copyright(c) 2005-2008 POTI, Inc.
8 // http://songbirdnest.com
9 //
10 // This file may be licensed under the terms of of the
11 // GNU General Public License Version 2 (the "GPL").
12 //
13 // Software distributed under the License is distributed
14 // on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either
15 // express or implied. See the GPL for the specific language
16 // governing rights and limitations.
17 //
18 // You should have received a copy of the GPL along with this
19 // program. If not, go to http://www.gnu.org/licenses/gpl.html
20 // or write to the Free Software Foundation, Inc.,
21 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 //
23 // END SONGBIRD GPL
24 //
25 */
26 
31 function runTest () {
32 
33  Components.utils.import("resource://app/jsmodules/sbLibraryUtils.jsm");
34 
35  // Make a test library
36  var library = createLibrary("test_library_removalmonitor1");
37  var libraryManager = Cc["@songbirdnest.com/Songbird/library/Manager;1"]
38  .getService(Ci.sbILibraryManager);
39  libraryManager.registerLibrary(library, false);
40 
41  var batchListener = new BatchEndListener();
42  library.addListener(batchListener,
43  false,
44  Ci.sbIMediaList.LISTENER_FLAGS_BATCHBEGIN |
45  Ci.sbIMediaList.LISTENER_FLAGS_BATCHEND);
46  batchListener.waitForEndBatch();
47 
48  // Monitor removal of media lists
49  var callback = {
50  expectCallback: false,
51  seenCallback: false,
52  onBeforeMediaListRemoved: function() {
53  /* nothing */
54  },
55  onMediaListRemoved: function() {
56  this.seenCallback = true;
57  },
58  verify: function() {
59  assertEqual(this.expectCallback, this.seenCallback);
60  this.expectCallback = true;
61  this.seenCallback = false;
62  }
63  }
64  var monitor = new LibraryUtils.RemovalMonitor(callback);
65 
66  // Make sure list removal works
67  var list = library.createMediaList("simple");
68  callback.expectCallback = true;
69  batchListener.waitForCompletion(function(){
70  monitor.setMediaList(list);
71  library.remove(list);
72  });
73  callback.verify();
74 
75  // Make sure unsetting the media list works
76  list = library.createMediaList("simple");
77  monitor.setMediaList(list);
78  monitor.setMediaList(null);
79  callback.expectCallback = false;
80  batchListener.waitForCompletion(function()
81  library.remove(list));
82  callback.verify();
83 
84  // Make sure removal by library clear works
85  list = library.createMediaList("simple");
86  callback.expectCallback = true;
87  monitor.setMediaList(list);
88  batchListener.waitForCompletion(function()
89  library.clear());
90  callback.verify();
91 
92  // Make sure removal in a batch operation works
93  list = library.createMediaList("simple");
94  var list2 = library.createMediaList("simple");
95  callback.expectCallback = true;
96  monitor.setMediaList(list2);
97  library.runInBatchMode(function() {
98  library.remove(list);
99  library.remove(list2);
100  });
101  callback.verify();
102 
103  // Make sure clearing by library removal works
104  callback.expectCallback = true;
105  list = library.createMediaList("simple");
106  monitor.setMediaList(list);
107  libraryManager.unregisterLibrary(library);
108  callback.verify();
109 
110  // Make sure that unregistering the library works
111  // when we are monitoring the library itself
112  library = createLibrary("test_library_removalmonitor2");
113  libraryManager.registerLibrary(library, false);
114  monitor.setMediaList(library);
115  callback.expectCallback = true;
116  libraryManager.unregisterLibrary(library);
117  callback.verify();
118 
119  monitor.setMediaList(null);
120 }
121 
const Cc
LayoutDescription verify
function assertEqual(aExpected, aActual, aMessage)
function runTest()
Test LibraryUtils.RemovalMonitor.
function BatchEndListener()
var libraryManager
grep callback
return null
Definition: FeedWriter.js:1143
function createLibrary(databaseGuid, databaseLocation)
Definition: test_load.js:151
const Ci
Javascript wrappers for common library tasks.