Compare commits
25 Commits
feature/co
...
b0725fb385
| Author | SHA1 | Date | |
|---|---|---|---|
| b0725fb385 | |||
| c77e8c0432 | |||
| 51969141e7 | |||
| b7f50ce30f | |||
| d3d0298ad1 | |||
| 29c1ad1dcf | |||
| 4504e8a2a5 | |||
| 502dd85efb | |||
| 9e6e2b5a03 | |||
| c492b7bda6 | |||
| 0d7e63d3a2 | |||
| 0866e604bc | |||
| 753c00bc45 | |||
| 74d2f15d6a | |||
| 615908e569 | |||
| 55d467ee58 | |||
| 5a1df7345d | |||
| e3c5f6a9d7 | |||
| a26290fc92 | |||
| 08d94a9269 | |||
| 6f8f273344 | |||
| f96226170b | |||
| 0783033c70 | |||
| 35fbfdccec | |||
| 1196d3cdd2 |
@@ -60,7 +60,7 @@ jobs:
|
|||||||
chmod +x /usr/local/bin/yq
|
chmod +x /usr/local/bin/yq
|
||||||
yq --version
|
yq --version
|
||||||
|
|
||||||
- name: Read ${{ matrix.description }} image from deployment (old vs new)
|
- name: Read ${{ matrix.description }} image from deployment
|
||||||
id: img
|
id: img
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ ENV PYTHONDONTWRITEBYTECODE=1
|
|||||||
ENV PYTHONUNBUFFERED=1
|
ENV PYTHONUNBUFFERED=1
|
||||||
USER appuser
|
USER appuser
|
||||||
EXPOSE 8000
|
EXPOSE 8000
|
||||||
RUN rm -rf /app/Dockerfile* \
|
RUN rm -rvf /app/Dockerfile* \
|
||||||
/app/README.md \
|
/app/README.md \
|
||||||
/app/argocd \
|
/app/argocd \
|
||||||
/app/k8s \
|
/app/k8s \
|
||||||
@@ -30,7 +30,8 @@ RUN rm -rf /app/Dockerfile* \
|
|||||||
/app/requirements.txt \
|
/app/requirements.txt \
|
||||||
/app/node_modules \
|
/app/node_modules \
|
||||||
/app/*.json \
|
/app/*.json \
|
||||||
|
/app/scripts \
|
||||||
/app/test_*.py && \
|
/app/test_*.py && \
|
||||||
python3 manage.py collectstatic
|
python3 /app/manage.py collectstatic --noinput
|
||||||
CMD ["gunicorn","--bind","0.0.0.0:8000","--workers","3","VorgabenUI.wsgi:application"]
|
CMD ["gunicorn","--bind","0.0.0.0:8000","--workers","3","VorgabenUI.wsgi:application"]
|
||||||
|
|
||||||
|
|||||||
@@ -540,5 +540,5 @@ digraph {
|
|||||||
Bei Fragen oder Problemen mit Diagrammen:
|
Bei Fragen oder Problemen mit Diagrammen:
|
||||||
1. Code auf https://kroki.io/ testen
|
1. Code auf https://kroki.io/ testen
|
||||||
2. Syntax-Dokumentation des jeweiligen Diagrammtyps konsultieren
|
2. Syntax-Dokumentation des jeweiligen Diagrammtyps konsultieren
|
||||||
3. Diagramm-Cache leeren: `python manage.py clear_diagram_cache`
|
3. (Nur mit Shell-Zugriff auf Kubernetes-Pod möglich): Diagramm-Cache leeren: `python manage.py clear_diagram_cache`
|
||||||
4. Bei technischen Problemen: Information Security Management BIT kontaktieren
|
4. Bei technischen Problemen: Information Security Management BIT kontaktieren
|
||||||
|
|||||||
@@ -127,7 +127,7 @@ USE_TZ = True
|
|||||||
|
|
||||||
STATIC_URL = '/static/'
|
STATIC_URL = '/static/'
|
||||||
#STATIC_ROOT="/home/adebaumann/VorgabenUI/staticfiles/"
|
#STATIC_ROOT="/home/adebaumann/VorgabenUI/staticfiles/"
|
||||||
STATIC_ROOT="/app/staticfiles/"
|
STATIC_ROOT="staticfiles/"
|
||||||
STATICFILES_DIRS= (
|
STATICFILES_DIRS= (
|
||||||
os.path.join(BASE_DIR,"static"),
|
os.path.join(BASE_DIR,"static"),
|
||||||
)
|
)
|
||||||
@@ -151,6 +151,24 @@ LOGIN_URL = 'login'
|
|||||||
LOGIN_REDIRECT_URL = '/'
|
LOGIN_REDIRECT_URL = '/'
|
||||||
LOGOUT_REDIRECT_URL = 'login'
|
LOGOUT_REDIRECT_URL = 'login'
|
||||||
|
|
||||||
|
AUTH_PASSWORD_VALIDATORS = [
|
||||||
|
{
|
||||||
|
"NAME": "django.contrib.auth.password_validation.UserAttributeSimilarityValidator",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"NAME": "django.contrib.auth.password_validation.MinimumLengthValidator",
|
||||||
|
"OPTIONS": {
|
||||||
|
"min_length": 12,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"NAME": "django.contrib.auth.password_validation.CommonPasswordValidator",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"NAME": "django.contrib.auth.password_validation.NumericPasswordValidator",
|
||||||
|
},
|
||||||
|
]
|
||||||
|
|
||||||
#LOGGING = {
|
#LOGGING = {
|
||||||
# "version": 1,
|
# "version": 1,
|
||||||
# "handlers" :{
|
# "handlers" :{
|
||||||
|
|||||||
@@ -18,14 +18,14 @@ spec:
|
|||||||
fsGroupChangePolicy: "OnRootMismatch"
|
fsGroupChangePolicy: "OnRootMismatch"
|
||||||
initContainers:
|
initContainers:
|
||||||
- name: loader
|
- name: loader
|
||||||
image: git.baumann.gr/adebaumann/vui-data-loader:0.10
|
image: git.baumann.gr/adebaumann/vui-data-loader:0.11
|
||||||
command: [ "sh","-c","cp -n preload/preload.sqlite3 /data/db.sqlite3; chown -R 999:999 /data; ls -la /data; sleep 10; exit 0" ]
|
command: [ "sh","-c","cp -n preload/preload.sqlite3 /data/db.sqlite3; chown -R 999:999 /data; ls -la /data; sleep 10; exit 0" ]
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: data
|
- name: data
|
||||||
mountPath: /data
|
mountPath: /data
|
||||||
containers:
|
containers:
|
||||||
- name: web
|
- name: web
|
||||||
image: git.baumann.gr/adebaumann/vui:0.963
|
image: git.baumann.gr/adebaumann/vui:0.974
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8000
|
- containerPort: 8000
|
||||||
|
|||||||
Binary file not shown.
BIN
data/db.sqlite3
BIN
data/db.sqlite3
Binary file not shown.
@@ -94,9 +94,17 @@ class EinleitungInline(NestedStackedInline):
|
|||||||
|
|
||||||
class VorgabeForm(forms.ModelForm):
|
class VorgabeForm(forms.ModelForm):
|
||||||
referenzen = TreeNodeMultipleChoiceField(queryset=Referenz.objects.all(), required=False)
|
referenzen = TreeNodeMultipleChoiceField(queryset=Referenz.objects.all(), required=False)
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
model = Vorgabe
|
model = Vorgabe
|
||||||
fields = '__all__'
|
fields = '__all__'
|
||||||
|
|
||||||
|
def clean_thema(self):
|
||||||
|
"""Validate that thema is provided."""
|
||||||
|
thema = self.cleaned_data.get('thema')
|
||||||
|
if not thema:
|
||||||
|
raise forms.ValidationError('Thema ist ein Pflichtfeld. Bitte wählen Sie ein Thema aus.')
|
||||||
|
return thema
|
||||||
|
|
||||||
class VorgabeInline(SortableInlineAdminMixin, NestedStackedInline):
|
class VorgabeInline(SortableInlineAdminMixin, NestedStackedInline):
|
||||||
model = Vorgabe
|
model = Vorgabe
|
||||||
|
|||||||
39
dokumente/management/commands/export_xml.py
Normal file
39
dokumente/management/commands/export_xml.py
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
from django.core.management.base import BaseCommand
|
||||||
|
import xml.etree.ElementTree as ET
|
||||||
|
from dokumente.models import Dokument
|
||||||
|
from dokumente.utils import build_dokument_xml_element, prettify_xml
|
||||||
|
|
||||||
|
|
||||||
|
class Command(BaseCommand):
|
||||||
|
help = 'Export all dokumente as XML'
|
||||||
|
|
||||||
|
def add_arguments(self, parser):
|
||||||
|
parser.add_argument(
|
||||||
|
'--output',
|
||||||
|
type=str,
|
||||||
|
help='Output file path (default: stdout)',
|
||||||
|
)
|
||||||
|
|
||||||
|
def handle(self, *args, **options):
|
||||||
|
dokumente = Dokument.objects.filter(aktiv=True).prefetch_related(
|
||||||
|
'autoren', 'pruefende', 'vorgaben__thema',
|
||||||
|
'vorgaben__referenzen', 'vorgaben__stichworte',
|
||||||
|
'vorgaben__checklistenfragen', 'vorgaben__vorgabekurztext_set',
|
||||||
|
'vorgaben__vorgabelangtext_set', 'geltungsbereich_set',
|
||||||
|
'einleitung_set', 'changelog__autoren'
|
||||||
|
).order_by('nummer')
|
||||||
|
|
||||||
|
root = ET.Element('Vorgabendokumente')
|
||||||
|
|
||||||
|
for dokument in dokumente:
|
||||||
|
build_dokument_xml_element(dokument, root)
|
||||||
|
|
||||||
|
xml_str = ET.tostring(root, encoding='unicode', method='xml')
|
||||||
|
xml_output = prettify_xml(xml_str)
|
||||||
|
|
||||||
|
if options['output']:
|
||||||
|
with open(options['output'], 'w', encoding='utf-8') as f:
|
||||||
|
f.write(xml_output)
|
||||||
|
self.stdout.write(self.style.SUCCESS(f'XML exported to {options["output"]}'))
|
||||||
|
else:
|
||||||
|
self.stdout.write(xml_output)
|
||||||
@@ -71,6 +71,7 @@ class Command(BaseCommand):
|
|||||||
"name": name,
|
"name": name,
|
||||||
"gueltigkeit_von": options["gueltigkeit_von"],
|
"gueltigkeit_von": options["gueltigkeit_von"],
|
||||||
"gueltigkeit_bis": options["gueltigkeit_bis"],
|
"gueltigkeit_bis": options["gueltigkeit_bis"],
|
||||||
|
"aktiv":False,
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
if created:
|
if created:
|
||||||
@@ -319,6 +320,7 @@ class Command(BaseCommand):
|
|||||||
thema=thema,
|
thema=thema,
|
||||||
titel=v["titel"],
|
titel=v["titel"],
|
||||||
gueltigkeit_von=timezone.now().date(),
|
gueltigkeit_von=timezone.now().date(),
|
||||||
|
order=0,
|
||||||
)
|
)
|
||||||
|
|
||||||
# Stichworte
|
# Stichworte
|
||||||
|
|||||||
@@ -54,6 +54,34 @@ class Dokument(models.Model):
|
|||||||
def __str__(self):
|
def __str__(self):
|
||||||
return f"{self.nummer} – {self.name}"
|
return f"{self.nummer} – {self.name}"
|
||||||
|
|
||||||
|
@property
|
||||||
|
def dates(self):
|
||||||
|
"""
|
||||||
|
Returns an array of unique, chronologically sorted dates representing
|
||||||
|
state-change dates from all Vorgaben in this document.
|
||||||
|
|
||||||
|
These are dates where Vorgaben become active (gueltigkeit_von) or change state
|
||||||
|
(the day after gueltigkeit_bis). The very last date in the list is excluded
|
||||||
|
as it has no relevance (nothing changes after it).
|
||||||
|
"""
|
||||||
|
dates_set = set()
|
||||||
|
|
||||||
|
# Get all vorgaben for this document
|
||||||
|
for vorgabe in self.vorgaben.all():
|
||||||
|
# Add gueltigkeit_von (when vorgabe becomes active)
|
||||||
|
if vorgabe.gueltigkeit_von:
|
||||||
|
dates_set.add(vorgabe.gueltigkeit_von)
|
||||||
|
|
||||||
|
# Add the day after gueltigkeit_bis (when vorgabe expires/changes state)
|
||||||
|
# Only if gueltigkeit_bis is defined (not None)
|
||||||
|
if vorgabe.gueltigkeit_bis:
|
||||||
|
dates_set.add(vorgabe.gueltigkeit_bis + datetime.timedelta(days=1))
|
||||||
|
|
||||||
|
# Return sorted unique dates from oldest to newest, excluding the last date
|
||||||
|
# (but only if there are multiple dates; single dates are kept)
|
||||||
|
sorted_dates = sorted(list(dates_set))
|
||||||
|
return sorted_dates[:-1] if len(sorted_dates) > 1 else sorted_dates
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
verbose_name_plural="Dokumente"
|
verbose_name_plural="Dokumente"
|
||||||
verbose_name="Dokument"
|
verbose_name="Dokument"
|
||||||
@@ -141,6 +169,12 @@ class Vorgabe(models.Model):
|
|||||||
"""
|
"""
|
||||||
from django.core.exceptions import ValidationError
|
from django.core.exceptions import ValidationError
|
||||||
|
|
||||||
|
# Check that thema is provided
|
||||||
|
if not self.thema_id:
|
||||||
|
raise ValidationError({
|
||||||
|
'thema': 'Thema ist ein Pflichtfeld. Bitte wählen Sie ein Thema aus.'
|
||||||
|
})
|
||||||
|
|
||||||
# Check for conflicts with existing Vorgaben
|
# Check for conflicts with existing Vorgaben
|
||||||
conflicts = self.find_conflicts()
|
conflicts = self.find_conflicts()
|
||||||
if conflicts:
|
if conflicts:
|
||||||
|
|||||||
67
dokumente/templates/standards/all_comments.html
Normal file
67
dokumente/templates/standards/all_comments.html
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
{% extends "base.html" %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<h1>Alle Kommentare</h1>
|
||||||
|
|
||||||
|
{% if total_comments == 0 %}
|
||||||
|
<div class="alert alert-info">
|
||||||
|
<p>Es gibt noch keine Kommentare zu Vorgaben.</p>
|
||||||
|
<p><a href="{% url 'standard_list' %}">Zu den Standards</a></p>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
|
<p class="text-muted">Insgesamt {{ total_comments }} Kommentar{{ total_comments|pluralize:"e" }}</p>
|
||||||
|
|
||||||
|
{% for dokument, comments in comments_by_document.items %}
|
||||||
|
<div class="panel panel-default" style="margin-top: 2rem;">
|
||||||
|
<div class="panel-heading">
|
||||||
|
<h2 style="margin: 0;">
|
||||||
|
<a href="{% url 'standard_detail' nummer=dokument.nummer %}">
|
||||||
|
{{ dokument.nummer }} – {{ dokument.name }}
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
<p style="margin: 0; color: #666; font-size: 0.9rem;">
|
||||||
|
{{ comments|length }} Kommentar{{ comments|length|pluralize:"e" }}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="panel-body">
|
||||||
|
<div class="list-group">
|
||||||
|
{% for comment in comments %}
|
||||||
|
<div class="list-group-item" style="border-left: 3px solid #007bff; padding: 1rem;">
|
||||||
|
<div style="display: flex; justify-content: space-between; align-items: flex-start;">
|
||||||
|
<div style="flex: 1;">
|
||||||
|
<h4 style="margin: 0 0 0.5rem 0;">
|
||||||
|
<a href="{% url 'standard_detail' nummer=comment.vorgabe.dokument.nummer %}#{{ comment.vorgabe.Vorgabennummer }}">
|
||||||
|
{{ comment.vorgabe.Vorgabennummer }}
|
||||||
|
</a> {{ comment.vorgabe.titel }}
|
||||||
|
</h4>
|
||||||
|
<p style="margin: 0 0 0.75rem 0; color: #666; font-size: 0.9rem;">
|
||||||
|
<strong>Benutzer:</strong> {{ comment.user.first_name }} {{ comment.user.last_name }}<br>
|
||||||
|
<strong>Erstellt:</strong> {{ comment.created_at|date:"d.m.Y H:i" }}
|
||||||
|
{% if comment.updated_at != comment.created_at %}
|
||||||
|
<br>
|
||||||
|
<strong>Bearbeitet:</strong> {{ comment.updated_at|date:"d.m.Y H:i" }}
|
||||||
|
{% endif %}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<form method="POST" action="{% url 'delete_vorgabe_comment' comment.id %}"
|
||||||
|
style="display: inline; margin-left: 1rem;"
|
||||||
|
onsubmit="return confirm('Sind Sie sicher, dass Sie diesen Kommentar löschen möchten?');">
|
||||||
|
{% csrf_token %}
|
||||||
|
<button type="submit" class="btn btn-sm btn-danger">Löschen</button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<div style="background: #f8f9fa; padding: 0.75rem; border-radius: 4px; margin-top: 0.5rem; white-space: pre-wrap; word-wrap: break-word;">
|
||||||
|
{{ comment.text }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<div style="margin-top: 2rem; padding-top: 2rem; border-top: 1px solid #ddd;">
|
||||||
|
<a href="{% url 'standard_list' %}" class="btn btn-default">Zu den Standards</a>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
||||||
@@ -16,9 +16,32 @@
|
|||||||
|
|
||||||
{% if standard.history == True %}
|
{% if standard.history == True %}
|
||||||
<div class="alert alert-warning" role="alert">
|
<div class="alert alert-warning" role="alert">
|
||||||
|
{% if standard.is_future %}
|
||||||
|
<strong>Zukünftige Version vom {{ standard.check_date }}</strong>
|
||||||
|
{% else %}
|
||||||
<strong>Historische Version vom {{ standard.check_date }}</strong>
|
<strong>Historische Version vom {{ standard.check_date }}</strong>
|
||||||
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
<!-- History Dates Dropdown -->
|
||||||
|
{% if standard.dates %}
|
||||||
|
<div class="mb-3">
|
||||||
|
<div class="dropdown">
|
||||||
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown" style="text-decoration: none;">
|
||||||
|
📅 Historische Versionen
|
||||||
|
</a>
|
||||||
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="/dokumente/{{ standard.nummer }}/">Aktuelle Version</a></li>
|
||||||
|
<li class="divider"></li>
|
||||||
|
{% for date in standard.dates %}
|
||||||
|
<li><a href="/dokumente/{{ standard.nummer }}/history/{{ date|date:'Y-m-d' }}/">{{ date|date:'d.m.Y' }}</a></li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
<!-- Einleitung -->
|
<!-- Einleitung -->
|
||||||
{% if standard.einleitung_html %}
|
{% if standard.einleitung_html %}
|
||||||
<div class="row mb-4">
|
<div class="row mb-4">
|
||||||
@@ -170,23 +193,28 @@
|
|||||||
<h2>Metadaten</h2>
|
<h2>Metadaten</h2>
|
||||||
<div class="row mb-4">
|
<div class="row mb-4">
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<dl class="row">
|
<dl class="row">
|
||||||
<dt class="col-sm-3">Autoren:</dt>
|
<dt class="col-sm-3">Autoren:</dt>
|
||||||
<dd class="col-sm-9">{{ standard.autoren.all|join:", " }}</dd>
|
<dd class="col-sm-9">{{ standard.autoren.all|join:", " }}</dd>
|
||||||
|
|
||||||
<dt class="col-sm-3">Prüfende:</dt>
|
<dt class="col-sm-3">Prüfende:</dt>
|
||||||
<dd class="col-sm-9">{{ standard.pruefende.all|join:", " }}</dd>
|
<dd class="col-sm-9">{{ standard.pruefende.all|join:", " }}</dd>
|
||||||
|
|
||||||
<dt class="col-sm-3">Gültigkeit:</dt>
|
<dt class="col-sm-3">Gültigkeit:</dt>
|
||||||
<dd class="col-sm-9">{{ standard.gueltigkeit_von }} bis {{ standard.gueltigkeit_bis|default_if_none:"auf weiteres" }}</dd>
|
<dd class="col-sm-9">{{ standard.gueltigkeit_von }} bis {{ standard.gueltigkeit_bis|default_if_none:"auf weiteres" }}</dd>
|
||||||
</dl>
|
</dl>
|
||||||
<p>
|
<p>
|
||||||
<a href="{% url 'standard_json' standard.nummer %}"
|
<a href="{% url 'standard_json' standard.nummer %}"
|
||||||
class="btn btn-secondary icon icon--before icon--download"
|
class="btn btn-secondary icon icon--before icon--download"
|
||||||
download="{{ standard.nummer }}.json">
|
download="{{ standard.nummer }}.json">
|
||||||
JSON herunterladen
|
JSON herunterladen
|
||||||
</a>
|
</a>
|
||||||
</p>
|
<a href="{% url 'standard_xml' standard.nummer %}"
|
||||||
|
class="btn btn-secondary icon icon--before icon--download"
|
||||||
|
download="{{ standard.nummer }}.xml">
|
||||||
|
XML herunterladen
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -32,7 +32,7 @@
|
|||||||
<h4 style="margin: 0 0 0.5rem 0;">
|
<h4 style="margin: 0 0 0.5rem 0;">
|
||||||
<a href="{% url 'standard_detail' nummer=comment.vorgabe.dokument.nummer %}#{{ comment.vorgabe.Vorgabennummer }}">
|
<a href="{% url 'standard_detail' nummer=comment.vorgabe.dokument.nummer %}#{{ comment.vorgabe.Vorgabennummer }}">
|
||||||
{{ comment.vorgabe.Vorgabennummer }}
|
{{ comment.vorgabe.Vorgabennummer }}
|
||||||
</a>
|
</a> {{ comment.vorgabe.titel }}
|
||||||
</h4>
|
</h4>
|
||||||
<p style="margin: 0 0 0.75rem 0; color: #666; font-size: 0.9rem;">
|
<p style="margin: 0 0 0.75rem 0; color: #666; font-size: 0.9rem;">
|
||||||
<strong>Erstellt:</strong> {{ comment.created_at|date:"d.m.Y H:i" }}
|
<strong>Erstellt:</strong> {{ comment.created_at|date:"d.m.Y H:i" }}
|
||||||
|
|||||||
960
dokumente/test_import_command.py
Normal file
960
dokumente/test_import_command.py
Normal file
@@ -0,0 +1,960 @@
|
|||||||
|
"""
|
||||||
|
Tests for the import-document management command.
|
||||||
|
|
||||||
|
This test suite covers:
|
||||||
|
- Basic import functionality
|
||||||
|
- Dry-run mode
|
||||||
|
- Purge functionality
|
||||||
|
- Error handling (missing file, dokumententyp, thema, abschnitttyp)
|
||||||
|
- Context switching (einleitung → geltungsbereich → vorgabe)
|
||||||
|
- Header normalization
|
||||||
|
- Vorgaben with Kurztext, Langtext, Stichworte, Checklistenfragen
|
||||||
|
- Edge cases and malformed input
|
||||||
|
"""
|
||||||
|
|
||||||
|
import os
|
||||||
|
import tempfile
|
||||||
|
from io import StringIO
|
||||||
|
from pathlib import Path
|
||||||
|
from django.test import TestCase
|
||||||
|
from django.core.management import call_command
|
||||||
|
from django.core.management.base import CommandError
|
||||||
|
from dokumente.models import (
|
||||||
|
Dokumententyp,
|
||||||
|
Dokument,
|
||||||
|
Thema,
|
||||||
|
Vorgabe,
|
||||||
|
VorgabeKurztext,
|
||||||
|
VorgabeLangtext,
|
||||||
|
Geltungsbereich,
|
||||||
|
Einleitung,
|
||||||
|
Checklistenfrage,
|
||||||
|
)
|
||||||
|
from abschnitte.models import AbschnittTyp
|
||||||
|
from stichworte.models import Stichwort
|
||||||
|
|
||||||
|
|
||||||
|
class ImportDocumentCommandTestCase(TestCase):
|
||||||
|
"""Test cases for the import-document management command"""
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
"""Set up test fixtures"""
|
||||||
|
# Create required Dokumententyp
|
||||||
|
self.dokumententyp = Dokumententyp.objects.create(
|
||||||
|
name="IT-Sicherheit",
|
||||||
|
verantwortliche_ve="TEST-VE"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Create required AbschnittTyp instances
|
||||||
|
self.text_typ = AbschnittTyp.objects.create(abschnitttyp="text")
|
||||||
|
self.liste_geordnet_typ = AbschnittTyp.objects.create(
|
||||||
|
abschnitttyp="liste geordnet"
|
||||||
|
)
|
||||||
|
self.liste_ungeordnet_typ = AbschnittTyp.objects.create(
|
||||||
|
abschnitttyp="liste ungeordnet"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Create test Themen
|
||||||
|
self.thema_organisation = Thema.objects.create(
|
||||||
|
name="Organisation",
|
||||||
|
erklaerung="Organisatorische Anforderungen"
|
||||||
|
)
|
||||||
|
self.thema_technik = Thema.objects.create(
|
||||||
|
name="Technik",
|
||||||
|
erklaerung="Technische Anforderungen"
|
||||||
|
)
|
||||||
|
# Additional Themen for r009.txt example
|
||||||
|
self.thema_informationen = Thema.objects.create(
|
||||||
|
name="Informationen",
|
||||||
|
erklaerung="Informationssicherheit"
|
||||||
|
)
|
||||||
|
self.thema_systeme = Thema.objects.create(
|
||||||
|
name="Systeme",
|
||||||
|
erklaerung="Systemanforderungen"
|
||||||
|
)
|
||||||
|
self.thema_anwendungen = Thema.objects.create(
|
||||||
|
name="Anwendungen",
|
||||||
|
erklaerung="Anwendungsanforderungen"
|
||||||
|
)
|
||||||
|
self.thema_zonen = Thema.objects.create(
|
||||||
|
name="Zonen",
|
||||||
|
erklaerung="Zonenanforderungen"
|
||||||
|
)
|
||||||
|
|
||||||
|
def create_test_file(self, content):
|
||||||
|
"""Helper to create a temporary test file with given content"""
|
||||||
|
fd, path = tempfile.mkstemp(suffix=".txt", text=True)
|
||||||
|
with os.fdopen(fd, 'w', encoding='utf-8') as f:
|
||||||
|
f.write(content)
|
||||||
|
return path
|
||||||
|
|
||||||
|
def test_basic_import_creates_document(self):
|
||||||
|
"""Test that basic import creates a document"""
|
||||||
|
test_content = """>>>Einleitung
|
||||||
|
>>>text
|
||||||
|
This is the introduction.
|
||||||
|
|
||||||
|
>>>geltungsbereich
|
||||||
|
>>>text
|
||||||
|
This is the scope.
|
||||||
|
|
||||||
|
>>>Vorgabe Organisation
|
||||||
|
>>>Nummer 1
|
||||||
|
>>>Titel
|
||||||
|
Test Requirement
|
||||||
|
>>>Kurztext
|
||||||
|
>>>Text
|
||||||
|
Short description.
|
||||||
|
>>>Langtext
|
||||||
|
>>>Text
|
||||||
|
Long description.
|
||||||
|
"""
|
||||||
|
test_file = self.create_test_file(test_content)
|
||||||
|
|
||||||
|
try:
|
||||||
|
out = StringIO()
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
test_file,
|
||||||
|
'--nummer', 'TEST-001',
|
||||||
|
'--name', 'Test Document',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit',
|
||||||
|
stdout=out
|
||||||
|
)
|
||||||
|
|
||||||
|
# Check document was created
|
||||||
|
dokument = Dokument.objects.get(nummer='TEST-001')
|
||||||
|
self.assertEqual(dokument.name, 'Test Document')
|
||||||
|
self.assertEqual(dokument.dokumententyp, self.dokumententyp)
|
||||||
|
|
||||||
|
# Check output message
|
||||||
|
output = out.getvalue()
|
||||||
|
self.assertIn('Created Document TEST-001', output)
|
||||||
|
self.assertIn('Imported document TEST-001', output)
|
||||||
|
|
||||||
|
finally:
|
||||||
|
os.unlink(test_file)
|
||||||
|
|
||||||
|
def test_import_creates_einleitung(self):
|
||||||
|
"""Test that Einleitung sections are created"""
|
||||||
|
test_content = """>>>Einleitung
|
||||||
|
>>>text
|
||||||
|
This is the introduction text.
|
||||||
|
|
||||||
|
>>>geltungsbereich
|
||||||
|
>>>text
|
||||||
|
Scope text.
|
||||||
|
"""
|
||||||
|
test_file = self.create_test_file(test_content)
|
||||||
|
|
||||||
|
try:
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
test_file,
|
||||||
|
'--nummer', 'TEST-002',
|
||||||
|
'--name', 'Test Document 2',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit'
|
||||||
|
)
|
||||||
|
|
||||||
|
dokument = Dokument.objects.get(nummer='TEST-002')
|
||||||
|
einleitung = Einleitung.objects.filter(einleitung=dokument)
|
||||||
|
self.assertEqual(einleitung.count(), 1)
|
||||||
|
self.assertEqual(einleitung.first().inhalt, 'This is the introduction text.')
|
||||||
|
self.assertEqual(einleitung.first().abschnitttyp, self.text_typ)
|
||||||
|
|
||||||
|
finally:
|
||||||
|
os.unlink(test_file)
|
||||||
|
|
||||||
|
def test_import_creates_geltungsbereich(self):
|
||||||
|
"""Test that Geltungsbereich sections are created"""
|
||||||
|
test_content = """>>>geltungsbereich
|
||||||
|
>>>text
|
||||||
|
This standard applies to all servers.
|
||||||
|
"""
|
||||||
|
test_file = self.create_test_file(test_content)
|
||||||
|
|
||||||
|
try:
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
test_file,
|
||||||
|
'--nummer', 'TEST-003',
|
||||||
|
'--name', 'Test Document 3',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit'
|
||||||
|
)
|
||||||
|
|
||||||
|
dokument = Dokument.objects.get(nummer='TEST-003')
|
||||||
|
geltungsbereich = Geltungsbereich.objects.filter(geltungsbereich=dokument)
|
||||||
|
self.assertEqual(geltungsbereich.count(), 1)
|
||||||
|
self.assertEqual(
|
||||||
|
geltungsbereich.first().inhalt,
|
||||||
|
'This standard applies to all servers.'
|
||||||
|
)
|
||||||
|
self.assertEqual(geltungsbereich.first().abschnitttyp, self.text_typ)
|
||||||
|
|
||||||
|
finally:
|
||||||
|
os.unlink(test_file)
|
||||||
|
|
||||||
|
def test_import_creates_vorgabe_with_all_fields(self):
|
||||||
|
"""Test creating a Vorgabe with all fields"""
|
||||||
|
test_content = """>>>Vorgabe Organisation
|
||||||
|
>>>Nummer 1
|
||||||
|
>>>Titel
|
||||||
|
Complete Requirement
|
||||||
|
>>>Kurztext
|
||||||
|
>>>Text
|
||||||
|
Short text here.
|
||||||
|
>>>Langtext
|
||||||
|
>>>Text
|
||||||
|
Long text here.
|
||||||
|
>>>Stichworte
|
||||||
|
Testing, Management, Security
|
||||||
|
>>>Checkliste
|
||||||
|
Is the requirement met?
|
||||||
|
Has documentation been provided?
|
||||||
|
"""
|
||||||
|
test_file = self.create_test_file(test_content)
|
||||||
|
|
||||||
|
try:
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
test_file,
|
||||||
|
'--nummer', 'TEST-004',
|
||||||
|
'--name', 'Test Document 4',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit'
|
||||||
|
)
|
||||||
|
|
||||||
|
dokument = Dokument.objects.get(nummer='TEST-004')
|
||||||
|
vorgabe = Vorgabe.objects.get(dokument=dokument, nummer=1)
|
||||||
|
|
||||||
|
# Check basic fields
|
||||||
|
self.assertEqual(vorgabe.titel, 'Complete Requirement')
|
||||||
|
self.assertEqual(vorgabe.thema, self.thema_organisation)
|
||||||
|
|
||||||
|
# Check Kurztext
|
||||||
|
kurztext = VorgabeKurztext.objects.filter(abschnitt=vorgabe)
|
||||||
|
self.assertEqual(kurztext.count(), 1)
|
||||||
|
self.assertEqual(kurztext.first().inhalt, 'Short text here.')
|
||||||
|
|
||||||
|
# Check Langtext
|
||||||
|
langtext = VorgabeLangtext.objects.filter(abschnitt=vorgabe)
|
||||||
|
self.assertEqual(langtext.count(), 1)
|
||||||
|
self.assertEqual(langtext.first().inhalt, 'Long text here.')
|
||||||
|
|
||||||
|
# Check Stichworte
|
||||||
|
stichworte = vorgabe.stichworte.all()
|
||||||
|
self.assertEqual(stichworte.count(), 3)
|
||||||
|
stichwort_names = {s.stichwort for s in stichworte}
|
||||||
|
self.assertEqual(stichwort_names, {'Testing', 'Management', 'Security'})
|
||||||
|
|
||||||
|
# Check Checklistenfragen
|
||||||
|
fragen = Checklistenfrage.objects.filter(vorgabe=vorgabe)
|
||||||
|
self.assertEqual(fragen.count(), 2)
|
||||||
|
frage_texts = {f.frage for f in fragen}
|
||||||
|
self.assertEqual(frage_texts, {
|
||||||
|
'Is the requirement met?',
|
||||||
|
'Has documentation been provided?'
|
||||||
|
})
|
||||||
|
|
||||||
|
finally:
|
||||||
|
os.unlink(test_file)
|
||||||
|
|
||||||
|
def test_import_multiple_vorgaben(self):
|
||||||
|
"""Test importing multiple Vorgaben"""
|
||||||
|
test_content = """>>>Vorgabe Organisation
|
||||||
|
>>>Nummer 1
|
||||||
|
>>>Titel
|
||||||
|
First Requirement
|
||||||
|
>>>Kurztext
|
||||||
|
>>>Text
|
||||||
|
First requirement text.
|
||||||
|
|
||||||
|
>>>Vorgabe Technik
|
||||||
|
>>>Nummer 2
|
||||||
|
>>>Titel
|
||||||
|
Second Requirement
|
||||||
|
>>>Kurztext
|
||||||
|
>>>Text
|
||||||
|
Second requirement text.
|
||||||
|
|
||||||
|
>>>Vorgabe Organisation
|
||||||
|
>>>Nummer 3
|
||||||
|
>>>Titel
|
||||||
|
Third Requirement
|
||||||
|
>>>Kurztext
|
||||||
|
>>>Text
|
||||||
|
Third requirement text.
|
||||||
|
"""
|
||||||
|
test_file = self.create_test_file(test_content)
|
||||||
|
|
||||||
|
try:
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
test_file,
|
||||||
|
'--nummer', 'TEST-005',
|
||||||
|
'--name', 'Test Document 5',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit'
|
||||||
|
)
|
||||||
|
|
||||||
|
dokument = Dokument.objects.get(nummer='TEST-005')
|
||||||
|
vorgaben = Vorgabe.objects.filter(dokument=dokument).order_by('nummer')
|
||||||
|
|
||||||
|
self.assertEqual(vorgaben.count(), 3)
|
||||||
|
self.assertEqual(vorgaben[0].nummer, 1)
|
||||||
|
self.assertEqual(vorgaben[0].thema, self.thema_organisation)
|
||||||
|
self.assertEqual(vorgaben[1].nummer, 2)
|
||||||
|
self.assertEqual(vorgaben[1].thema, self.thema_technik)
|
||||||
|
self.assertEqual(vorgaben[2].nummer, 3)
|
||||||
|
self.assertEqual(vorgaben[2].thema, self.thema_organisation)
|
||||||
|
|
||||||
|
finally:
|
||||||
|
os.unlink(test_file)
|
||||||
|
|
||||||
|
def test_dry_run_creates_no_data(self):
|
||||||
|
"""Test that dry-run mode creates no database records"""
|
||||||
|
test_content = """>>>Einleitung
|
||||||
|
>>>text
|
||||||
|
Introduction text.
|
||||||
|
|
||||||
|
>>>Vorgabe Organisation
|
||||||
|
>>>Nummer 1
|
||||||
|
>>>Titel
|
||||||
|
Test Requirement
|
||||||
|
>>>Kurztext
|
||||||
|
>>>Text
|
||||||
|
Short text.
|
||||||
|
"""
|
||||||
|
test_file = self.create_test_file(test_content)
|
||||||
|
|
||||||
|
try:
|
||||||
|
out = StringIO()
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
test_file,
|
||||||
|
'--nummer', 'TEST-DRY',
|
||||||
|
'--name', 'Dry Run Test',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit',
|
||||||
|
'--dry-run',
|
||||||
|
stdout=out
|
||||||
|
)
|
||||||
|
|
||||||
|
# Document is created (for counting purposes) but not saved
|
||||||
|
output = out.getvalue()
|
||||||
|
self.assertIn('Dry run: no database changes will be made', output)
|
||||||
|
self.assertIn('Dry run complete', output)
|
||||||
|
|
||||||
|
# Check that Einleitung and Vorgabe were NOT created
|
||||||
|
dokument = Dokument.objects.get(nummer='TEST-DRY')
|
||||||
|
self.assertEqual(Einleitung.objects.filter(einleitung=dokument).count(), 0)
|
||||||
|
self.assertEqual(Vorgabe.objects.filter(dokument=dokument).count(), 0)
|
||||||
|
|
||||||
|
finally:
|
||||||
|
os.unlink(test_file)
|
||||||
|
|
||||||
|
def test_dry_run_verbose_shows_details(self):
|
||||||
|
"""Test that dry-run with verbose shows detailed output"""
|
||||||
|
test_content = """>>>Einleitung
|
||||||
|
>>>text
|
||||||
|
Introduction.
|
||||||
|
|
||||||
|
>>>Vorgabe Organisation
|
||||||
|
>>>Nummer 1
|
||||||
|
>>>Titel
|
||||||
|
Test
|
||||||
|
>>>Kurztext
|
||||||
|
>>>Text
|
||||||
|
Short.
|
||||||
|
>>>Langtext
|
||||||
|
>>>Text
|
||||||
|
Long.
|
||||||
|
>>>Stichworte
|
||||||
|
Keyword1, Keyword2
|
||||||
|
>>>Checkliste
|
||||||
|
Question 1?
|
||||||
|
Question 2?
|
||||||
|
"""
|
||||||
|
test_file = self.create_test_file(test_content)
|
||||||
|
|
||||||
|
try:
|
||||||
|
out = StringIO()
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
test_file,
|
||||||
|
'--nummer', 'TEST-VERBOSE',
|
||||||
|
'--name', 'Verbose Test',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit',
|
||||||
|
'--dry-run',
|
||||||
|
'--verbose',
|
||||||
|
stdout=out
|
||||||
|
)
|
||||||
|
|
||||||
|
output = out.getvalue()
|
||||||
|
self.assertIn('[DRY RUN] Einleitung Abschnitt', output)
|
||||||
|
self.assertIn('[DRY RUN] Would create Vorgabe 1', output)
|
||||||
|
self.assertIn('Stichworte: Keyword1, Keyword2', output)
|
||||||
|
self.assertIn('Checkliste: Question 1?', output)
|
||||||
|
self.assertIn('Checkliste: Question 2?', output)
|
||||||
|
self.assertIn('Kurztext', output)
|
||||||
|
self.assertIn('Langtext', output)
|
||||||
|
|
||||||
|
finally:
|
||||||
|
os.unlink(test_file)
|
||||||
|
|
||||||
|
def test_purge_deletes_existing_content(self):
|
||||||
|
"""Test that --purge deletes existing content before import"""
|
||||||
|
test_content = """>>>Vorgabe Organisation
|
||||||
|
>>>Nummer 1
|
||||||
|
>>>Titel
|
||||||
|
New Requirement
|
||||||
|
>>>Kurztext
|
||||||
|
>>>Text
|
||||||
|
New text.
|
||||||
|
"""
|
||||||
|
test_file = self.create_test_file(test_content)
|
||||||
|
|
||||||
|
try:
|
||||||
|
# First import
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
test_file,
|
||||||
|
'--nummer', 'TEST-PURGE',
|
||||||
|
'--name', 'Purge Test',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit'
|
||||||
|
)
|
||||||
|
|
||||||
|
dokument = Dokument.objects.get(nummer='TEST-PURGE')
|
||||||
|
self.assertEqual(Vorgabe.objects.filter(dokument=dokument).count(), 1)
|
||||||
|
|
||||||
|
# Second import with different content and --purge
|
||||||
|
test_content_2 = """>>>Vorgabe Technik
|
||||||
|
>>>Nummer 2
|
||||||
|
>>>Titel
|
||||||
|
Replacement Requirement
|
||||||
|
>>>Kurztext
|
||||||
|
>>>Text
|
||||||
|
Replacement text.
|
||||||
|
"""
|
||||||
|
test_file_2 = self.create_test_file(test_content_2)
|
||||||
|
|
||||||
|
try:
|
||||||
|
out = StringIO()
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
test_file_2,
|
||||||
|
'--nummer', 'TEST-PURGE',
|
||||||
|
'--name', 'Purge Test',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit',
|
||||||
|
'--purge',
|
||||||
|
stdout=out
|
||||||
|
)
|
||||||
|
|
||||||
|
# Old Vorgabe should be deleted, only new one exists
|
||||||
|
vorgaben = Vorgabe.objects.filter(dokument=dokument)
|
||||||
|
self.assertEqual(vorgaben.count(), 1)
|
||||||
|
self.assertEqual(vorgaben.first().nummer, 2)
|
||||||
|
self.assertEqual(vorgaben.first().thema, self.thema_technik)
|
||||||
|
|
||||||
|
output = out.getvalue()
|
||||||
|
self.assertIn('Purged', output)
|
||||||
|
|
||||||
|
finally:
|
||||||
|
os.unlink(test_file_2)
|
||||||
|
|
||||||
|
finally:
|
||||||
|
os.unlink(test_file)
|
||||||
|
|
||||||
|
def test_purge_dry_run_shows_what_would_be_deleted(self):
|
||||||
|
"""Test that --purge with --dry-run shows deletion counts"""
|
||||||
|
test_content = """>>>Vorgabe Organisation
|
||||||
|
>>>Nummer 1
|
||||||
|
>>>Titel
|
||||||
|
Original
|
||||||
|
>>>Kurztext
|
||||||
|
>>>Text
|
||||||
|
Text.
|
||||||
|
"""
|
||||||
|
test_file = self.create_test_file(test_content)
|
||||||
|
|
||||||
|
try:
|
||||||
|
# First import to create data
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
test_file,
|
||||||
|
'--nummer', 'TEST-PURGE-DRY',
|
||||||
|
'--name', 'Purge Dry Test',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit'
|
||||||
|
)
|
||||||
|
|
||||||
|
# Dry run with purge
|
||||||
|
out = StringIO()
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
test_file,
|
||||||
|
'--nummer', 'TEST-PURGE-DRY',
|
||||||
|
'--name', 'Purge Dry Test',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit',
|
||||||
|
'--purge',
|
||||||
|
'--dry-run',
|
||||||
|
stdout=out
|
||||||
|
)
|
||||||
|
|
||||||
|
output = out.getvalue()
|
||||||
|
self.assertIn('[DRY RUN] Would purge:', output)
|
||||||
|
self.assertIn('1 Vorgaben', output)
|
||||||
|
|
||||||
|
finally:
|
||||||
|
os.unlink(test_file)
|
||||||
|
|
||||||
|
def test_header_normalization(self):
|
||||||
|
"""Test that headers with hyphens are normalized correctly"""
|
||||||
|
test_content = """>>>geltungsbereich
|
||||||
|
>>>Liste-ungeordnet
|
||||||
|
Item 1
|
||||||
|
Item 2
|
||||||
|
Item 3
|
||||||
|
"""
|
||||||
|
test_file = self.create_test_file(test_content)
|
||||||
|
|
||||||
|
try:
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
test_file,
|
||||||
|
'--nummer', 'TEST-NORM',
|
||||||
|
'--name', 'Normalization Test',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit'
|
||||||
|
)
|
||||||
|
|
||||||
|
dokument = Dokument.objects.get(nummer='TEST-NORM')
|
||||||
|
geltungsbereich = Geltungsbereich.objects.get(geltungsbereich=dokument)
|
||||||
|
|
||||||
|
# Should have normalized "Liste-ungeordnet" to "liste ungeordnet"
|
||||||
|
self.assertEqual(geltungsbereich.abschnitttyp, self.liste_ungeordnet_typ)
|
||||||
|
|
||||||
|
finally:
|
||||||
|
os.unlink(test_file)
|
||||||
|
|
||||||
|
def test_missing_file_raises_error(self):
|
||||||
|
"""Test that missing file raises CommandError"""
|
||||||
|
with self.assertRaises(CommandError) as cm:
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
'/nonexistent/file.txt',
|
||||||
|
'--nummer', 'TEST-ERR',
|
||||||
|
'--name', 'Error Test',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit'
|
||||||
|
)
|
||||||
|
self.assertIn('does not exist', str(cm.exception))
|
||||||
|
|
||||||
|
def test_missing_dokumententyp_raises_error(self):
|
||||||
|
"""Test that missing Dokumententyp raises CommandError"""
|
||||||
|
test_content = """>>>geltungsbereich
|
||||||
|
>>>text
|
||||||
|
Text.
|
||||||
|
"""
|
||||||
|
test_file = self.create_test_file(test_content)
|
||||||
|
|
||||||
|
try:
|
||||||
|
with self.assertRaises(CommandError) as cm:
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
test_file,
|
||||||
|
'--nummer', 'TEST-ERR',
|
||||||
|
'--name', 'Error Test',
|
||||||
|
'--dokumententyp', 'NonExistentType'
|
||||||
|
)
|
||||||
|
self.assertIn('does not exist', str(cm.exception))
|
||||||
|
|
||||||
|
finally:
|
||||||
|
os.unlink(test_file)
|
||||||
|
|
||||||
|
def test_missing_thema_skips_vorgabe(self):
|
||||||
|
"""Test that missing Thema causes Vorgabe to be skipped with warning"""
|
||||||
|
test_content = """>>>Vorgabe NonExistentThema
|
||||||
|
>>>Nummer 1
|
||||||
|
>>>Titel
|
||||||
|
Test
|
||||||
|
>>>Kurztext
|
||||||
|
>>>Text
|
||||||
|
Text.
|
||||||
|
"""
|
||||||
|
test_file = self.create_test_file(test_content)
|
||||||
|
|
||||||
|
try:
|
||||||
|
out = StringIO()
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
test_file,
|
||||||
|
'--nummer', 'TEST-SKIP',
|
||||||
|
'--name', 'Skip Test',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit',
|
||||||
|
stdout=out
|
||||||
|
)
|
||||||
|
|
||||||
|
dokument = Dokument.objects.get(nummer='TEST-SKIP')
|
||||||
|
# Vorgabe should NOT be created
|
||||||
|
self.assertEqual(Vorgabe.objects.filter(dokument=dokument).count(), 0)
|
||||||
|
|
||||||
|
output = out.getvalue()
|
||||||
|
self.assertIn('not found, skipping Vorgabe', output)
|
||||||
|
|
||||||
|
finally:
|
||||||
|
os.unlink(test_file)
|
||||||
|
|
||||||
|
def test_missing_abschnitttyp_defaults_to_text(self):
|
||||||
|
"""Test that missing AbschnittTyp defaults to 'text' with warning"""
|
||||||
|
# Delete all but text type
|
||||||
|
AbschnittTyp.objects.exclude(abschnitttyp='text').delete()
|
||||||
|
|
||||||
|
test_content = """>>>geltungsbereich
|
||||||
|
>>>liste geordnet
|
||||||
|
Item 1
|
||||||
|
"""
|
||||||
|
test_file = self.create_test_file(test_content)
|
||||||
|
|
||||||
|
try:
|
||||||
|
out = StringIO()
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
test_file,
|
||||||
|
'--nummer', 'TEST-DEFAULT',
|
||||||
|
'--name', 'Default Test',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit',
|
||||||
|
stdout=out
|
||||||
|
)
|
||||||
|
|
||||||
|
dokument = Dokument.objects.get(nummer='TEST-DEFAULT')
|
||||||
|
geltungsbereich = Geltungsbereich.objects.get(geltungsbereich=dokument)
|
||||||
|
|
||||||
|
# Should default to 'text' type
|
||||||
|
self.assertEqual(geltungsbereich.abschnitttyp.abschnitttyp, 'text')
|
||||||
|
|
||||||
|
output = out.getvalue()
|
||||||
|
self.assertIn("not found; defaulting to 'text'", output)
|
||||||
|
|
||||||
|
finally:
|
||||||
|
os.unlink(test_file)
|
||||||
|
|
||||||
|
def test_inline_titel(self):
|
||||||
|
"""Test that inline title (on same line as header) is parsed"""
|
||||||
|
test_content = """>>>Vorgabe Organisation
|
||||||
|
>>>Nummer 1
|
||||||
|
>>>Titel Inline Title Here
|
||||||
|
>>>Kurztext
|
||||||
|
>>>Text
|
||||||
|
Text.
|
||||||
|
"""
|
||||||
|
test_file = self.create_test_file(test_content)
|
||||||
|
|
||||||
|
try:
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
test_file,
|
||||||
|
'--nummer', 'TEST-INLINE',
|
||||||
|
'--name', 'Inline Test',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit'
|
||||||
|
)
|
||||||
|
|
||||||
|
dokument = Dokument.objects.get(nummer='TEST-INLINE')
|
||||||
|
vorgabe = Vorgabe.objects.get(dokument=dokument)
|
||||||
|
self.assertEqual(vorgabe.titel, 'Inline Title Here')
|
||||||
|
|
||||||
|
finally:
|
||||||
|
os.unlink(test_file)
|
||||||
|
|
||||||
|
def test_inline_stichworte(self):
|
||||||
|
"""Test that inline Stichworte (on same line as header) are parsed"""
|
||||||
|
test_content = """>>>Vorgabe Organisation
|
||||||
|
>>>Nummer 1
|
||||||
|
>>>Titel Test
|
||||||
|
>>>Stichworte Security, Testing, Compliance
|
||||||
|
>>>Kurztext
|
||||||
|
>>>Text
|
||||||
|
Text.
|
||||||
|
"""
|
||||||
|
test_file = self.create_test_file(test_content)
|
||||||
|
|
||||||
|
try:
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
test_file,
|
||||||
|
'--nummer', 'TEST-INLINE-STW',
|
||||||
|
'--name', 'Inline Stichwort Test',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit'
|
||||||
|
)
|
||||||
|
|
||||||
|
dokument = Dokument.objects.get(nummer='TEST-INLINE-STW')
|
||||||
|
vorgabe = Vorgabe.objects.get(dokument=dokument)
|
||||||
|
stichworte = {s.stichwort for s in vorgabe.stichworte.all()}
|
||||||
|
self.assertEqual(stichworte, {'Security', 'Testing', 'Compliance'})
|
||||||
|
|
||||||
|
finally:
|
||||||
|
os.unlink(test_file)
|
||||||
|
|
||||||
|
def test_gueltigkeit_dates(self):
|
||||||
|
"""Test that validity dates are set correctly"""
|
||||||
|
test_content = """>>>geltungsbereich
|
||||||
|
>>>text
|
||||||
|
Scope.
|
||||||
|
"""
|
||||||
|
test_file = self.create_test_file(test_content)
|
||||||
|
|
||||||
|
try:
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
test_file,
|
||||||
|
'--nummer', 'TEST-DATES',
|
||||||
|
'--name', 'Date Test',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit',
|
||||||
|
'--gueltigkeit_von', '2024-01-01',
|
||||||
|
'--gueltigkeit_bis', '2024-12-31'
|
||||||
|
)
|
||||||
|
|
||||||
|
dokument = Dokument.objects.get(nummer='TEST-DATES')
|
||||||
|
self.assertEqual(str(dokument.gueltigkeit_von), '2024-01-01')
|
||||||
|
self.assertEqual(str(dokument.gueltigkeit_bis), '2024-12-31')
|
||||||
|
|
||||||
|
finally:
|
||||||
|
os.unlink(test_file)
|
||||||
|
|
||||||
|
def test_existing_document_updates(self):
|
||||||
|
"""Test that importing to existing document number shows warning"""
|
||||||
|
test_content = """>>>geltungsbereich
|
||||||
|
>>>text
|
||||||
|
First version.
|
||||||
|
"""
|
||||||
|
test_file = self.create_test_file(test_content)
|
||||||
|
|
||||||
|
try:
|
||||||
|
# First import
|
||||||
|
out = StringIO()
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
test_file,
|
||||||
|
'--nummer', 'TEST-EXISTS',
|
||||||
|
'--name', 'Existing Test',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit',
|
||||||
|
stdout=out
|
||||||
|
)
|
||||||
|
|
||||||
|
output1 = out.getvalue()
|
||||||
|
self.assertIn('Created Document TEST-EXISTS', output1)
|
||||||
|
|
||||||
|
# Second import with same number
|
||||||
|
out2 = StringIO()
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
test_file,
|
||||||
|
'--nummer', 'TEST-EXISTS',
|
||||||
|
'--name', 'Existing Test',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit',
|
||||||
|
stdout=out2
|
||||||
|
)
|
||||||
|
|
||||||
|
output2 = out2.getvalue()
|
||||||
|
self.assertIn('already exists', output2)
|
||||||
|
|
||||||
|
finally:
|
||||||
|
os.unlink(test_file)
|
||||||
|
|
||||||
|
def test_multiple_kurztext_sections(self):
|
||||||
|
"""Test Vorgabe with multiple Kurztext sections"""
|
||||||
|
test_content = """>>>Vorgabe Organisation
|
||||||
|
>>>Nummer 1
|
||||||
|
>>>Titel Multiple Sections
|
||||||
|
>>>Kurztext
|
||||||
|
>>>Text
|
||||||
|
First kurztext section.
|
||||||
|
>>>Liste ungeordnet
|
||||||
|
Item A
|
||||||
|
Item B
|
||||||
|
>>>Langtext
|
||||||
|
>>>Text
|
||||||
|
Langtext.
|
||||||
|
"""
|
||||||
|
test_file = self.create_test_file(test_content)
|
||||||
|
|
||||||
|
try:
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
test_file,
|
||||||
|
'--nummer', 'TEST-MULTI',
|
||||||
|
'--name', 'Multi Section Test',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit'
|
||||||
|
)
|
||||||
|
|
||||||
|
dokument = Dokument.objects.get(nummer='TEST-MULTI')
|
||||||
|
vorgabe = Vorgabe.objects.get(dokument=dokument)
|
||||||
|
kurztext_sections = VorgabeKurztext.objects.filter(abschnitt=vorgabe).order_by('id')
|
||||||
|
|
||||||
|
self.assertEqual(kurztext_sections.count(), 2)
|
||||||
|
self.assertEqual(kurztext_sections[0].abschnitttyp.abschnitttyp, 'text')
|
||||||
|
self.assertEqual(kurztext_sections[1].abschnitttyp.abschnitttyp, 'liste ungeordnet')
|
||||||
|
|
||||||
|
finally:
|
||||||
|
os.unlink(test_file)
|
||||||
|
|
||||||
|
def test_empty_file(self):
|
||||||
|
"""Test importing an empty file"""
|
||||||
|
test_content = ""
|
||||||
|
test_file = self.create_test_file(test_content)
|
||||||
|
|
||||||
|
try:
|
||||||
|
out = StringIO()
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
test_file,
|
||||||
|
'--nummer', 'TEST-EMPTY',
|
||||||
|
'--name', 'Empty Test',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit',
|
||||||
|
stdout=out
|
||||||
|
)
|
||||||
|
|
||||||
|
dokument = Dokument.objects.get(nummer='TEST-EMPTY')
|
||||||
|
# Document created but no content
|
||||||
|
self.assertEqual(Einleitung.objects.filter(einleitung=dokument).count(), 0)
|
||||||
|
self.assertEqual(Geltungsbereich.objects.filter(geltungsbereich=dokument).count(), 0)
|
||||||
|
self.assertEqual(Vorgabe.objects.filter(dokument=dokument).count(), 0)
|
||||||
|
|
||||||
|
output = out.getvalue()
|
||||||
|
self.assertIn('with 0 Vorgaben', output)
|
||||||
|
|
||||||
|
finally:
|
||||||
|
os.unlink(test_file)
|
||||||
|
|
||||||
|
def test_unicode_content(self):
|
||||||
|
"""Test that Unicode characters (German umlauts, etc.) are handled correctly"""
|
||||||
|
test_content = """>>>Einleitung
|
||||||
|
>>>text
|
||||||
|
Übersicht über die Sicherheitsanforderungen für IT-Systeme.
|
||||||
|
|
||||||
|
>>>Vorgabe Organisation
|
||||||
|
>>>Nummer 1
|
||||||
|
>>>Titel
|
||||||
|
Überprüfung der Systemkonfiguration
|
||||||
|
>>>Kurztext
|
||||||
|
>>>Text
|
||||||
|
Die Konfiguration muss regelmäßig überprüft werden.
|
||||||
|
>>>Stichworte
|
||||||
|
Überprüfung, Sicherheit, Qualität
|
||||||
|
"""
|
||||||
|
test_file = self.create_test_file(test_content)
|
||||||
|
|
||||||
|
try:
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
test_file,
|
||||||
|
'--nummer', 'TEST-UNICODE',
|
||||||
|
'--name', 'Unicode Test',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit'
|
||||||
|
)
|
||||||
|
|
||||||
|
dokument = Dokument.objects.get(nummer='TEST-UNICODE')
|
||||||
|
|
||||||
|
# Check Einleitung
|
||||||
|
einleitung = Einleitung.objects.get(einleitung=dokument)
|
||||||
|
self.assertIn('Übersicht', einleitung.inhalt)
|
||||||
|
|
||||||
|
# Check Vorgabe
|
||||||
|
vorgabe = Vorgabe.objects.get(dokument=dokument)
|
||||||
|
self.assertEqual(vorgabe.titel, 'Überprüfung der Systemkonfiguration')
|
||||||
|
|
||||||
|
# Check Kurztext
|
||||||
|
kurztext = VorgabeKurztext.objects.get(abschnitt=vorgabe)
|
||||||
|
self.assertIn('regelmäßig', kurztext.inhalt)
|
||||||
|
|
||||||
|
# Check Stichworte
|
||||||
|
stichworte = {s.stichwort for s in vorgabe.stichworte.all()}
|
||||||
|
self.assertIn('Überprüfung', stichworte)
|
||||||
|
|
||||||
|
finally:
|
||||||
|
os.unlink(test_file)
|
||||||
|
|
||||||
|
def test_context_switching(self):
|
||||||
|
"""Test that context switches correctly between sections"""
|
||||||
|
test_content = """>>>Einleitung
|
||||||
|
>>>text
|
||||||
|
Intro text 1.
|
||||||
|
>>>text
|
||||||
|
Intro text 2.
|
||||||
|
|
||||||
|
>>>geltungsbereich
|
||||||
|
>>>text
|
||||||
|
Scope text 1.
|
||||||
|
>>>text
|
||||||
|
Scope text 2.
|
||||||
|
|
||||||
|
>>>Vorgabe Organisation
|
||||||
|
>>>Nummer 1
|
||||||
|
>>>Titel Test
|
||||||
|
>>>Kurztext
|
||||||
|
>>>text
|
||||||
|
Kurztext 1.
|
||||||
|
>>>text
|
||||||
|
Kurztext 2.
|
||||||
|
>>>Langtext
|
||||||
|
>>>text
|
||||||
|
Langtext 1.
|
||||||
|
"""
|
||||||
|
test_file = self.create_test_file(test_content)
|
||||||
|
|
||||||
|
try:
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
test_file,
|
||||||
|
'--nummer', 'TEST-CONTEXT',
|
||||||
|
'--name', 'Context Test',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit'
|
||||||
|
)
|
||||||
|
|
||||||
|
dokument = Dokument.objects.get(nummer='TEST-CONTEXT')
|
||||||
|
|
||||||
|
# Check Einleitung has 2 sections
|
||||||
|
einleitung = Einleitung.objects.filter(einleitung=dokument)
|
||||||
|
self.assertEqual(einleitung.count(), 2)
|
||||||
|
|
||||||
|
# Check Geltungsbereich has 2 sections
|
||||||
|
geltungsbereich = Geltungsbereich.objects.filter(geltungsbereich=dokument)
|
||||||
|
self.assertEqual(geltungsbereich.count(), 2)
|
||||||
|
|
||||||
|
# Check Vorgabe has correct Kurztext and Langtext counts
|
||||||
|
vorgabe = Vorgabe.objects.get(dokument=dokument)
|
||||||
|
kurztext = VorgabeKurztext.objects.filter(abschnitt=vorgabe)
|
||||||
|
langtext = VorgabeLangtext.objects.filter(abschnitt=vorgabe)
|
||||||
|
self.assertEqual(kurztext.count(), 2)
|
||||||
|
self.assertEqual(langtext.count(), 1)
|
||||||
|
|
||||||
|
finally:
|
||||||
|
os.unlink(test_file)
|
||||||
|
|
||||||
|
def test_real_world_example(self):
|
||||||
|
"""Test importing the real r009.txt example document"""
|
||||||
|
# Use the actual example file
|
||||||
|
example_file = Path(__file__).parent.parent / 'Documentation' / 'import formats' / 'r009.txt'
|
||||||
|
|
||||||
|
if not example_file.exists():
|
||||||
|
self.skipTest("r009.txt example file not found")
|
||||||
|
|
||||||
|
out = StringIO()
|
||||||
|
call_command(
|
||||||
|
'import-document',
|
||||||
|
str(example_file),
|
||||||
|
'--nummer', 'R009',
|
||||||
|
'--name', 'IT-Sicherheit Serversysteme',
|
||||||
|
'--dokumententyp', 'IT-Sicherheit',
|
||||||
|
stdout=out
|
||||||
|
)
|
||||||
|
|
||||||
|
dokument = Dokument.objects.get(nummer='R009')
|
||||||
|
|
||||||
|
# Check that Einleitung was created
|
||||||
|
self.assertGreater(Einleitung.objects.filter(einleitung=dokument).count(), 0)
|
||||||
|
|
||||||
|
# Check that Geltungsbereich was created
|
||||||
|
self.assertGreater(Geltungsbereich.objects.filter(geltungsbereich=dokument).count(), 0)
|
||||||
|
|
||||||
|
# Check that multiple Vorgaben were created (r009.txt has 23 Vorgaben)
|
||||||
|
vorgaben = Vorgabe.objects.filter(dokument=dokument)
|
||||||
|
self.assertGreaterEqual(vorgaben.count(), 20)
|
||||||
|
|
||||||
|
# Verify output message
|
||||||
|
output = out.getvalue()
|
||||||
|
self.assertIn('Imported document R009', output)
|
||||||
1150
dokumente/tests.py
1150
dokumente/tests.py
File diff suppressed because it is too large
Load Diff
@@ -5,11 +5,13 @@ urlpatterns = [
|
|||||||
path('', views.standard_list, name='standard_list'),
|
path('', views.standard_list, name='standard_list'),
|
||||||
path('unvollstaendig/', views.incomplete_vorgaben, name='incomplete_vorgaben'),
|
path('unvollstaendig/', views.incomplete_vorgaben, name='incomplete_vorgaben'),
|
||||||
path('meine-kommentare/', views.user_comments, name='user_comments'),
|
path('meine-kommentare/', views.user_comments, name='user_comments'),
|
||||||
|
path('alle-kommentare/', views.all_comments, name='all_comments'),
|
||||||
path('<str:nummer>/', views.standard_detail, name='standard_detail'),
|
path('<str:nummer>/', views.standard_detail, name='standard_detail'),
|
||||||
path('<str:nummer>/history/<str:check_date>/', views.standard_detail),
|
path('<str:nummer>/history/<str:check_date>/', views.standard_detail),
|
||||||
path('<str:nummer>/history/', views.standard_detail, {"check_date":"today"}, name='standard_history'),
|
path('<str:nummer>/history/', views.standard_detail, {"check_date":"today"}, name='standard_history'),
|
||||||
path('<str:nummer>/checkliste/', views.standard_checkliste, name='standard_checkliste'),
|
path('<str:nummer>/checkliste/', views.standard_checkliste, name='standard_checkliste'),
|
||||||
path('<str:nummer>/json/', views.standard_json, name='standard_json'),
|
path('<str:nummer>/json/', views.standard_json, name='standard_json'),
|
||||||
|
path('<str:nummer>/xml/', views.standard_xml, name='standard_xml'),
|
||||||
path('comments/<int:vorgabe_id>/', views.get_vorgabe_comments, name='get_vorgabe_comments'),
|
path('comments/<int:vorgabe_id>/', views.get_vorgabe_comments, name='get_vorgabe_comments'),
|
||||||
path('comments/<int:vorgabe_id>/add/', views.add_vorgabe_comment, name='add_vorgabe_comment'),
|
path('comments/<int:vorgabe_id>/add/', views.add_vorgabe_comment, name='add_vorgabe_comment'),
|
||||||
path('comments/delete/<int:comment_id>/', views.delete_vorgabe_comment, name='delete_vorgabe_comment'),
|
path('comments/delete/<int:comment_id>/', views.delete_vorgabe_comment, name='delete_vorgabe_comment'),
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
"""
|
"""
|
||||||
Utility functions for Vorgaben sanity checking
|
Utility functions for Vorgaben sanity checking and XML export
|
||||||
"""
|
"""
|
||||||
import datetime
|
import datetime
|
||||||
|
import xml.etree.ElementTree as ET
|
||||||
|
import xml.dom.minidom
|
||||||
from django.db.models import Count
|
from django.db.models import Count
|
||||||
from itertools import combinations
|
from itertools import combinations
|
||||||
from dokumente.models import Vorgabe
|
from dokumente.models import Vorgabe
|
||||||
@@ -119,5 +121,192 @@ def format_conflict_report(conflicts, verbose=False):
|
|||||||
lines.append(f" Overlap: {overlap_start} to {overlap_end}")
|
lines.append(f" Overlap: {overlap_start} to {overlap_end}")
|
||||||
else:
|
else:
|
||||||
lines.append(f" Overlap starts: {overlap_start} (no end)")
|
lines.append(f" Overlap starts: {overlap_start} (no end)")
|
||||||
|
|
||||||
return "\n".join(lines)
|
return "\n".join(lines)
|
||||||
|
|
||||||
|
|
||||||
|
# XML Export utilities
|
||||||
|
|
||||||
|
def parse_markdown_table(markdown_content):
|
||||||
|
"""
|
||||||
|
Parse markdown table content and return XML element with <table><header><row><column> structure
|
||||||
|
"""
|
||||||
|
lines = [line.strip() for line in markdown_content.strip().split('\n') if line.strip()]
|
||||||
|
if not lines:
|
||||||
|
return None
|
||||||
|
|
||||||
|
# Create table element
|
||||||
|
table = ET.Element('table')
|
||||||
|
|
||||||
|
# Parse first row as header
|
||||||
|
header_row = [cell.strip() for cell in lines[0].split('|') if cell.strip()]
|
||||||
|
header = ET.SubElement(table, 'header')
|
||||||
|
for cell in header_row:
|
||||||
|
column = ET.SubElement(header, 'column')
|
||||||
|
column.text = cell
|
||||||
|
|
||||||
|
# Parse remaining rows (skip separator row if it exists)
|
||||||
|
for line in lines[2:] if len(lines) > 1 and all(c in '-| ' for c in lines[1]) else lines[1:]:
|
||||||
|
# Check if this is a separator row
|
||||||
|
if all(c in '-| ' for c in line):
|
||||||
|
continue
|
||||||
|
|
||||||
|
row = ET.SubElement(table, 'row')
|
||||||
|
row_cells = [cell.strip() for cell in line.split('|') if cell.strip()]
|
||||||
|
for cell in row_cells:
|
||||||
|
column = ET.SubElement(row, 'column')
|
||||||
|
column.text = cell
|
||||||
|
|
||||||
|
return table
|
||||||
|
|
||||||
|
|
||||||
|
def prettify_xml(xml_string):
|
||||||
|
"""
|
||||||
|
Prettify XML string with proper indentation
|
||||||
|
"""
|
||||||
|
dom = xml.dom.minidom.parseString(xml_string)
|
||||||
|
return dom.toprettyxml(indent=" ", encoding="UTF-8").decode('utf-8')
|
||||||
|
|
||||||
|
|
||||||
|
def build_dokument_xml_element(dokument, parent_element):
|
||||||
|
"""
|
||||||
|
Build XML element for a single Dokument and append it to parent_element.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
dokument: Dokument instance (should be prefetched with related data)
|
||||||
|
parent_element: Parent XML element to append to
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
The created document element
|
||||||
|
"""
|
||||||
|
doc_element = ET.SubElement(parent_element, 'Vorgabendokument')
|
||||||
|
|
||||||
|
ET.SubElement(doc_element, 'Typ').text = dokument.dokumententyp.name if dokument.dokumententyp else ""
|
||||||
|
ET.SubElement(doc_element, 'Nummer').text = dokument.nummer
|
||||||
|
ET.SubElement(doc_element, 'Name').text = dokument.name
|
||||||
|
|
||||||
|
autoren_element = ET.SubElement(doc_element, 'Autoren')
|
||||||
|
for autor in dokument.autoren.all():
|
||||||
|
ET.SubElement(autoren_element, 'Autor').text = autor.name
|
||||||
|
|
||||||
|
pruefende_element = ET.SubElement(doc_element, 'Pruefende')
|
||||||
|
for pruefender in dokument.pruefende.all():
|
||||||
|
ET.SubElement(pruefende_element, 'Pruefender').text = pruefender.name
|
||||||
|
|
||||||
|
gueltigkeit_element = ET.SubElement(doc_element, 'Gueltigkeit')
|
||||||
|
ET.SubElement(gueltigkeit_element, 'Von').text = dokument.gueltigkeit_von.strftime("%Y-%m-%d") if dokument.gueltigkeit_von else ""
|
||||||
|
ET.SubElement(gueltigkeit_element, 'Bis').text = dokument.gueltigkeit_bis.strftime("%Y-%m-%d") if dokument.gueltigkeit_bis else None
|
||||||
|
|
||||||
|
ET.SubElement(doc_element, 'SignaturCSO').text = dokument.signatur_cso
|
||||||
|
|
||||||
|
geltungsbereich_sections = dokument.geltungsbereich_set.all().order_by('order')
|
||||||
|
if geltungsbereich_sections:
|
||||||
|
geltungsbereich_element = ET.SubElement(doc_element, 'Geltungsbereich')
|
||||||
|
for gb in geltungsbereich_sections:
|
||||||
|
section_type = gb.abschnitttyp.abschnitttyp if gb.abschnitttyp else "text"
|
||||||
|
if section_type in ('tabelle', 'table'):
|
||||||
|
table = parse_markdown_table(gb.inhalt)
|
||||||
|
if table is not None:
|
||||||
|
abschnitt_element = ET.SubElement(geltungsbereich_element, 'Abschnitt')
|
||||||
|
abschnitt_element.set('typ', section_type)
|
||||||
|
abschnitt_element.append(table)
|
||||||
|
else:
|
||||||
|
abschnitt_element = ET.SubElement(geltungsbereich_element, 'Abschnitt')
|
||||||
|
abschnitt_element.set('typ', section_type)
|
||||||
|
abschnitt_element.text = gb.inhalt
|
||||||
|
|
||||||
|
einleitung_sections = dokument.einleitung_set.all().order_by('order')
|
||||||
|
if einleitung_sections:
|
||||||
|
einleitung_element = ET.SubElement(doc_element, 'Einleitung')
|
||||||
|
for ei in einleitung_sections:
|
||||||
|
section_type = ei.abschnitttyp.abschnitttyp if ei.abschnitttyp else "text"
|
||||||
|
if section_type in ('tabelle', 'table'):
|
||||||
|
table = parse_markdown_table(ei.inhalt)
|
||||||
|
if table is not None:
|
||||||
|
abschnitt_element = ET.SubElement(einleitung_element, 'Abschnitt')
|
||||||
|
abschnitt_element.set('typ', section_type)
|
||||||
|
abschnitt_element.append(table)
|
||||||
|
else:
|
||||||
|
abschnitt_element = ET.SubElement(einleitung_element, 'Abschnitt')
|
||||||
|
abschnitt_element.set('typ', section_type)
|
||||||
|
abschnitt_element.text = ei.inhalt
|
||||||
|
|
||||||
|
ET.SubElement(doc_element, 'Ziel').text = ""
|
||||||
|
ET.SubElement(doc_element, 'Grundlagen').text = ""
|
||||||
|
|
||||||
|
changelog_element = ET.SubElement(doc_element, 'Changelog')
|
||||||
|
for cl in dokument.changelog.all().order_by('-datum'):
|
||||||
|
entry = ET.SubElement(changelog_element, 'Eintrag')
|
||||||
|
ET.SubElement(entry, 'Datum').text = cl.datum.strftime("%Y-%m-%d")
|
||||||
|
autoren = ET.SubElement(entry, 'Autoren')
|
||||||
|
for autor in cl.autoren.all():
|
||||||
|
ET.SubElement(autoren, 'Autor').text = autor.name
|
||||||
|
ET.SubElement(entry, 'Aenderung').text = cl.aenderung
|
||||||
|
|
||||||
|
anhaenge_element = ET.SubElement(doc_element, 'Anhaenge')
|
||||||
|
ET.SubElement(anhaenge_element, 'Anhang').text = dokument.anhaenge
|
||||||
|
|
||||||
|
ET.SubElement(doc_element, 'Verantwortlich').text = "Information Security Management BIT"
|
||||||
|
ET.SubElement(doc_element, 'Klassifizierung').text = ""
|
||||||
|
|
||||||
|
glossar_element = ET.SubElement(doc_element, 'Glossar')
|
||||||
|
|
||||||
|
vorgaben_element = ET.SubElement(doc_element, 'Vorgaben')
|
||||||
|
|
||||||
|
for vorgabe in dokument.vorgaben.all().order_by('order'):
|
||||||
|
vorgabe_el = ET.SubElement(vorgaben_element, 'Vorgabe')
|
||||||
|
|
||||||
|
ET.SubElement(vorgabe_el, 'Nummer').text = str(vorgabe.nummer)
|
||||||
|
ET.SubElement(vorgabe_el, 'Titel').text = vorgabe.titel
|
||||||
|
ET.SubElement(vorgabe_el, 'Thema').text = vorgabe.thema.name if vorgabe.thema else ""
|
||||||
|
|
||||||
|
kurztext_sections = vorgabe.vorgabekurztext_set.all().order_by('order')
|
||||||
|
if kurztext_sections:
|
||||||
|
kurztext_element = ET.SubElement(vorgabe_el, 'Kurztext')
|
||||||
|
for kt in kurztext_sections:
|
||||||
|
section_type = kt.abschnitttyp.abschnitttyp if kt.abschnitttyp else "text"
|
||||||
|
if section_type in ('tabelle', 'table'):
|
||||||
|
table = parse_markdown_table(kt.inhalt)
|
||||||
|
if table is not None:
|
||||||
|
abschnitt = ET.SubElement(kurztext_element, 'Abschnitt')
|
||||||
|
abschnitt.set('typ', section_type)
|
||||||
|
abschnitt.append(table)
|
||||||
|
else:
|
||||||
|
abschnitt = ET.SubElement(kurztext_element, 'Abschnitt')
|
||||||
|
abschnitt.set('typ', section_type)
|
||||||
|
abschnitt.text = kt.inhalt
|
||||||
|
|
||||||
|
langtext_sections = vorgabe.vorgabelangtext_set.all().order_by('order')
|
||||||
|
if langtext_sections:
|
||||||
|
langtext_element = ET.SubElement(vorgabe_el, 'Langtext')
|
||||||
|
for lt in langtext_sections:
|
||||||
|
section_type = lt.abschnitttyp.abschnitttyp if lt.abschnitttyp else "text"
|
||||||
|
if section_type in ('tabelle', 'table'):
|
||||||
|
table = parse_markdown_table(lt.inhalt)
|
||||||
|
if table is not None:
|
||||||
|
abschnitt = ET.SubElement(langtext_element, 'Abschnitt')
|
||||||
|
abschnitt.set('typ', section_type)
|
||||||
|
abschnitt.append(table)
|
||||||
|
else:
|
||||||
|
abschnitt = ET.SubElement(langtext_element, 'Abschnitt')
|
||||||
|
abschnitt.set('typ', section_type)
|
||||||
|
abschnitt.text = lt.inhalt
|
||||||
|
|
||||||
|
referenz_element = ET.SubElement(vorgabe_el, 'Referenzen')
|
||||||
|
for ref in vorgabe.referenzen.all():
|
||||||
|
ref_text = f"{ref.name_nummer}: {ref.name_text}" if ref.name_text else ref.name_nummer
|
||||||
|
ET.SubElement(referenz_element, 'Referenz').text = ref_text
|
||||||
|
|
||||||
|
vorgabe_gueltigkeit = ET.SubElement(vorgabe_el, 'Gueltigkeit')
|
||||||
|
ET.SubElement(vorgabe_gueltigkeit, 'Von').text = vorgabe.gueltigkeit_von.strftime("%Y-%m-%d") if vorgabe.gueltigkeit_von else ""
|
||||||
|
ET.SubElement(vorgabe_gueltigkeit, 'Bis').text = vorgabe.gueltigkeit_bis.strftime("%Y-%m-%d") if vorgabe.gueltigkeit_bis else None
|
||||||
|
|
||||||
|
checklistenfragen_element = ET.SubElement(vorgabe_el, 'Checklistenfragen')
|
||||||
|
for cf in vorgabe.checklistenfragen.all():
|
||||||
|
ET.SubElement(checklistenfragen_element, 'Frage').text = cf.frage
|
||||||
|
|
||||||
|
stichworte_element = ET.SubElement(vorgabe_el, 'Stichworte')
|
||||||
|
for stw in vorgabe.stichworte.all():
|
||||||
|
ET.SubElement(stichworte_element, 'Stichwort').text = stw.stichwort
|
||||||
|
|
||||||
|
return doc_element
|
||||||
@@ -1,13 +1,15 @@
|
|||||||
from django.shortcuts import render, get_object_or_404
|
from django.shortcuts import render, get_object_or_404
|
||||||
from django.contrib.auth.decorators import login_required, user_passes_test
|
from django.contrib.auth.decorators import login_required, user_passes_test
|
||||||
from django.http import JsonResponse
|
from django.http import JsonResponse, HttpResponse
|
||||||
from django.core.serializers.json import DjangoJSONEncoder
|
from django.core.serializers.json import DjangoJSONEncoder
|
||||||
from django.views.decorators.http import require_POST
|
from django.views.decorators.http import require_POST
|
||||||
from django.views.decorators.csrf import csrf_exempt
|
from django.views.decorators.csrf import csrf_exempt
|
||||||
from django.utils.html import escape, mark_safe
|
from django.utils.html import escape, mark_safe
|
||||||
from django.utils.safestring import SafeString
|
from django.utils.safestring import SafeString
|
||||||
import json
|
import json
|
||||||
|
import xml.etree.ElementTree as ET
|
||||||
from .models import Dokument, Vorgabe, VorgabeKurztext, VorgabeLangtext, Checklistenfrage, VorgabeComment
|
from .models import Dokument, Vorgabe, VorgabeKurztext, VorgabeLangtext, Checklistenfrage, VorgabeComment
|
||||||
|
from .utils import build_dokument_xml_element, prettify_xml
|
||||||
from abschnitte.utils import render_textabschnitte
|
from abschnitte.utils import render_textabschnitte
|
||||||
|
|
||||||
from datetime import date
|
from datetime import date
|
||||||
@@ -29,9 +31,11 @@ def standard_detail(request, nummer,check_date=""):
|
|||||||
if check_date:
|
if check_date:
|
||||||
check_date = calendar.parseDT(check_date)[0].date()
|
check_date = calendar.parseDT(check_date)[0].date()
|
||||||
standard.history = True
|
standard.history = True
|
||||||
|
standard.is_future = check_date > date.today()
|
||||||
else:
|
else:
|
||||||
check_date = date.today()
|
check_date = date.today()
|
||||||
standard.history = False
|
standard.history = False
|
||||||
|
standard.is_future = False
|
||||||
standard.check_date=check_date
|
standard.check_date=check_date
|
||||||
vorgaben = list(standard.vorgaben.order_by("thema","nummer").select_related("thema","dokument")) # convert queryset to list so we can attach attributes
|
vorgaben = list(standard.vorgaben.order_by("thema","nummer").select_related("thema","dokument")) # convert queryset to list so we can attach attributes
|
||||||
|
|
||||||
@@ -252,6 +256,37 @@ def standard_json(request, nummer):
|
|||||||
return JsonResponse(doc_data, json_dumps_params={'indent': 2, 'ensure_ascii': False}, encoder=DjangoJSONEncoder)
|
return JsonResponse(doc_data, json_dumps_params={'indent': 2, 'ensure_ascii': False}, encoder=DjangoJSONEncoder)
|
||||||
|
|
||||||
|
|
||||||
|
def standard_xml(request, nummer):
|
||||||
|
"""
|
||||||
|
Export a single Dokument as XML
|
||||||
|
"""
|
||||||
|
# Get the document with all related data
|
||||||
|
dokument = get_object_or_404(
|
||||||
|
Dokument.objects.prefetch_related(
|
||||||
|
'autoren', 'pruefende', 'vorgaben__thema',
|
||||||
|
'vorgaben__referenzen', 'vorgaben__stichworte',
|
||||||
|
'vorgaben__checklistenfragen', 'vorgaben__vorgabekurztext_set',
|
||||||
|
'vorgaben__vorgabelangtext_set', 'geltungsbereich_set',
|
||||||
|
'einleitung_set', 'changelog__autoren'
|
||||||
|
),
|
||||||
|
nummer=nummer
|
||||||
|
)
|
||||||
|
|
||||||
|
# Create a temporary root element to build the document
|
||||||
|
root = ET.Element('root')
|
||||||
|
build_dokument_xml_element(dokument, root)
|
||||||
|
|
||||||
|
# Get the actual document element (first child of root)
|
||||||
|
doc_element = root[0]
|
||||||
|
|
||||||
|
xml_str = ET.tostring(doc_element, encoding='unicode', method='xml')
|
||||||
|
xml_output = prettify_xml(xml_str)
|
||||||
|
|
||||||
|
response = HttpResponse(xml_output, content_type='application/xml; charset=utf-8')
|
||||||
|
response['Content-Disposition'] = f'attachment; filename="{dokument.nummer}.xml"'
|
||||||
|
return response
|
||||||
|
|
||||||
|
|
||||||
@login_required
|
@login_required
|
||||||
def get_vorgabe_comments(request, vorgabe_id):
|
def get_vorgabe_comments(request, vorgabe_id):
|
||||||
"""Get comments for a specific Vorgabe"""
|
"""Get comments for a specific Vorgabe"""
|
||||||
@@ -392,3 +427,31 @@ def user_comments(request):
|
|||||||
'comments_by_document': comments_by_document,
|
'comments_by_document': comments_by_document,
|
||||||
'total_comments': user_comments.count(),
|
'total_comments': user_comments.count(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
@login_required
|
||||||
|
@user_passes_test(is_staff_user)
|
||||||
|
def all_comments(request):
|
||||||
|
"""
|
||||||
|
Display all comments from all users, grouped by document.
|
||||||
|
Staff only.
|
||||||
|
"""
|
||||||
|
# Get all comments
|
||||||
|
all_comments_qs = VorgabeComment.objects.select_related(
|
||||||
|
'vorgabe', 'vorgabe__dokument', 'user'
|
||||||
|
).order_by(
|
||||||
|
'vorgabe__dokument__nummer', '-created_at'
|
||||||
|
)
|
||||||
|
|
||||||
|
# Group comments by document
|
||||||
|
comments_by_document = {}
|
||||||
|
for comment in all_comments_qs:
|
||||||
|
dokument = comment.vorgabe.dokument
|
||||||
|
if dokument not in comments_by_document:
|
||||||
|
comments_by_document[dokument] = []
|
||||||
|
comments_by_document[dokument].append(comment)
|
||||||
|
|
||||||
|
return render(request, 'standards/all_comments.html', {
|
||||||
|
'comments_by_document': comments_by_document,
|
||||||
|
'total_comments': all_comments_qs.count(),
|
||||||
|
})
|
||||||
|
|||||||
@@ -24,8 +24,8 @@ spec:
|
|||||||
- name: data
|
- name: data
|
||||||
mountPath: /data
|
mountPath: /data
|
||||||
containers:
|
containers:
|
||||||
- name: web
|
- name: web
|
||||||
image: docker.io/adebaumann/vui:0.917
|
image: docker.io/adebaumann/vui:0.918
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8000
|
- containerPort: 8000
|
||||||
|
|||||||
@@ -52,18 +52,21 @@
|
|||||||
<span class="caret" style="margin-left: 8px;"></span>
|
<span class="caret" style="margin-left: 8px;"></span>
|
||||||
</a>
|
</a>
|
||||||
<ul class="dropdown-menu dropdown-menu-right" role="menu">
|
<ul class="dropdown-menu dropdown-menu-right" role="menu">
|
||||||
<li><a href="{% url 'user_comments' %}">Meine Kommentare</a></li>
|
<li><a href="{% url 'user_comments' %}">Meine Kommentare</a></li>
|
||||||
<li><a href="{% url 'password_change' %}">Passwort ändern</a></li>
|
{% if user.is_staff %}
|
||||||
<li class="divider"></li>
|
<li><a href="{% url 'all_comments' %}">Alle Kommentare</a></li>
|
||||||
<li>
|
{% endif %}
|
||||||
<form method="post" action="{% url 'logout' %}" style="display: inline;">
|
<li><a href="{% url 'password_change' %}">Passwort ändern</a></li>
|
||||||
{% csrf_token %}
|
<li class="divider"></li>
|
||||||
<button type="submit" style="background: none; border: none; color: inherit; padding: 3px 20px; width: 100%; text-align: left; cursor: pointer;">
|
<li>
|
||||||
Abmelden
|
<form method="post" action="{% url 'logout' %}" style="display: inline;">
|
||||||
</button>
|
{% csrf_token %}
|
||||||
</form>
|
<button type="submit" style="background: none; border: none; color: inherit; padding: 3px 20px; width: 100%; text-align: left; cursor: pointer;">
|
||||||
</li>
|
Abmelden
|
||||||
</ul>
|
</button>
|
||||||
|
</form>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% else %}
|
{% else %}
|
||||||
@@ -103,7 +106,7 @@
|
|||||||
<li><a href="/dokumente">Standards</a></li>
|
<li><a href="/dokumente">Standards</a></li>
|
||||||
{% if user.is_staff %}
|
{% if user.is_staff %}
|
||||||
<li><a href="/dokumente/unvollstaendig/">Unvollständig</a></li>
|
<li><a href="/dokumente/unvollstaendig/">Unvollständig</a></li>
|
||||||
<li><a href="/autorenumgebung/">Autorenumgebung</a></li>
|
<li><a href="/autorenumgebung/">Autor</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<li><a href="/referenzen">Referenzen</a></li>
|
<li><a href="/referenzen">Referenzen</a></li>
|
||||||
<li><a href="/stichworte">Stichworte</a></li>
|
<li><a href="/stichworte">Stichworte</a></li>
|
||||||
@@ -134,7 +137,7 @@
|
|||||||
<a href="/dokumente/unvollstaendig/">Unvollständig</a>
|
<a href="/dokumente/unvollstaendig/">Unvollständig</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="dropdown {% if 'autorenumgebung' in request.path %}current{% endif %}">
|
<li class="dropdown {% if 'autorenumgebung' in request.path %}current{% endif %}">
|
||||||
<a href="/autorenumgebung/">Autorenumgebung</a>
|
<a href="/autorenumgebung/">Autor</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<li class="dropdown {% if 'referenzen' in request.path %}current{% endif %}">
|
<li class="dropdown {% if 'referenzen' in request.path %}current{% endif %}">
|
||||||
@@ -216,8 +219,8 @@
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-6 text-right">
|
<div class="col-sm-6 text-right">
|
||||||
<p class="text-muted">Version {{ version|default:"0.963" }}</p>
|
<p class="text-muted">Version {{ version|default:"0.973" }}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ certifi==2025.8.3
|
|||||||
charset-normalizer==3.4.3
|
charset-normalizer==3.4.3
|
||||||
curtsies==0.4.3
|
curtsies==0.4.3
|
||||||
cwcwidth==0.1.10
|
cwcwidth==0.1.10
|
||||||
Django==5.2.8
|
Django==5.2.9
|
||||||
django-admin-sortable2==2.2.8
|
django-admin-sortable2==2.2.8
|
||||||
django-js-asset==3.1.2
|
django-js-asset==3.1.2
|
||||||
django-mptt==0.17.0
|
django-mptt==0.17.0
|
||||||
@@ -30,7 +30,7 @@ pyxdg==0.28
|
|||||||
requests==2.32.5
|
requests==2.32.5
|
||||||
six==1.17.0
|
six==1.17.0
|
||||||
sqlparse==0.5.3
|
sqlparse==0.5.3
|
||||||
urllib3==2.5.0
|
urllib3==2.6.0
|
||||||
wcwidth==0.2.13
|
wcwidth==0.2.13
|
||||||
bleach==6.1.0
|
bleach==6.1.0
|
||||||
coverage==7.6.1
|
coverage==7.6.1
|
||||||
|
|||||||
45
scripts/deploy_secret.sh
Executable file
45
scripts/deploy_secret.sh
Executable file
@@ -0,0 +1,45 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# Generate and deploy Django secret key to Kubernetes
|
||||||
|
|
||||||
|
NAMESPACE="vorgabenui"
|
||||||
|
SECRET_NAME="django-secret"
|
||||||
|
SECRET_FILE="argocd/secret.yaml"
|
||||||
|
|
||||||
|
# Check if secret file exists
|
||||||
|
if [ ! -f "$SECRET_FILE" ]; then
|
||||||
|
echo "Error: $SECRET_FILE not found"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Generate random secret key
|
||||||
|
SECRET_KEY=$(python3 -c "import secrets; print(secrets.token_urlsafe(50))")
|
||||||
|
|
||||||
|
# Create temporary secret file with generated key
|
||||||
|
TEMP_SECRET_FILE=$(mktemp)
|
||||||
|
cat "$SECRET_FILE" | sed "s/CHANGE_ME_TO_RANDOM_STRING/$SECRET_KEY/g" > "$TEMP_SECRET_FILE"
|
||||||
|
|
||||||
|
# Check if secret already exists
|
||||||
|
if kubectl get secret "$SECRET_NAME" -n "$NAMESPACE" &>/dev/null; then
|
||||||
|
echo "Secret $SECRET_NAME already exists in namespace $NAMESPACE"
|
||||||
|
read -p "Do you want to replace it? (y/N): " -n 1 -r
|
||||||
|
echo
|
||||||
|
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
|
||||||
|
echo "Aborted"
|
||||||
|
rm "$TEMP_SECRET_FILE"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
kubectl apply -f "$TEMP_SECRET_FILE"
|
||||||
|
echo "Secret updated successfully"
|
||||||
|
else
|
||||||
|
kubectl apply -f "$TEMP_SECRET_FILE"
|
||||||
|
echo "Secret created successfully"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Clean up
|
||||||
|
rm "$TEMP_SECRET_FILE"
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "Secret deployed:"
|
||||||
|
echo " Name: $SECRET_NAME"
|
||||||
|
echo " Namespace: $NAMESPACE"
|
||||||
|
echo " Key: secret-key"
|
||||||
45
scripts/full_deploy.sh
Executable file
45
scripts/full_deploy.sh
Executable file
@@ -0,0 +1,45 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# Full deployment script - bumps both container versions by 0.001 and copies database
|
||||||
|
|
||||||
|
DEPLOYMENT_FILE="argocd/deployment.yaml"
|
||||||
|
DB_SOURCE="data/db.sqlite3"
|
||||||
|
DB_DEST="data-loader/preload.sqlite3"
|
||||||
|
|
||||||
|
# Check if deployment file exists
|
||||||
|
if [ ! -f "$DEPLOYMENT_FILE" ]; then
|
||||||
|
echo "Error: $DEPLOYMENT_FILE not found"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Check if source database exists
|
||||||
|
if [ ! -f "$DB_SOURCE" ]; then
|
||||||
|
echo "Error: $DB_SOURCE not found"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Extract current version of data-loader
|
||||||
|
LOADER_VERSION=$(grep -E "image: git.baumann.gr/adebaumann/vgui-data-loader:[0-9]" "$DEPLOYMENT_FILE" | sed -E 's/.*:([0-9.]+)/\1/')
|
||||||
|
|
||||||
|
# Extract current version of main container
|
||||||
|
MAIN_VERSION=$(grep -E "image: git.baumann.gr/adebaumann/vgui:[0-9]" "$DEPLOYMENT_FILE" | grep -v "data-loader" | sed -E 's/.*:([0-9.]+)/\1/')
|
||||||
|
|
||||||
|
if [ -z "$LOADER_VERSION" ] || [ -z "$MAIN_VERSION" ]; then
|
||||||
|
echo "Error: Could not find current versions"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Calculate new versions (add 0.001), preserve leading zero
|
||||||
|
NEW_LOADER_VERSION=$(echo "$LOADER_VERSION + 0.001" | bc | sed 's/^\./0./')
|
||||||
|
NEW_MAIN_VERSION=$(echo "$MAIN_VERSION + 0.001" | bc | sed 's/^\./0./')
|
||||||
|
|
||||||
|
# Update the deployment file
|
||||||
|
sed -i "s|image: git.baumann.gr/adebaumann/labhelper-data-loader:$LOADER_VERSION|image: git.baumann.gr/adebaumann/labhelper-data-loader:$NEW_LOADER_VERSION|" "$DEPLOYMENT_FILE"
|
||||||
|
sed -i "s|image: git.baumann.gr/adebaumann/labhelper:$MAIN_VERSION|image: git.baumann.gr/adebaumann/labhelper:$NEW_MAIN_VERSION|" "$DEPLOYMENT_FILE"
|
||||||
|
|
||||||
|
# Copy database
|
||||||
|
cp "$DB_SOURCE" "$DB_DEST"
|
||||||
|
|
||||||
|
echo "Full deployment prepared:"
|
||||||
|
echo " Data loader: $LOADER_VERSION -> $NEW_LOADER_VERSION"
|
||||||
|
echo " Main container: $MAIN_VERSION -> $NEW_MAIN_VERSION"
|
||||||
|
echo " Database copied to $DB_DEST"
|
||||||
27
scripts/partial_deploy.sh
Executable file
27
scripts/partial_deploy.sh
Executable file
@@ -0,0 +1,27 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# Partial deployment script - bumps main container version by 0.001
|
||||||
|
|
||||||
|
DEPLOYMENT_FILE="argocd/deployment.yaml"
|
||||||
|
|
||||||
|
# Check if file exists
|
||||||
|
if [ ! -f "$DEPLOYMENT_FILE" ]; then
|
||||||
|
echo "Error: $DEPLOYMENT_FILE not found"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Extract current version of main container (labhelper, not labhelper-data-loader)
|
||||||
|
CURRENT_VERSION=$(grep -E "image: git.baumann.gr/adebaumann/vui:[0-9]" "$DEPLOYMENT_FILE" | grep -v "data-loader" | sed -E 's/.*:([0-9.]+)/\1/')
|
||||||
|
|
||||||
|
if [ -z "$CURRENT_VERSION" ]; then
|
||||||
|
echo "Error: Could not find current version"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Calculate new version (add 0.001), preserve leading zero
|
||||||
|
NEW_VERSION=$(echo "$CURRENT_VERSION + 0.001" | bc | sed 's/^\./0./')
|
||||||
|
|
||||||
|
# Update the deployment file (only the main container, not the data-loader)
|
||||||
|
sed -i "s|image: git.baumann.gr/adebaumann/vui:$CURRENT_VERSION|image: git.baumann.gr/adebaumann/vui:$NEW_VERSION|" "$DEPLOYMENT_FILE"
|
||||||
|
|
||||||
|
echo "Partial deployment prepared:"
|
||||||
|
echo " Main container: $CURRENT_VERSION -> $NEW_VERSION"
|
||||||
Reference in New Issue
Block a user