@n1k1t/unit-generator
Version:
Coverage based unit tests AI generator
104 lines • 3.87 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 });
exports.ContentFactory = void 0;
const path_1 = __importDefault(require("path"));
const promises_1 = __importDefault(require("fs/promises"));
const fast_glob_1 = __importDefault(require("fast-glob"));
const model_1 = require("./kinds/model");
const file_1 = require("../file");
const kinds = __importStar(require("./kinds"));
class ContentFactory {
constructor(project) {
this.project = project;
}
/** Creates `## Article` with nested content */
article(title, content) {
return kinds.ArticleContent.build({ title, content });
}
/** Creates rules list */
rules(list) {
return kinds.RulesContent.build(list);
}
/** Creates tasks list */
tasks(list) {
return kinds.TasksContent.build(list);
}
/** Creates sources links list */
sources(list) {
return kinds.SourcesContent.build(list);
}
/** Creates plain markdown */
plain(payload) {
return kinds.PlainContent.build(payload);
}
attachment(title, payload) {
return kinds.AttachmentContent.build({ title, ...payload, isVirtual: true });
}
async file(title, location) {
const file = await file_1.File.build(location, { cwd: this.project?.cwd });
return kinds.AttachmentContent.build({
title,
content: file.content,
path: file.path,
});
}
/** Reads files by pattern and creates attachments for each file */
async glob(title, pattern) {
const paths = await (0, fast_glob_1.default)(pattern);
const files = await Promise.all(paths.map(async (location) => ({
extension: path_1.default.extname(location),
path: location,
content: await promises_1.default.readFile(location, 'utf8'),
})));
return kinds.GroupContent.build(files.map((file) => kinds.AttachmentContent.build({
title,
extension: file.extension,
content: file.content,
path: file.path,
})));
}
static build(project) {
return new ContentFactory(project);
}
static is(type, content) {
return content instanceof model_1.Content && content.type === type;
}
}
exports.ContentFactory = ContentFactory;
//# sourceMappingURL=factory.js.map