* chore: updated todo with translation ideas * feat: first take at the implementation of translations * fix: small addition for the translation feature * feat: support language switching in the editor and preview * feat: better handling of long bodies by not running them through a json envelope * fix: unknown macros have better fallback * feat: api for python to get translations * fix: strip dumb prefix of content in translation * feat: extend meta diff for translations * feat: hook up translations to rebuild-from-disk * feat: generation of the website prefers project language, falling back to canonical language * fix: crashes during rendering * feat: translation validation report * fix: made the translation validation actually work * chore: reorganization of menu * fix: some topics cleanup * chore: updated doc * feat: translations for media * feat: more aligned in UI/UX * feat: edit translations possible * chore: added full multi-language todo * chore: updated todo for clarity * feat: implementation of full multi-linguality * fix: page creation creates pages * fix: flags on every page * fix: better prompt * feat: made MCP server aware of language content * feat: python tools for translations * fix: better fill-in-translations * fix: better prompt for translation. maybe. * fix: losing posts from search due to translation process * fix: translation validation handles in-db content and fill-in of missing translations fixed to flush * fix: faster scanning for infilling of missing translations * chore: updated agent instructions * feat: calendar and tag cloud respect current language now * fix: retries going up * fix: got metadata-diff and rebuild into sync * fix: extended meta-diff for timestamps * fix: made website validation look at translated content, too * fix: multi-lingual search * chore: refactor Editor.tsx into two separate editors * feat: do language detection when no explicit language given --------- Co-authored-by: hugo <hugoms@me.com>
141 lines
5.5 KiB
TypeScript
141 lines
5.5 KiB
TypeScript
import { describe, expect, it } from 'vitest';
|
|
import {
|
|
BDS_PYTHON_API_CONTRACT_V1,
|
|
getPythonApiMethodContract,
|
|
listPythonApiMethodNames,
|
|
} from '../../../src/renderer/python/pythonApiContractV1';
|
|
import { generatePythonApiModuleV1 } from '../../../src/renderer/python/generatePythonApiModuleV1';
|
|
|
|
describe('pythonApiContractV1', () => {
|
|
it('exposes broad stable method names for v1 contract', () => {
|
|
const methodNames = listPythonApiMethodNames();
|
|
|
|
expect(methodNames.length).toBeGreaterThan(40);
|
|
expect(methodNames).toEqual(expect.arrayContaining([
|
|
'projects.getAll',
|
|
'posts.get',
|
|
'posts.getAll',
|
|
'posts.search',
|
|
'media.get',
|
|
'media.search',
|
|
'meta.getProjectMetadata',
|
|
'tags.getAll',
|
|
'scripts.getAll',
|
|
'tasks.getAll',
|
|
'app.getSystemLanguage',
|
|
'sync.getRepoState',
|
|
'sync.commitAll',
|
|
'publish.uploadSite',
|
|
]));
|
|
});
|
|
|
|
it('returns method contract metadata by name', () => {
|
|
expect(getPythonApiMethodContract('posts.get')).toEqual({
|
|
method: 'posts.get',
|
|
description: 'Fetch one post by id.',
|
|
params: [
|
|
{
|
|
name: 'postId',
|
|
type: 'string',
|
|
required: true,
|
|
},
|
|
],
|
|
returns: 'PostData | null',
|
|
});
|
|
});
|
|
|
|
it('documents sync.commitAll contract with required message param', () => {
|
|
expect(getPythonApiMethodContract('sync.commitAll')).toEqual({
|
|
method: 'sync.commitAll',
|
|
description: 'Stage all changes and commit for active project.',
|
|
params: [
|
|
{
|
|
name: 'message',
|
|
type: 'string',
|
|
required: true,
|
|
},
|
|
],
|
|
returns: 'GitActionResult',
|
|
});
|
|
});
|
|
|
|
it('exposes one-shot translation from chat namespace', () => {
|
|
const methodNames = listPythonApiMethodNames();
|
|
const chatMethods = methodNames.filter((m) => m.startsWith('chat.'));
|
|
expect(chatMethods).toEqual(['chat.analyzeMediaImage', 'chat.detectPostLanguage', 'chat.analyzePost', 'chat.translatePost', 'chat.detectMediaLanguage', 'chat.translateMediaMetadata']);
|
|
});
|
|
|
|
it('documents chat.analyzeMediaImage contract with mediaId and language params', () => {
|
|
expect(getPythonApiMethodContract('chat.analyzeMediaImage')).toEqual({
|
|
method: 'chat.analyzeMediaImage',
|
|
description: 'Analyze an image and generate title, alt text, and caption using AI.',
|
|
params: [
|
|
{ name: 'mediaId', type: 'string', required: true },
|
|
{ name: 'language', type: 'string', required: false },
|
|
],
|
|
returns: 'ImageAnalysisResult',
|
|
});
|
|
});
|
|
|
|
it('documents chat.translatePost contract with postId and targetLanguage params', () => {
|
|
expect(getPythonApiMethodContract('chat.translatePost')).toEqual({
|
|
method: 'chat.translatePost',
|
|
description: 'Translate a post into a target language and save it as a translation draft.',
|
|
params: [
|
|
{ name: 'postId', type: 'string', required: true },
|
|
{ name: 'targetLanguage', type: 'string', required: true },
|
|
],
|
|
returns: 'PostTranslationResult',
|
|
});
|
|
});
|
|
|
|
it('contains semantic version metadata for compatibility checks', () => {
|
|
expect(BDS_PYTHON_API_CONTRACT_V1).toMatchObject({
|
|
version: '1.15.0',
|
|
generatedAt: expect.any(String),
|
|
});
|
|
});
|
|
|
|
it('includes canonical data structures for response documentation', () => {
|
|
expect(BDS_PYTHON_API_CONTRACT_V1.dataStructures).toEqual(expect.arrayContaining([
|
|
expect.objectContaining({ name: 'PostData' }),
|
|
expect.objectContaining({ name: 'MediaData' }),
|
|
expect.objectContaining({ name: 'ProjectData' }),
|
|
expect.objectContaining({ name: 'ImageAnalysisResult' }),
|
|
]));
|
|
});
|
|
});
|
|
|
|
describe('generatePythonApiModuleV1', () => {
|
|
it('generates python facade that hides transport details', () => {
|
|
const moduleCode = generatePythonApiModuleV1();
|
|
|
|
expect(moduleCode).toContain('class BdsApiError(Exception):');
|
|
expect(moduleCode).toContain('class ProjectsApi:');
|
|
expect(moduleCode).toContain('class PostsApi:');
|
|
expect(moduleCode).toContain('class MediaApi:');
|
|
expect(moduleCode).toContain('class MetaApi:');
|
|
expect(moduleCode).toContain('class SyncApi:');
|
|
expect(moduleCode).toContain('class PublishApi:');
|
|
expect(moduleCode).toContain('async def get(self, post_id):');
|
|
expect(moduleCode).toContain('async def get_all(self, options=None):');
|
|
expect(moduleCode).toContain('async def search(self, query):');
|
|
expect(moduleCode).toContain('async def get_project_metadata(self):');
|
|
expect(moduleCode).toContain('async def commit_all(self, message):');
|
|
expect(moduleCode).toContain('async def upload_site(self, credentials):');
|
|
expect(moduleCode).toContain('class BdsApi:');
|
|
expect(moduleCode).toContain('bds = BdsApi(_transport)');
|
|
expect(moduleCode).toContain('class ChatApi:');
|
|
expect(moduleCode).toContain('async def analyze_media_image(self, media_id, language=None):');
|
|
expect(moduleCode).toContain('async def detect_post_language(self, title, content):');
|
|
expect(moduleCode).toContain('async def translate_post(self, post_id, target_language):');
|
|
});
|
|
|
|
it('escapes python keyword method names to valid identifiers', () => {
|
|
const moduleCode = generatePythonApiModuleV1();
|
|
|
|
expect(moduleCode).toContain('return await self._transport.call("media.import", { "sourcePath": source_path, "metadata": metadata })');
|
|
expect(moduleCode).toContain('async def import_(self, source_path, metadata=None):');
|
|
expect(moduleCode).not.toContain('async def import(self, source_path, metadata=None):');
|
|
});
|
|
}); |