UNPKG

@elastic.io/maester-client

Version:
78 lines (77 loc) 3.22 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || (function () { var ownKeys = function(o) { ownKeys = Object.getOwnPropertyNames || function (o) { var ar = []; for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; return ar; }; return ownKeys(o); }; return function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); __setModuleDefault(result, mod); return result; }; })(); var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.streamFromObject = exports.unzip = exports.zip = exports.decryptStream = exports.encryptStream = exports.getContext = void 0; /* eslint-disable import/first */ process.env.REQUEST_RETRY_DELAY = '0'; process.env.NODE_ENV = 'test'; const stream_1 = require("stream"); const crypto = __importStar(require("crypto")); const zlib = __importStar(require("zlib")); const component_logger_1 = __importDefault(require("@elastic.io/component-logger")); const sinon_1 = __importDefault(require("sinon")); const getContext = () => ({ logger: (0, component_logger_1.default)(), emit: sinon_1.default.spy(), }); exports.getContext = getContext; const MESSAGE_CRYPTO_PASSWORD = 'testCryptoPassword'; const MESSAGE_CRYPTO_IV = 'iv=any16_symbols'; const ALGORITHM = 'aes-256-cbc'; const encryptStream = () => { const encodeKey = crypto.createHash('sha256').update(MESSAGE_CRYPTO_PASSWORD, 'utf8').digest(); return crypto.createCipheriv(ALGORITHM, encodeKey, MESSAGE_CRYPTO_IV); }; exports.encryptStream = encryptStream; const decryptStream = () => { const decodeKey = crypto.createHash('sha256').update(MESSAGE_CRYPTO_PASSWORD, 'utf8').digest(); return crypto.createDecipheriv(ALGORITHM, decodeKey, MESSAGE_CRYPTO_IV); }; exports.decryptStream = decryptStream; const zip = () => zlib.createGzip(); exports.zip = zip; const unzip = () => zlib.createGunzip(); exports.unzip = unzip; const streamFromObject = (data) => { const dataString = JSON.stringify(data); const stream = new stream_1.Readable(); stream.push(dataString); stream.push(null); return stream; }; exports.streamFromObject = streamFromObject;