forked from mirrors/gecko-dev
		
	
		
			
				
	
	
		
			62 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /* This Source Code Form is subject to the terms of the Mozilla Public
 | |
|  * License, v. 2.0. If a copy of the MPL was not distributed with this
 | |
|  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 | |
| 
 | |
| "use strict";
 | |
| 
 | |
| function run_test() {
 | |
|   // Set up profile. We will use profile path create some test files.
 | |
|   do_get_profile();
 | |
| 
 | |
|   // Start executing the tests.
 | |
|   run_next_test();
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * Test the watcher correctly handles two watches sharing the same
 | |
|  * change callback.
 | |
|  */
 | |
| add_task(async function test_watch_with_shared_callback() {
 | |
| 
 | |
|   // Create and watch two sub-directories of the profile directory so we don't
 | |
|   // catch notifications we're not interested in (i.e. "startupCache").
 | |
|   let watchedDirs =
 | |
|     [
 | |
|       OS.Path.join(OS.Constants.Path.profileDir, "filewatcher_playground"),
 | |
|       OS.Path.join(OS.Constants.Path.profileDir, "filewatcher_playground2")
 | |
|     ];
 | |
| 
 | |
|   await OS.File.makeDir(watchedDirs[0]);
 | |
|   await OS.File.makeDir(watchedDirs[1]);
 | |
| 
 | |
|   let tempFileName = "test_filecreation.tmp";
 | |
| 
 | |
|   // Instantiate and initialize the native watcher.
 | |
|   let watcher = makeWatcher();
 | |
|   let deferred = Promise.defer();
 | |
| 
 | |
|   // Watch both directories using the same callbacks.
 | |
|   await promiseAddPath(watcher, watchedDirs[0], deferred.resolve, deferred.reject);
 | |
|   await promiseAddPath(watcher, watchedDirs[1], deferred.resolve, deferred.reject);
 | |
| 
 | |
|   // Remove the watch for the first directory, but keep watching
 | |
|   // for changes in the second: we need to make sure the callback
 | |
|   // survives the removal of the first watch.
 | |
|   watcher.removePath(watchedDirs[0], deferred.resolve, deferred.reject);
 | |
| 
 | |
|   // Create a file within the watched directory.
 | |
|   let tmpFilePath = OS.Path.join(watchedDirs[1], tempFileName);
 | |
|   await OS.File.writeAtomic(tmpFilePath, "some data");
 | |
| 
 | |
|   // Wait until the watcher informs us that the file was created.
 | |
|   let changed = await deferred.promise;
 | |
|   Assert.equal(changed, tmpFilePath);
 | |
| 
 | |
|   // Remove the watch and free the associated memory (we need to
 | |
|   // reuse 'deferred.resolve' and 'deferred.reject' to unregister).
 | |
|   watcher.removePath(watchedDirs[1], deferred.resolve, deferred.reject);
 | |
| 
 | |
|   // Remove the test directories and all of their content.
 | |
|   await OS.File.removeDir(watchedDirs[0]);
 | |
|   await OS.File.removeDir(watchedDirs[1]);
 | |
| });
 | 
