blob: 6d698e893003e74cc8c491e84f2569c2b6372e6e (
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
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
const VALID_JSON_URL = URL_ROOT + "valid_json.json";
const INVALID_JSON_URL = URL_ROOT + "invalid_json.json";
const prettyPrintButtonClass = ".textPanelBox .toolbar button.prettyprint";
add_task(async function () {
info("Test 'Pretty Print' button disappears on parsing invalid JSON");
const count = await testPrettyPrintButton(INVALID_JSON_URL);
is(count, 0, "There must be no pretty-print button for invalid json");
});
add_task(async function () {
info("Test 'Pretty Print' button is present on parsing valid JSON");
const count = await testPrettyPrintButton(VALID_JSON_URL);
is(count, 1, "There must be pretty-print button for valid json");
});
async function testPrettyPrintButton(url) {
await addJsonViewTab(url);
await selectJsonViewContentTab("rawdata");
info("Switched to Raw Data tab.");
const count = await getElementCount(prettyPrintButtonClass);
return count;
}
|