mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-29 14:23:25 +00:00
DevTools - network - Copy as cURL (POST)
https://github.com/MoonchildProductions/moebius/pull/167
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
* Tests Curl Utils functionality.
|
||||
*/
|
||||
|
||||
const { CurlUtils } = require("devtools/client/shared/curl");
|
||||
const { Curl, CurlUtils } = require("devtools/client/shared/curl");
|
||||
|
||||
add_task(function* () {
|
||||
let { tab, monitor } = yield initNetMonitor(CURL_UTILS_URL);
|
||||
@@ -37,6 +37,8 @@ add_task(function* () {
|
||||
data = yield createCurlData(requests.post.attachment, gNetwork);
|
||||
testIsUrlEncodedRequest(data);
|
||||
testWritePostDataTextParams(data);
|
||||
testWriteEmptyPostDataTextParams(data);
|
||||
testDataArgumentOnGeneratedCommand(data);
|
||||
|
||||
data = yield createCurlData(requests.multipart.attachment, gNetwork);
|
||||
testIsMultipartRequest(data);
|
||||
@@ -85,6 +87,18 @@ function testWritePostDataTextParams(data) {
|
||||
"Should return a serialized representation of the request parameters");
|
||||
}
|
||||
|
||||
function testWriteEmptyPostDataTextParams(data) {
|
||||
let params = CurlUtils.writePostDataTextParams(null);
|
||||
is(params, "",
|
||||
"Should return a empty string when no parameters provided");
|
||||
}
|
||||
|
||||
function testDataArgumentOnGeneratedCommand(data) {
|
||||
let curlCommand = Curl.generateCommand(data);
|
||||
ok(curlCommand.includes("--data"),
|
||||
"Should return a curl command with --data");
|
||||
}
|
||||
|
||||
function testGetMultipartBoundary(data) {
|
||||
let boundary = CurlUtils.getMultipartBoundary(data);
|
||||
ok(/-{3,}\w+/.test(boundary),
|
||||
|
||||
Reference in New Issue
Block a user