test_directoryimport.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 Components.utils.import("resource://app/jsmodules/ArrayConverter.jsm");
32 Components.utils.import("resource://app/jsmodules/sbProperties.jsm");
33 Components.utils.import("resource://app/jsmodules/sbLibraryUtils.jsm");
34 
35 // This test relies on the sample files used in the metadata test cases
36 var gDirectories = ArrayConverter.nsIArray([newAppRelativeFile("testharness/metadatamanager/files/")]);
37 
38 var gDirectoryImporter = Cc['@songbirdnest.com/Songbird/DirectoryImportService;1']
39  .getService(Ci.sbIDirectoryImportService);
42 
44 
49 function runTest () {
50  gLibrary = createLibrary("test_directoryimport", null, false);
51  gLibrary.clear();
52 
53  var libraryManager = Cc["@songbirdnest.com/Songbird/library/Manager;1"].
54  getService(Ci.sbILibraryManager);
55  libraryManager.registerLibrary(gLibrary, false);
56 
57  var job = gDirectoryImporter.import(gDirectories, gLibrary);
58  job.addJobProgressListener(onFirstImportProgress);
59  testPending();
60 }
61 
62 
68 function onFirstImportProgress(job) {
69  try {
70  log("DirectoryImport: onFirstImportProgress: " + job.statusText +
71  " status " + job.status + " added " + job.totalAddedToLibrary );
72 
73  // Just ignore progress while running
74  if (job.status == Ci.sbIJobProgress.STATUS_RUNNING) {
75  return;
76  }
77  // Finished
78  job.removeJobProgressListener(onFirstImportProgress);
79 
80  // Confirm that we got some items
81  log("DirectoryImport: onFirstImportProgress: totalAddedToLibrary=" + job.totalAddedToLibrary);
82  log("DirectoryImport: onFirstImportProgress: totalDuplicates=" + job.totalDuplicates);
83  log("DirectoryImport: onFirstImportProgress: gLibrary.length=" + gLibrary.length);
84  assertTrue(gLibrary.length > 0);
85  assertEqual(gLibrary.length, job.totalAddedToLibrary);
86  assertEqual(job.totalAddedToMediaList, 0);
87  assertTrue(job.enumerateAllItems().hasMoreElements());
88  assertTrue(job.enumerateAllItems().getNext() instanceof Ci.sbIMediaItem);
89 
90  // Confirm that at least some metadata was scanned (the scanner is tested elsewhere).
91  // Most of the test files fail our dupe check, so just look for anything.
92  var foundSomeMetadata = false;
93  for (var i=0; i < gLibrary.length; i++) {
94  var item = gLibrary.getItemByIndex(i);
95  var artist = item.getProperty(SBProperties.artistName);
96  log("DirectoryImport: onFirstImportProgress: found item with artist=" + artist);
97  if (artist) {
98  foundSomeMetadata = true;
99  break;
100  }
101  }
102  assertEqual(foundSomeMetadata, true);
103 
104  } catch (e) {
105  log("Error: " + e);
106  // Force the test to fail. If we throw it will
107  // be eaten by the job progress notify function,
108  // and the test will never finish.
109  assertEqual(true, false);
110  }
111 
113 }
114 
118 function startSecondImport () {
119  gMediaList = gLibrary.createMediaList("simple");
120 
121  // Add two items to the list, then have the importer
122  // insert all the items into the middle
123  gMediaList.add(gLibrary.getItemByIndex(1));
124  gMediaList.add(gLibrary.getItemByIndex(2));
125 
126  var job = gDirectoryImporter.import(gDirectories, gMediaList,
128  job.addJobProgressListener(onSecondImportProgress);
129 }
130 
131 
138 function onSecondImportProgress(job) {
139  try {
140  log("DirectoryImport: onSecondImportProgress: " + job.statusText +
141  " status " + job.status + " added " + job.totalAddedToLibrary );
142 
143  // Just ignore progress while running
144  if (job.status == Ci.sbIJobProgress.STATUS_RUNNING) {
145  return;
146  }
147  // Finished
148  job.removeJobProgressListener(onSecondImportProgress);
149 
150  log("DirectoryImport: onSecondImportProgress: totalAddedToLibrary=" + job.totalAddedToLibrary);
151  log("DirectoryImport: onSecondImportProgress: totalDuplicates=" + job.totalDuplicates);
152  log("DirectoryImport: onSecondImportProgress: totalAddedToMediaList=" + job.totalAddedToMediaList);
153  log("DirectoryImport: onSecondImportProgress: gLibrary.length=" + gLibrary.length);
154 
155  // Make sure everything adds up
156  assertEqual(job.totalAddedToLibrary, 0);
157  assertEqual(job.totalDuplicates, gLibrary.length - 1);
158  assertEqual(gLibrary.length, job.totalAddedToMediaList + 1);
159  assertEqual(gLibrary.length - 1, gMediaList.length - 2);
160  assertEqual(gMediaList, job.targetMediaList);
161  assertEqual(job.targetIndex, MEDIALIST_TARGET_INDEX);
162 
163  // All found items should appear in order between the first and
164  // last items in the new list.
165  var enumerator = job.enumerateAllItems();
166  for (var i=1; i < gMediaList.length - 1; i++) {
167  var item = gMediaList.getItemByIndex(i);
168  log("DirectoryImport: onSecondImportProgress: found item with guid=" +
169  item.guid);
170  assertTrue(enumerator.hasMoreElements());
171  assertEqual(enumerator.getNext(), item);
172  }
173 
174  } catch (e) {
175  log("Error: " + e);
176  // Force the test to fail. If we throw it will
177  // be eaten by the job progress notify function,
178  // and the test will never finish.
179  assertEqual(true, false);
180  }
181 
182  testFinished();
183 }
const Cc
function newAppRelativeFile(path)
const MEDIALIST_TARGET_INDEX
getService(Ci.sbIDirectoryImportService)
function log(s)
function testFinished()
var gDirectoryImporter
function onFirstImportProgress(job)
function assertTrue(aTest, aMessage)
function assertEqual(aExpected, aActual, aMessage)
var getService(Components.interfaces.nsIWindowMediator).getMostRecentWindow('Songbird SBProperties artist
Definition: tuner2.js:40
function runTest()
Advanced DataRemote unit tests.
var gDirectories
var libraryManager
var gLibrary
return null
Definition: FeedWriter.js:1143
function createLibrary(databaseGuid, databaseLocation)
Definition: test_load.js:151
var gMediaList
const Ci
function onSecondImportProgress(job)
function startSecondImport()
_getSelectedPageStyle s i
function testPending()