diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /browser/components/places/tests/browser/browser_475045.js | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'browser/components/places/tests/browser/browser_475045.js')
-rw-r--r-- | browser/components/places/tests/browser/browser_475045.js | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/browser/components/places/tests/browser/browser_475045.js b/browser/components/places/tests/browser/browser_475045.js new file mode 100644 index 000000000..7d562349b --- /dev/null +++ b/browser/components/places/tests/browser/browser_475045.js @@ -0,0 +1,65 @@ +/* Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ */ +// Instead of loading EventUtils.js into the test scope in browser-test.js for all tests, +// we only need EventUtils.js for a few files which is why we are using loadSubScript. +var EventUtils = {}; +this._scriptLoader = Cc["@mozilla.org/moz/jssubscript-loader;1"]. + getService(Ci.mozIJSSubScriptLoader); +this._scriptLoader.loadSubScript("chrome://mochikit/content/tests/SimpleTest/EventUtils.js", EventUtils); + +add_task(function* test() { + // Make sure the bookmarks bar is visible and restore its state on cleanup. + let toolbar = document.getElementById("PersonalToolbar"); + ok(toolbar, "PersonalToolbar should not be null"); + + if (toolbar.collapsed) { + yield promiseSetToolbarVisibility(toolbar, true); + registerCleanupFunction(function() { + return promiseSetToolbarVisibility(toolbar, false); + }); + } + + // Setup the node we will use to be dropped. The actual node used does not + // matter because we will set its data, effect, and mimeType manually. + let placesItems = document.getElementById("PlacesToolbarItems"); + ok(placesItems, "PlacesToolbarItems should not be null"); + ok(placesItems.localName == "scrollbox", "PlacesToolbarItems should not be null"); + ok(placesItems.childNodes[0], "PlacesToolbarItems must have at least one child"); + + /** + * Simulates a drop of a URI onto the bookmarks bar. + * + * @param aEffect + * The effect to use for the drop operation: move, copy, or link. + * @param aMimeType + * The mime type to use for the drop operation. + */ + let simulateDragDrop = function(aEffect, aMimeType) { + const uriSpec = "http://www.mozilla.org/D1995729-A152-4e30-8329-469B01F30AA7"; + let uri = makeURI(uriSpec); + EventUtils.synthesizeDrop(placesItems.childNodes[0], + placesItems, + [[{type: aMimeType, + data: uriSpec}]], + aEffect, window); + + // Verify that the drop produces exactly one bookmark. + let bookmarkIds = PlacesUtils.bookmarks + .getBookmarkIdsForURI(uri); + ok(bookmarkIds.length == 1, "There should be exactly one bookmark"); + + PlacesUtils.bookmarks.removeItem(bookmarkIds[0]); + + // Verify that we removed the bookmark successfully. + ok(!PlacesUtils.bookmarks.isBookmarked(uri), "URI should be removed"); + } + + // Simulate a bookmark drop for all of the mime types and effects. + let mimeTypes = ["text/plain", "text/unicode", "text/x-moz-url"]; + let effects = ["move", "copy", "link"]; + effects.forEach(function (effect) { + mimeTypes.forEach(function (mimeType) { + simulateDragDrop(effect, mimeType); + }); + }); +}); |