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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
"use strict";
const { AppConstants } = ChromeUtils.importESModule(
"resource://gre/modules/AppConstants.sys.mjs"
);
const { ChromeMigrationUtils } = ChromeUtils.importESModule(
"resource:///modules/ChromeMigrationUtils.sys.mjs"
);
function getRootPath() {
let dirKey;
if (AppConstants.platform == "win") {
dirKey = "LocalAppData";
} else if (AppConstants.platform == "macosx") {
dirKey = "ULibDir";
} else {
dirKey = "Home";
}
return Services.dirsvc.get(dirKey, Ci.nsIFile).path;
}
add_task(async function test_getDataPath_function() {
let chromeUserDataPath = ChromeMigrationUtils.getDataPath("Chrome");
let chromiumUserDataPath = ChromeMigrationUtils.getDataPath("Chromium");
let canaryUserDataPath = ChromeMigrationUtils.getDataPath("Canary");
if (AppConstants.platform == "win") {
Assert.equal(
chromeUserDataPath,
PathUtils.join(getRootPath(), "Google", "Chrome", "User Data"),
"Should get the path of Chrome data directory."
);
Assert.equal(
chromiumUserDataPath,
PathUtils.join(getRootPath(), "Chromium", "User Data"),
"Should get the path of Chromium data directory."
);
Assert.equal(
canaryUserDataPath,
PathUtils.join(getRootPath(), "Google", "Chrome SxS", "User Data"),
"Should get the path of Canary data directory."
);
} else if (AppConstants.platform == "macosx") {
Assert.equal(
chromeUserDataPath,
PathUtils.join(getRootPath(), "Application Support", "Google", "Chrome"),
"Should get the path of Chrome data directory."
);
Assert.equal(
chromiumUserDataPath,
PathUtils.join(getRootPath(), "Application Support", "Chromium"),
"Should get the path of Chromium data directory."
);
Assert.equal(
canaryUserDataPath,
PathUtils.join(
getRootPath(),
"Application Support",
"Google",
"Chrome Canary"
),
"Should get the path of Canary data directory."
);
} else {
Assert.equal(
chromeUserDataPath,
PathUtils.join(getRootPath(), ".config", "google-chrome"),
"Should get the path of Chrome data directory."
);
Assert.equal(
chromiumUserDataPath,
PathUtils.join(getRootPath(), ".config", "chromium"),
"Should get the path of Chromium data directory."
);
Assert.equal(canaryUserDataPath, null, "Should get null for Canary.");
}
});
add_task(async function test_getExtensionPath_function() {
let extensionPath = ChromeMigrationUtils.getExtensionPath("Default");
let expectedPath;
if (AppConstants.platform == "win") {
expectedPath = PathUtils.join(
getRootPath(),
"Google",
"Chrome",
"User Data",
"Default",
"Extensions"
);
} else if (AppConstants.platform == "macosx") {
expectedPath = PathUtils.join(
getRootPath(),
"Application Support",
"Google",
"Chrome",
"Default",
"Extensions"
);
} else {
expectedPath = PathUtils.join(
getRootPath(),
".config",
"google-chrome",
"Default",
"Extensions"
);
}
Assert.equal(
extensionPath,
expectedPath,
"Should get the path of extensions directory."
);
});
|