| Server IP : 74.208.250.37 / Your IP : 216.73.217.68 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ubuntu 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64 User : miferval ( 1000) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/brainwavemx/public/node_modules/native-request/test/ |
Upload File : |
let request = require('../index');
let http = require('http');
let assert = require('assert');
const server = http.createServer(function(request, response) {
var body = ''
request.on('data', function(data) {
body += data
})
request.on('end', function() {
if (request.url === "/cookies") {
response.writeHead(200, { 'Set-Cookie': request.headers.cookie || "" });
response.end();
return;
}
if (request.url === "/cookies-redirect") {
response.writeHead(302, { 'Location': 'http://localhost:8000/cookies' });
response.end();
return;
}
response.writeHead(200, { 'Content-Type': 'text/html', 'authorization': request.headers.authorization || "" })
response.end(body)
})
});
describe('/POST-Cookies', function() {
before(function() {
server.listen(8000);
});
describe('/cookies', function() {
it("should send me back the cookies", function(done) {
request.request({ url: "http://localhost:8000/cookies",
method: 'POST',
Cookies: { john: "doe", human: true },
}
, function(err, data, status, headers) {
assert.equal(headers['set-cookie'], 'john=doe; human=true');
assert.equal(200, status);
done();
});
});
it("should not send me back the cookies", function(done) {
request.request({ url: "http://localhost:8000/cookies-redirect",
method: 'POST',
Cookies: { john: "doe", human: true },
requestOptions: { trustRedirect: false },
}
, function(err, data, status, headers) {
assert.equal(headers['set-cookie'], "");
assert.equal(200, status);
done();
});
});
});
after(function() {
server.close();
});
});