#7 Dodati su export/import za template, isto tako template za document

This commit is contained in:
2025-02-13 17:55:46 +01:00
parent 54ef0248f5
commit f41997fd59
12 changed files with 229 additions and 6 deletions

View File

@@ -0,0 +1,34 @@
import os
from io import StringIO
from django.core.management import call_command
from django.test import TestCase
from backend.core.models import DocumentTemplate
class DocumentTemplateExportCommandTest(TestCase):
def setUp(self):
self.template_content = """
- segment_type: "title"
content: "Document Title"
- segment_type: "subtitle"
content: "Document Subtitle"
"""
self.template = DocumentTemplate.objects.create(
name="Default Template",
content=self.template_content
)
self.export_file = 'exported_template.yaml'
def tearDown(self):
if os.path.exists(self.export_file):
os.remove(self.export_file)
def test_export_template(self):
out = StringIO()
call_command('export_template', self.export_file, stdout=out)
self.assertIn("Template exported successfully", out.getvalue())
with open(self.export_file, 'r') as f:
content = f.read()
self.assertEqual(content.strip(), self.template_content.strip())

View File

@@ -0,0 +1,31 @@
import os
from io import StringIO
from django.core.management import call_command
from django.test import TestCase
from backend.core.models import DocumentTemplate
class DocumentTemplateImportCommandTest(TestCase):
def setUp(self):
self.yaml_content = """
- segment_type: "title"
content: "Document Title"
- segment_type: "subtitle"
content: "Document Subtitle"
"""
self.yaml_file = 'test_template.yaml'
with open(self.yaml_file, 'w') as f:
f.write(self.yaml_content)
def tearDown(self):
if os.path.exists(self.yaml_file):
os.remove(self.yaml_file)
def test_import_template(self):
out = StringIO()
call_command('import_template', self.yaml_file, stdout=out)
self.assertIn("Template imported successfully", out.getvalue())
template = DocumentTemplate.objects.get(name="Default Template")
self.assertEqual(template.content.strip(), self.yaml_content.strip())