Complete residential site build with Docker Compose & Gitea Actions deployment

This commit is contained in:
CalebLewallen
2026-05-13 17:31:20 -04:00
parent f9c4e13a50
commit 3c22823f72
19354 changed files with 2097331 additions and 0 deletions
+151
View File
@@ -0,0 +1,151 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/*---------------------------------------------------------------------------------------------
* Copyright (c) Red Hat. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
const assert = require("assert");
const yamlSettings_1 = require("../src/yamlSettings");
const serviceSetup_1 = require("./utils/serviceSetup");
const testHelper_1 = require("./utils/testHelper");
describe('Formatter Tests', () => {
let languageHandler;
let yamlSettings;
before(() => {
const languageSettingsSetup = new serviceSetup_1.ServiceSetup().withFormat();
const { languageHandler: langHandler, yamlSettings: settings } = (0, testHelper_1.setupLanguageService)(languageSettingsSetup.languageSettings);
languageHandler = langHandler;
yamlSettings = settings;
});
// Tests for formatter
describe('Formatter', function () {
describe('Test that formatter works with custom tags', function () {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
function parseSetup(content, options = {}) {
const testTextDocument = (0, testHelper_1.setupTextDocument)(content);
yamlSettings.documents = new yamlSettings_1.TextDocumentTestManager();
yamlSettings.documents.set(testTextDocument);
yamlSettings.yamlFormatterSettings = options;
return languageHandler.formatterHandler({
options,
textDocument: testTextDocument,
});
}
it('Formatting works without custom tags', async () => {
const content = 'cwd: test';
const edits = await parseSetup(content);
console.dir({ edits });
assert.notEqual(edits.length, 0);
assert.equal(edits[0].newText, 'cwd: test\n');
});
it('Formatting works with custom tags', async () => {
const content = 'cwd: !Test test';
const edits = await parseSetup(content);
assert.notEqual(edits.length, 0);
assert.equal(edits[0].newText, 'cwd: !Test test\n');
});
it('Formatting wraps text', async () => {
const content = `comments: >
test test test test test test test test test test test test`;
const edits = await parseSetup(content, {
printWidth: 20,
proseWrap: 'always',
});
assert.equal(edits[0].newText, 'comments: >\n test test test\n test test test\n test test test\n test test test\n');
});
it('Formatting handles trailing commas (enabled)', async () => {
const content = `{
key: 'value',
food: 'raisins',
airport: 'YYZ',
lightened_bulb: 'illuminating',
}
`;
const edits = await parseSetup(content, { singleQuote: true });
assert.equal(edits[0].newText, content);
});
it('Formatting handles trailing commas (disabled)', async () => {
const content = `{
key: 'value',
food: 'raisins',
airport: 'YYZ',
lightened_bulb: 'illuminating',
}
`;
const edits = await parseSetup(content, {
singleQuote: true,
trailingComma: false,
});
assert.equal(edits[0].newText, `{
key: 'value',
food: 'raisins',
airport: 'YYZ',
lightened_bulb: 'illuminating'
}
`);
});
it('Formatting uses tabSize', async () => {
const content = `map:
k1: v1
k2: v2
list:
- item1
- item2
`;
const edits = await parseSetup(content, {
tabSize: 5,
});
const expected = `map:
k1: v1
k2: v2
list:
- item1
- item2
`;
assert.equal(edits[0].newText, expected);
});
it('Formatting uses tabWidth', async () => {
const content = `map:
k1: v1
k2: v2
list:
- item1
- item2
`;
const edits = await parseSetup(content, {
tabWidth: 5,
});
const expected = `map:
k1: v1
k2: v2
list:
- item1
- item2
`;
assert.equal(edits[0].newText, expected);
});
it('Formatting uses tabWidth over tabSize', async () => {
const content = `map:
k1: v1
k2: v2
list:
- item1
- item2
`;
const edits = await parseSetup(content, {
tabSize: 3,
tabWidth: 5,
});
const expected = `map:
k1: v1
k2: v2
list:
- item1
- item2
`;
assert.equal(edits[0].newText, expected);
});
});
});
});
//# sourceMappingURL=formatter.test.js.map