@plexus-interop/cli
Version:
Plexus Interop CLI tools
58 lines • 3.79 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
/**
* Copyright 2017-2020 Plexus Interop Deutsche Bank AG
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
var setup_1 = require("./setup");
var path = require("path");
var ValidateMetadataCommand_1 = require("../../src/commands/ValidateMetadataCommand");
var files_1 = require("../../src/common/files");
describe('Metadata Validation CLI', function () {
it('Validates metadata and prints error to file', function () { return tslib_1.__awaiter(void 0, void 0, void 0, function () {
var testName, genCommand, outDir, outFile, error_1, firstContent;
return tslib_1.__generator(this, function (_a) {
switch (_a.label) {
case 0:
testName = 'generated-json';
genCommand = new ValidateMetadataCommand_1.ValidateMetadataCommand();
outDir = setup_1.prepareOutDir(testName);
outFile = path.join(outDir, 'plexus.errors.log');
_a.label = 1;
case 1:
_a.trys.push([1, 3, , 4]);
return [4 /*yield*/, genCommand.action({
out: outFile,
baseDir: setup_1.getInvalidTestBaseDir()
})];
case 2:
_a.sent();
fail('Should finish with error');
return [3 /*break*/, 4];
case 3:
error_1 = _a.sent();
return [3 /*break*/, 4];
case 4: return [4 /*yield*/, files_1.readTextFile(outFile)];
case 5:
firstContent = _a.sent();
expect(firstContent)
.toContain('Couldn\'t resolve reference to Service \'com.db.plexus.interop.dsl.gen.test.services.ExampleService_NotExists\'');
return [2 /*return*/];
}
});
}); }, 15000);
});
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiVmFsaWRhdGVNZXRhZGF0YUNvbW1hbmQuc3BlYy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Rlc3RzL2NvbW1hbmRzL1ZhbGlkYXRlTWV0YWRhdGFDb21tYW5kLnNwZWMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUE7Ozs7Ozs7Ozs7Ozs7OztHQWVHO0FBQ0gsaUNBQStEO0FBQy9ELDJCQUE2QjtBQUM3QixzRkFBcUY7QUFDckYsZ0RBQXNEO0FBRXRELFFBQVEsQ0FBQyx5QkFBeUIsRUFBRTtJQUVoQyxFQUFFLENBQUMsNkNBQTZDLEVBQUU7Ozs7O29CQUV4QyxRQUFRLEdBQUcsZ0JBQWdCLENBQUM7b0JBQzVCLFVBQVUsR0FBRyxJQUFJLGlEQUF1QixFQUFFLENBQUM7b0JBQzNDLE1BQU0sR0FBRyxxQkFBYSxDQUFDLFFBQVEsQ0FBQyxDQUFDO29CQUNqQyxPQUFPLEdBQUcsSUFBSSxDQUFDLElBQUksQ0FBQyxNQUFNLEVBQUUsbUJBQW1CLENBQUMsQ0FBQzs7OztvQkFHbkQscUJBQU0sVUFBVSxDQUFDLE1BQU0sQ0FBQzs0QkFDcEIsR0FBRyxFQUFFLE9BQU87NEJBQ1osT0FBTyxFQUFFLDZCQUFxQixFQUFFO3lCQUNuQyxDQUFDLEVBQUE7O29CQUhGLFNBR0UsQ0FBQztvQkFDSCxJQUFJLENBQUMsMEJBQTBCLENBQUMsQ0FBQzs7Ozs7d0JBS2hCLHFCQUFNLG9CQUFZLENBQUMsT0FBTyxDQUFDLEVBQUE7O29CQUExQyxZQUFZLEdBQUcsU0FBMkI7b0JBRWhELE1BQU0sQ0FBQyxZQUFZLENBQUM7eUJBQ2YsU0FBUyxDQUFDLGlIQUFpSCxDQUFDLENBQUM7Ozs7U0FFckksRUFBRSxLQUFLLENBQUMsQ0FBQztBQUVkLENBQUMsQ0FBQyxDQUFDIn0=
;