@elastic.io/maester-client
Version:
The official object-storage client
75 lines (74 loc) • 3.85 kB
JavaScript
;
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 });
const chai_1 = __importStar(require("chai"));
const axios_1 = __importDefault(require("axios"));
const get_stream_1 = __importDefault(require("get-stream"));
const src_1 = require("../src");
const common_1 = require("./common");
const utils_1 = require("../src/utils");
chai_1.default.use(require('chai-as-promised'));
describe('objectStorage', () => {
const storageClient = new src_1.StorageClient(common_1.creds);
describe('add & get', () => {
it('should add (defaults to application/json)', async () => {
const getJSONAsStream = async () => (0, utils_1.streamFromData)({ a: 4 });
const { data } = await storageClient.post(getJSONAsStream);
(0, chai_1.expect)(data.contentType).to.be.equal('application/json');
const response = await storageClient.get(data.objectId, {});
const rawResp = await (0, get_stream_1.default)(response.data);
(0, chai_1.expect)(JSON.parse(rawResp)).to.be.deep.equal({ a: 4 });
});
it('should add (application/json)', async () => {
const getJSONAsStream = async () => (0, utils_1.streamFromData)({ a: 3 });
const { data } = await storageClient.post(getJSONAsStream);
(0, chai_1.expect)(data.contentType).to.be.equal('application/json');
const response = await storageClient.get(data.objectId, { responseType: 'json' });
const rawResp = await (0, get_stream_1.default)(response.data);
(0, chai_1.expect)(JSON.parse(rawResp)).to.be.deep.equal({ a: 3 });
});
it('should add (defaults to application/json)', async () => {
const getAttachAsStream = async () => (await axios_1.default.get('https://raw.githubusercontent.com/elasticio/jsonata-transform-component/master/package-lock.json', { responseType: 'stream' })).data;
const { data } = await storageClient.post(getAttachAsStream);
(0, chai_1.expect)(data.contentType).to.be.equal('application/json');
const response = await storageClient.get(data.objectId, {});
const rawResp = await (0, get_stream_1.default)(response.data);
(0, chai_1.expect)(JSON.parse(rawResp).name).to.be.equal('jsonata-transform-component');
});
});
});