blob: 46a11275f3ba5bb9aee33a833089aacb1e578739 (
plain)
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
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
const { XPCOMUtils } = ChromeUtils.import(
"resource://gre/modules/XPCOMUtils.jsm"
);
const { sinon } = ChromeUtils.import("resource://testing-common/Sinon.jsm");
ChromeUtils.defineModuleGetter(
this,
"SpecialMessageActions",
"resource://messaging-system/lib/SpecialMessageActions.jsm"
);
ChromeUtils.defineModuleGetter(
this,
"Ajv",
"resource://testing-common/ajv-4.1.1.js"
);
XPCOMUtils.defineLazyGetter(this, "fetchSMASchema", async () => {
const response = await fetch(
"resource://testing-common/SpecialMessageActionSchemas.json"
);
const schema = await response.json();
if (!schema) {
throw new Error("Failed to load SpecialMessageActionSchemas");
}
return schema.definitions.SpecialMessageActionSchemas;
});
const EXAMPLE_URL = "https://example.com/";
const SMATestUtils = {
/**
* Checks if an action is valid acording to existing schemas
* @param {SpecialMessageAction} action
*/
async validateAction(action) {
const schema = await fetchSMASchema;
const ajv = new Ajv({ async: "co*" });
const validator = ajv.compile(schema);
if (!validator(action)) {
throw new Error(`Action with type ${action.type} was not valid.`);
}
ok(!validator.errors, `should be a valid action of type ${action.type}`);
},
/**
* Executes a Special Message Action after validating it
* @param {SpecialMessageAction} action
* @param {Browser} browser
*/
async executeAndValidateAction(action, browser = gBrowser) {
await SMATestUtils.validateAction(action);
await SpecialMessageActions.handleAction(action, browser);
},
};
|