yjryu / UI_Layout star
File name
Commit message
Commit date
yjryu 2024-01-10 b1cdf23 240110 류윤주 commit UNIX
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
'use strict';
var debug = require('debug');
var express = require('express');
var request = require('supertest');
var proxy = require('../');
var proxyTarget = require('../test/support/proxyTarget');
/*  This test is specifically written because of critical errors thrown while debug logging. */
describe('trace debugging does not cause the application to fail', function () {
  var proxyServer;
  before(function () {
    proxyServer = proxyTarget(8109, 1000);
  });
  after(function () {
    proxyServer.close();
  });
  beforeEach(function () {
    debug.enable('express-http-proxy');
  });
  afterEach(function () {
    debug.disable('express-http-proxy');
  });
  it('happy path', function (done) {
    debugger;
    var app = express();
    app.use(proxy('localhost:8109'));
    request(app)
      .get('/get')
      .expect(200)
      .end(done);
  });
  it('when agent is a deeply nested object', function (done) {
    var app = express();
    var HttpAgent = require('http').Agent;
    var httpAgent = new HttpAgent({ keepAlive: true, keepAliveMsecs: 60e3 });
    app.use(proxy('localhost:8109', {
      proxyReqOptDecorator: function (proxyReqOpts) {
        proxyReqOpts.agent = httpAgent;
        return proxyReqOpts;
      }
    }));
    request(app)
      .get('/get')
      .expect(200)
      .end(done);
  });
});
X