1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
ChromeUtils.defineESModuleGetters(this, {
PlacesTestUtils: "resource://testing-common/PlacesTestUtils.sys.mjs",
});
const TRANSITION_LINK = PlacesUtils.history.TRANSITION_LINK;
const TRANSITION_TYPED = PlacesUtils.history.TRANSITION_TYPED;
const TRANSITION_BOOKMARK = PlacesUtils.history.TRANSITION_BOOKMARK;
const TRANSITION_REDIRECT_PERMANENT =
PlacesUtils.history.TRANSITION_REDIRECT_PERMANENT;
const TRANSITION_REDIRECT_TEMPORARY =
PlacesUtils.history.TRANSITION_REDIRECT_TEMPORARY;
const TRANSITION_EMBED = PlacesUtils.history.TRANSITION_EMBED;
const TRANSITION_FRAMED_LINK = PlacesUtils.history.TRANSITION_FRAMED_LINK;
const TRANSITION_DOWNLOAD = PlacesUtils.history.TRANSITION_DOWNLOAD;
/**
* Returns a moz_places field value for a url.
*
* @param {nsIURI|String} aURI
* The URI or spec to get field for.
* @param {String} aFieldName
* The field name to get the value of.
* @param {Function} aCallback
* Callback function that will get the property value.
*/
function fieldForUrl(aURI, aFieldName, aCallback) {
let url = aURI instanceof Ci.nsIURI ? aURI.spec : aURI;
let stmt = PlacesUtils.history.DBConnection.createAsyncStatement(
`SELECT ${aFieldName} FROM moz_places WHERE url_hash = hash(:page_url) AND url = :page_url`
);
stmt.params.page_url = url;
stmt.executeAsync({
_value: -1,
handleResult(aResultSet) {
let row = aResultSet.getNextRow();
if (!row) {
ok(false, "The page should exist in the database");
}
this._value = row.getResultByName(aFieldName);
},
handleError() {},
handleCompletion(aReason) {
if (aReason != Ci.mozIStorageStatementCallback.REASON_FINISHED) {
ok(false, "The statement should properly succeed");
}
aCallback(this._value);
},
});
stmt.finalize();
}
/**
* Promise wrapper for fieldForUrl.
*
* @param {nsIURI|String} aURI
* The URI or spec to get field for.
* @param {String} aFieldName
* The field name to get the value of.
* @return {Promise}
* A promise that is resolved with the value of the field.
*/
function promiseFieldForUrl(aURI, aFieldName) {
return new Promise(resolve => {
function callback(result) {
resolve(result);
}
fieldForUrl(aURI, aFieldName, callback);
});
}
function whenNewWindowLoaded(aOptions, aCallback) {
BrowserTestUtils.waitForNewWindow().then(aCallback);
OpenBrowserWindow(aOptions);
}
|