diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-02-25 15:07:00 -0500 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-14 12:55:19 +0200 |
commit | eb70e6e3d0bff11c25f14b1196025791bf2308fb (patch) | |
tree | 5ef4ce17db83c74d7b05ec12c8f59e095a6dd5bd /toolkit/components/filepicker/test/unit/test_filecomplete.js | |
parent | 32ead795290b3399d56b4708fc75b77d296f6a1a (diff) | |
download | UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.tar UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.tar.gz UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.tar.lz UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.tar.xz UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.zip |
Issue #439 - Remove tests from toolkit/
Diffstat (limited to 'toolkit/components/filepicker/test/unit/test_filecomplete.js')
-rw-r--r-- | toolkit/components/filepicker/test/unit/test_filecomplete.js | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/toolkit/components/filepicker/test/unit/test_filecomplete.js b/toolkit/components/filepicker/test/unit/test_filecomplete.js deleted file mode 100644 index d1e18d533..000000000 --- a/toolkit/components/filepicker/test/unit/test_filecomplete.js +++ /dev/null @@ -1,45 +0,0 @@ -/* 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/. */ - -// Start by getting an empty directory. -var dir = do_get_profile(); -dir.append("temp"); -dir.create(dir.DIRECTORY_TYPE, -1); -var path = dir.path + "/"; - -// Now create some sample entries. -var file = dir.clone(); -file.append("test_file"); -file.create(file.NORMAL_FILE_TYPE, -1); -file = dir.clone(); -file.append("other_file"); -file.create(file.NORMAL_FILE_TYPE, -1); -dir.append("test_dir"); -dir.create(dir.DIRECTORY_TYPE, -1); - -var gListener = { - onSearchResult: function(aSearch, aResult) { - // Check that we got same search string back. - do_check_eq(aResult.searchString, "test"); - // Check that the search succeeded. - do_check_eq(aResult.searchResult, aResult.RESULT_SUCCESS); - // Check that we got two results. - do_check_eq(aResult.matchCount, 2); - // Check that the first result is the directory we created. - do_check_eq(aResult.getValueAt(0), "test_dir"); - // Check that the first result has directory style. - do_check_eq(aResult.getStyleAt(0), "directory"); - // Check that the second result is the file we created. - do_check_eq(aResult.getValueAt(1), "test_file"); - // Check that the second result has file style. - do_check_eq(aResult.getStyleAt(1), "file"); - } -}; - -function run_test() -{ - Components.classes["@mozilla.org/autocomplete/search;1?name=file"] - .getService(Components.interfaces.nsIAutoCompleteSearch) - .startSearch("test", path, null, gListener); -} |