52 lines
1.2 KiB
TypeScript
52 lines
1.2 KiB
TypeScript
|
import Request from 'request-promise';
|
||
|
import Fetch from 'node-fetch';
|
||
|
import Assert from 'assert';
|
||
|
import { StatusCodeError } from 'request-promise/errors';
|
||
|
|
||
|
process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0";
|
||
|
|
||
|
// Sent a GET request to the url and expect a 401
|
||
|
export async function GET_Expect401(url: string) {
|
||
|
try {
|
||
|
await Request.get(url, {
|
||
|
json: true,
|
||
|
rejectUnauthorized: false,
|
||
|
});
|
||
|
throw new Error('No response');
|
||
|
} catch (e) {
|
||
|
if (e instanceof StatusCodeError) {
|
||
|
Assert.equal(e.statusCode, 401);
|
||
|
return;
|
||
|
}
|
||
|
}
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
export async function POST_Expect401(url: string, body?: any) {
|
||
|
try {
|
||
|
await Request.post(url, {
|
||
|
json: true,
|
||
|
rejectUnauthorized: false,
|
||
|
body
|
||
|
});
|
||
|
throw new Error('No response');
|
||
|
} catch (e) {
|
||
|
if (e instanceof StatusCodeError) {
|
||
|
Assert.equal(e.statusCode, 401);
|
||
|
return;
|
||
|
}
|
||
|
}
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
export async function GET_ExpectRedirect(url: string, redirectionUrl: string) {
|
||
|
const response = await Fetch(url, {redirect: 'manual'});
|
||
|
|
||
|
if (response.status == 302) {
|
||
|
const body = await response.text();
|
||
|
Assert.equal(body, 'Found. Redirecting to ' + redirectionUrl);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
throw new Error('No redirect');
|
||
|
}
|