mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
269 lines
14 KiB
JavaScript
269 lines
14 KiB
JavaScript
"use strict";
|
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
});
|
|
};
|
|
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
function step(op) {
|
|
if (f) throw new TypeError("Generator is already executing.");
|
|
while (_) try {
|
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
switch (op[0]) {
|
|
case 0: case 1: t = op; break;
|
|
case 4: _.label++; return { value: op[1], done: false };
|
|
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
default:
|
|
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
if (t[2]) _.ops.pop();
|
|
_.trys.pop(); continue;
|
|
}
|
|
op = body.call(thisArg, _);
|
|
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
}
|
|
};
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
|
|
result["default"] = mod;
|
|
return result;
|
|
};
|
|
exports.__esModule = true;
|
|
var chai_1 = require("chai");
|
|
var fs = __importStar(require("fs"));
|
|
var config_1 = require("../config");
|
|
var utils_1 = require("../utils");
|
|
var src_1 = require("../../src"); // @oceanprotocol/squid
|
|
describe('Consume Asset', function () {
|
|
var ocean;
|
|
var publisher;
|
|
var consumer;
|
|
var metadata = utils_1.getMetadata();
|
|
var ddo;
|
|
var serviceAgreementSignatureResult;
|
|
before(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
var _a;
|
|
return __generator(this, function (_b) {
|
|
switch (_b.label) {
|
|
case 0: return [4 /*yield*/, src_1.Ocean.getInstance(config_1.config)
|
|
// Accounts
|
|
];
|
|
case 1:
|
|
ocean = _b.sent();
|
|
return [4 /*yield*/, ocean.accounts.list()];
|
|
case 2:
|
|
_a = _b.sent(), publisher = _a[0], consumer = _a[1];
|
|
if (!ocean.keeper.dispenser) {
|
|
metadata = utils_1.getMetadata(0);
|
|
}
|
|
return [2 /*return*/];
|
|
}
|
|
});
|
|
}); });
|
|
it('should register an asset', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0: return [4 /*yield*/, ocean.assets.create(metadata, publisher)];
|
|
case 1:
|
|
ddo = _a.sent();
|
|
chai_1.assert.isDefined(ddo, 'Register has not returned a DDO');
|
|
chai_1.assert.match(ddo.id, /^did:op:[a-f0-9]{64}$/, 'DDO id is not valid');
|
|
chai_1.assert.isAtLeast(ddo.authentication.length, 1, 'Default authentication not added');
|
|
chai_1.assert.isDefined(ddo.findServiceByType('access'), "DDO access service doesn't exist");
|
|
return [2 /*return*/];
|
|
}
|
|
});
|
|
}); });
|
|
it('should be able to request tokens for consumer', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
var initialBalance, claimedTokens, _a, _b, _c, _d, _e, _f, _g;
|
|
return __generator(this, function (_h) {
|
|
switch (_h.label) {
|
|
case 0: return [4 /*yield*/, consumer.getBalance()];
|
|
case 1:
|
|
initialBalance = (_h.sent()).ocn;
|
|
_a = +metadata.main.price;
|
|
_c = (_b = Math).pow;
|
|
_d = [10];
|
|
return [4 /*yield*/, ocean.keeper.token.decimals()];
|
|
case 2:
|
|
claimedTokens = _a * _c.apply(_b, _d.concat([-(_h.sent())]));
|
|
_h.label = 3;
|
|
case 3:
|
|
_h.trys.push([3, 5, , 6]);
|
|
return [4 /*yield*/, consumer.requestTokens(claimedTokens)];
|
|
case 4:
|
|
_h.sent();
|
|
return [3 /*break*/, 6];
|
|
case 5:
|
|
_e = _h.sent();
|
|
return [3 /*break*/, 6];
|
|
case 6:
|
|
_g = (_f = chai_1.assert).equal;
|
|
return [4 /*yield*/, consumer.getBalance()];
|
|
case 7:
|
|
_g.apply(_f, [(_h.sent()).ocn,
|
|
initialBalance + claimedTokens,
|
|
'OCN Tokens not delivered']);
|
|
return [2 /*return*/];
|
|
}
|
|
});
|
|
}); });
|
|
it('should sign the service agreement', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
var accessService, agreementId, signature;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0:
|
|
accessService = ddo.findServiceByType('access');
|
|
return [4 /*yield*/, ocean.agreements.prepare(ddo.id, accessService.index, consumer)];
|
|
case 1:
|
|
serviceAgreementSignatureResult = _a.sent();
|
|
agreementId = serviceAgreementSignatureResult.agreementId, signature = serviceAgreementSignatureResult.signature;
|
|
chai_1.assert.match(agreementId, /^0x[a-f0-9]{64}$/, 'Service agreement ID seems not valid');
|
|
chai_1.assert.match(signature, /^0x[a-f0-9]{130}$/, 'Service agreement signature seems not valid');
|
|
return [2 /*return*/];
|
|
}
|
|
});
|
|
}); });
|
|
it('should execute the service agreement', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
var accessService, success;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0:
|
|
accessService = ddo.findServiceByType('access');
|
|
return [4 /*yield*/, ocean.agreements.create(ddo.id, serviceAgreementSignatureResult.agreementId, accessService.index, serviceAgreementSignatureResult.signature, consumer, publisher)];
|
|
case 1:
|
|
success = _a.sent();
|
|
chai_1.assert.isTrue(success);
|
|
return [2 /*return*/];
|
|
}
|
|
});
|
|
}); });
|
|
it('should get the agreement conditions status not fulfilled', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
var status;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0: return [4 /*yield*/, ocean.agreements.status(serviceAgreementSignatureResult.agreementId)];
|
|
case 1:
|
|
status = _a.sent();
|
|
chai_1.assert.deepEqual(status, {
|
|
lockReward: src_1.ConditionState.Unfulfilled,
|
|
accessSecretStore: src_1.ConditionState.Unfulfilled,
|
|
escrowReward: src_1.ConditionState.Unfulfilled
|
|
});
|
|
return [2 /*return*/];
|
|
}
|
|
});
|
|
}); });
|
|
it('should lock the payment by the consumer', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
var paid;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0: return [4 /*yield*/, ocean.agreements.conditions.lockReward(serviceAgreementSignatureResult.agreementId, ddo.findServiceByType('metadata').attributes.main.price, consumer)];
|
|
case 1:
|
|
paid = _a.sent();
|
|
chai_1.assert.isTrue(paid, 'The asset has not been paid correctly');
|
|
return [2 /*return*/];
|
|
}
|
|
});
|
|
}); });
|
|
// The test will fail because Brizo grants the access faster
|
|
it('should grant the access by the publisher', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
var granted, accessGranted, _a;
|
|
return __generator(this, function (_b) {
|
|
switch (_b.label) {
|
|
case 0:
|
|
_b.trys.push([0, 3, , 4]);
|
|
return [4 /*yield*/, ocean.agreements.conditions.grantAccess(serviceAgreementSignatureResult.agreementId, ddo.id, consumer.getId(), publisher)];
|
|
case 1:
|
|
granted = _b.sent();
|
|
chai_1.assert.isTrue(granted, 'The asset has not been granted correctly');
|
|
return [4 /*yield*/, ocean.keeper.conditions.accessSecretStoreCondition.checkPermissions(consumer.getId(), ddo.id)];
|
|
case 2:
|
|
accessGranted = _b.sent();
|
|
chai_1.assert.isTrue(accessGranted, 'Consumer has been granted.');
|
|
return [3 /*break*/, 4];
|
|
case 3:
|
|
_a = _b.sent();
|
|
return [3 /*break*/, 4];
|
|
case 4: return [2 /*return*/];
|
|
}
|
|
});
|
|
}); });
|
|
it('should get the agreement conditions status fulfilled', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
var status;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0: return [4 /*yield*/, ocean.agreements.status(serviceAgreementSignatureResult.agreementId)];
|
|
case 1:
|
|
status = _a.sent();
|
|
chai_1.assert.deepEqual(status, {
|
|
lockReward: src_1.ConditionState.Fulfilled,
|
|
accessSecretStore: src_1.ConditionState.Fulfilled,
|
|
escrowReward: src_1.ConditionState.Unfulfilled
|
|
});
|
|
return [2 /*return*/];
|
|
}
|
|
});
|
|
}); });
|
|
it('should consume and store the assets', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
var accessService, folder, path, files;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0:
|
|
accessService = ddo.findServiceByType('access');
|
|
folder = '/tmp/ocean/squid-js-1';
|
|
return [4 /*yield*/, ocean.assets.consume(serviceAgreementSignatureResult.agreementId, ddo.id, accessService.index, consumer, folder)];
|
|
case 1:
|
|
path = _a.sent();
|
|
chai_1.assert.include(path, folder, 'The storage path is not correct.');
|
|
return [4 /*yield*/, new Promise(function (resolve) {
|
|
fs.readdir(path, function (e, fileList) {
|
|
resolve(fileList);
|
|
});
|
|
})];
|
|
case 2:
|
|
files = _a.sent();
|
|
chai_1.assert.deepEqual(files, ['README.md', 'package.json'], 'Stored files are not correct.');
|
|
return [2 /*return*/];
|
|
}
|
|
});
|
|
}); });
|
|
it('should consume and store one asset', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
var accessService, folder, path, files;
|
|
return __generator(this, function (_a) {
|
|
switch (_a.label) {
|
|
case 0:
|
|
accessService = ddo.findServiceByType('access');
|
|
folder = '/tmp/ocean/squid-js-2';
|
|
return [4 /*yield*/, ocean.assets.consume(serviceAgreementSignatureResult.agreementId, ddo.id, accessService.index, consumer, folder, 1)];
|
|
case 1:
|
|
path = _a.sent();
|
|
chai_1.assert.include(path, folder, 'The storage path is not correct.');
|
|
return [4 /*yield*/, new Promise(function (resolve) {
|
|
fs.readdir(path, function (e, fileList) {
|
|
resolve(fileList);
|
|
});
|
|
})];
|
|
case 2:
|
|
files = _a.sent();
|
|
chai_1.assert.deepEqual(files, ['README.md'], 'Stored files are not correct.');
|
|
return [2 /*return*/];
|
|
}
|
|
});
|
|
}); });
|
|
});
|