Bug 1742879 - Post: Add tests for platform-specific handleFlagWithParam behaviour. r=nika

Differential Revision: https://phabricator.services.mozilla.com/D132627
This commit is contained in:
Nick Alexander 2021-12-02 19:06:44 +00:00
parent 02dda268a6
commit 5d296cef69
2 changed files with 67 additions and 0 deletions

View File

@ -0,0 +1,66 @@
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
const { AppConstants } = ChromeUtils.import(
"resource://gre/modules/AppConstants.jsm"
);
add_task(async function test_handleFlagWithParam() {
let goodInputs = [
["-arg", "value"],
["--arg", "value"],
["-arg=value"],
["--arg=value"],
];
let badInputs = [["-arg", "-value"]];
// Accepted only on Windows. Perhaps surprisingly, "/arg=value" is not accepted.
let windowsInputs = [["/arg", "value"], ["/arg:value"]];
if (AppConstants.platform == "win") {
goodInputs.push(...windowsInputs);
}
for (let args of goodInputs) {
let cmdLine = Cu.createCommandLine(
args,
null,
Ci.nsICommandLine.STATE_REMOTE_EXPLICIT
);
Assert.equal(
cmdLine.handleFlagWithParam("arg", false),
"value",
`${JSON.stringify(args)} yields 'value' for 'arg'`
);
}
for (let args of badInputs) {
let cmdLine = Cu.createCommandLine(
args,
null,
Ci.nsICommandLine.STATE_REMOTE_EXPLICIT
);
Assert.throws(
() => cmdLine.handleFlagWithParam("arg", false),
/NS_ERROR_ILLEGAL_VALUE/,
`${JSON.stringify(args)} throws for 'arg'`
);
}
if (AppConstants.platform != "win") {
// No special meaning on non-Windows platforms.
for (let args of windowsInputs) {
let cmdLine = Cu.createCommandLine(
args,
null,
Ci.nsICommandLine.STATE_REMOTE_EXPLICIT
);
Assert.equal(
cmdLine.handleFlagWithParam("arg", false),
null,
`${JSON.stringify(args)} yields null for 'arg'`
);
}
}
});

View File

@ -8,4 +8,5 @@ support-files =
[test_bug666224.js]
[test_classinfo.js]
[test_createCommandLine.js]
[test_handleFlagWithParam.js]
[test_resolvefile.js]