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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// Test splitBy from node-attribute-parser.js
const {require} = Components.utils.import("resource://devtools/shared/Loader.jsm", {});
const {splitBy} = require("devtools/client/shared/node-attribute-parser");
const TEST_DATA = [{
value: "this is a test",
splitChar: " ",
expected: [
{value: "this"},
{value: " ", type: "string"},
{value: "is"},
{value: " ", type: "string"},
{value: "a"},
{value: " ", type: "string"},
{value: "test"}
]
}, {
value: "/path/to/handler",
splitChar: " ",
expected: [
{value: "/path/to/handler"}
]
}, {
value: "test",
splitChar: " ",
expected: [
{value: "test"}
]
}, {
value: " test ",
splitChar: " ",
expected: [
{value: " ", type: "string"},
{value: "test"},
{value: " ", type: "string"}
]
}, {
value: "",
splitChar: " ",
expected: []
}, {
value: " ",
splitChar: " ",
expected: [
{value: " ", type: "string"},
{value: " ", type: "string"},
{value: " ", type: "string"}
]
}];
function run_test() {
for (let {value, splitChar, expected} of TEST_DATA) {
do_print("Splitting string: " + value);
let tokens = splitBy(value, splitChar);
do_print("Checking that the number of parsed tokens is correct");
do_check_eq(tokens.length, expected.length);
for (let i = 0; i < tokens.length; i++) {
do_print("Checking the data in token " + i);
do_check_eq(tokens[i].value, expected[i].value);
if (expected[i].type) {
do_check_eq(tokens[i].type, expected[i].type);
}
}
}
}
|