Update myTemplateGenerator to version 0.0.5. Introduced new configuration options, added support for additional case modifiers using the change-case-all package, and improved the webview for template selection and variable input. Updated package.json and package-lock.json accordingly. Added localization support for configuration settings and enhanced README with usage instructions.

This commit is contained in:
S.Gromov
2025-07-14 23:37:01 +03:00
parent 210ff6ca57
commit a98b1a0464
16 changed files with 1145 additions and 1240 deletions

View File

@@ -3,18 +3,8 @@ import * as assert from 'assert';
// You can import and use all API from the 'vscode' module
// as well as import your extension to test it
import * as vscode from 'vscode';
import {
toPascalCase,
toCamelCase,
toSnakeCase,
toKebabCase,
toScreamingSnakeCase,
toUpperCaseFirst,
toUpperCaseAll,
toLowerCaseAll,
buildVarsObject,
CASE_MODIFIERS
} from '../extension';
import { CASE_MODIFIERS } from '../core/templateUtils';
import { buildVarsObject } from '../core/vars';
suite('Extension Test Suite', () => {
vscode.window.showInformationMessage('Start all tests.');
@@ -28,30 +18,6 @@ suite('Extension Test Suite', () => {
suite('Template Variable Modifiers', () => {
const input = 'my super-name';
test('toPascalCase', () => {
assert.strictEqual(toPascalCase(input), 'MySuperName');
});
test('toCamelCase', () => {
assert.strictEqual(toCamelCase(input), 'mySuperName');
});
test('toSnakeCase', () => {
assert.strictEqual(toSnakeCase(input), 'my_super_name');
});
test('toKebabCase', () => {
assert.strictEqual(toKebabCase(input), 'my-super-name');
});
test('toScreamingSnakeCase', () => {
assert.strictEqual(toScreamingSnakeCase(input), 'MY_SUPER_NAME');
});
test('toUpperCaseFirst', () => {
assert.strictEqual(toUpperCaseFirst(input), 'My super-name');
});
test('toUpperCaseAll', () => {
assert.strictEqual(toUpperCaseAll(input), 'MYSUPERNAME');
});
test('toLowerCaseAll', () => {
assert.strictEqual(toLowerCaseAll(input), 'mysupername');
});
test('CASE_MODIFIERS map covers all', () => {
for (const [mod, fn] of Object.entries(CASE_MODIFIERS)) {
assert.strictEqual(typeof fn(input), 'string');