|
| 1 | +/* |
| 2 | + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one |
| 3 | + * or more contributor license agreements. Licensed under the Elastic License |
| 4 | + * 2.0 and the Server Side Public License, v 1; you may not use this file except |
| 5 | + * in compliance with, at your election, the Elastic License 2.0 or the Server |
| 6 | + * Side Public License, v 1. |
| 7 | + */ |
| 8 | + |
| 9 | +import { AgentManager } from './agent_manager'; |
| 10 | +import { Agent as HttpAgent } from 'http'; |
| 11 | +import { Agent as HttpsAgent } from 'https'; |
| 12 | + |
| 13 | +jest.mock('http'); |
| 14 | +jest.mock('https'); |
| 15 | + |
| 16 | +const HttpAgentMock = HttpAgent as jest.Mock<HttpAgent>; |
| 17 | +const HttpsAgentMock = HttpsAgent as jest.Mock<HttpsAgent>; |
| 18 | + |
| 19 | +describe('AgentManager', () => { |
| 20 | + afterEach(() => { |
| 21 | + HttpAgentMock.mockClear(); |
| 22 | + HttpsAgentMock.mockClear(); |
| 23 | + }); |
| 24 | + |
| 25 | + describe('#getAgentFactory()', () => { |
| 26 | + it('provides factories which are different at each call', () => { |
| 27 | + const agentManager = new AgentManager(); |
| 28 | + const agentFactory1 = agentManager.getAgentFactory(); |
| 29 | + const agentFactory2 = agentManager.getAgentFactory(); |
| 30 | + expect(agentFactory1).not.toEqual(agentFactory2); |
| 31 | + }); |
| 32 | + |
| 33 | + describe('one agent factory', () => { |
| 34 | + it('provides instances of the http and https Agent classes', () => { |
| 35 | + const mockedHttpAgent = new HttpAgent(); |
| 36 | + HttpAgentMock.mockImplementationOnce(() => mockedHttpAgent); |
| 37 | + const mockedHttpsAgent = new HttpsAgent(); |
| 38 | + HttpsAgentMock.mockImplementationOnce(() => mockedHttpsAgent); |
| 39 | + const agentManager = new AgentManager(); |
| 40 | + const agentFactory = agentManager.getAgentFactory(); |
| 41 | + const httpAgent = agentFactory({ url: new URL('http://elastic-node-1:9200') }); |
| 42 | + const httpsAgent = agentFactory({ url: new URL('https://elastic-node-1:9200') }); |
| 43 | + expect(httpAgent).toEqual(mockedHttpAgent); |
| 44 | + expect(httpsAgent).toEqual(mockedHttpsAgent); |
| 45 | + }); |
| 46 | + |
| 47 | + it('provides Agents with a valid default configuration', () => { |
| 48 | + const agentManager = new AgentManager(); |
| 49 | + const agentFactory = agentManager.getAgentFactory(); |
| 50 | + agentFactory({ url: new URL('http://elastic-node-1:9200') }); |
| 51 | + expect(HttpAgent).toBeCalledTimes(1); |
| 52 | + expect(HttpAgent).toBeCalledWith({ |
| 53 | + keepAlive: true, |
| 54 | + keepAliveMsecs: 50000, |
| 55 | + maxFreeSockets: 256, |
| 56 | + maxSockets: 256, |
| 57 | + scheduling: 'lifo', |
| 58 | + }); |
| 59 | + }); |
| 60 | + |
| 61 | + it('takes into account the provided configurations', () => { |
| 62 | + const agentManager = new AgentManager({ maxFreeSockets: 32, maxSockets: 2048 }); |
| 63 | + const agentFactory = agentManager.getAgentFactory({ |
| 64 | + maxSockets: 1024, |
| 65 | + scheduling: 'fifo', |
| 66 | + }); |
| 67 | + agentFactory({ url: new URL('http://elastic-node-1:9200') }); |
| 68 | + expect(HttpAgent).toBeCalledTimes(1); |
| 69 | + expect(HttpAgent).toBeCalledWith({ |
| 70 | + keepAlive: true, |
| 71 | + keepAliveMsecs: 50000, |
| 72 | + maxFreeSockets: 32, |
| 73 | + maxSockets: 1024, |
| 74 | + scheduling: 'fifo', |
| 75 | + }); |
| 76 | + }); |
| 77 | + |
| 78 | + it('provides Agents that match the URLs protocol', () => { |
| 79 | + const agentManager = new AgentManager(); |
| 80 | + const agentFactory = agentManager.getAgentFactory(); |
| 81 | + agentFactory({ url: new URL('http://elastic-node-1:9200') }); |
| 82 | + expect(HttpAgent).toHaveBeenCalledTimes(1); |
| 83 | + expect(HttpsAgent).toHaveBeenCalledTimes(0); |
| 84 | + agentFactory({ url: new URL('https://elastic-node-3:9200') }); |
| 85 | + expect(HttpAgent).toHaveBeenCalledTimes(1); |
| 86 | + expect(HttpsAgent).toHaveBeenCalledTimes(1); |
| 87 | + }); |
| 88 | + |
| 89 | + it('provides the same Agent iif URLs use the same protocol', () => { |
| 90 | + const agentManager = new AgentManager(); |
| 91 | + const agentFactory = agentManager.getAgentFactory(); |
| 92 | + const agent1 = agentFactory({ url: new URL('http://elastic-node-1:9200') }); |
| 93 | + const agent2 = agentFactory({ url: new URL('http://elastic-node-2:9200') }); |
| 94 | + const agent3 = agentFactory({ url: new URL('https://elastic-node-3:9200') }); |
| 95 | + const agent4 = agentFactory({ url: new URL('https://elastic-node-4:9200') }); |
| 96 | + |
| 97 | + expect(agent1).toEqual(agent2); |
| 98 | + expect(agent1).not.toEqual(agent3); |
| 99 | + expect(agent3).toEqual(agent4); |
| 100 | + }); |
| 101 | + |
| 102 | + it('dereferences an agent instance when the agent is closed', () => { |
| 103 | + const agentManager = new AgentManager(); |
| 104 | + const agentFactory = agentManager.getAgentFactory(); |
| 105 | + const agent = agentFactory({ url: new URL('http://elastic-node-1:9200') }); |
| 106 | + // eslint-disable-next-line dot-notation |
| 107 | + expect(agentManager['httpStore'].has(agent)).toEqual(true); |
| 108 | + agent.destroy(); |
| 109 | + // eslint-disable-next-line dot-notation |
| 110 | + expect(agentManager['httpStore'].has(agent)).toEqual(false); |
| 111 | + }); |
| 112 | + }); |
| 113 | + |
| 114 | + describe('two agent factories', () => { |
| 115 | + it('never provide the same Agent instance even if they use the same type', () => { |
| 116 | + const agentManager = new AgentManager(); |
| 117 | + const agentFactory1 = agentManager.getAgentFactory(); |
| 118 | + const agentFactory2 = agentManager.getAgentFactory(); |
| 119 | + const agent1 = agentFactory1({ url: new URL('http://elastic-node-1:9200') }); |
| 120 | + const agent2 = agentFactory2({ url: new URL('http://elastic-node-1:9200') }); |
| 121 | + expect(agent1).not.toEqual(agent2); |
| 122 | + }); |
| 123 | + }); |
| 124 | + }); |
| 125 | +}); |
0 commit comments