feat: add full Zonemaster stack with Docker and Spanish UI

- Clone all 5 Zonemaster component repos (LDNS, Engine, CLI, Backend, GUI)
- Dockerfile.backend: 8-stage multi-stage build LDNS→Engine→CLI→Backend
- Dockerfile.gui: Astro static build served via nginx
- docker-compose.yml: backend (internal) + frontend (port 5353)
- nginx.conf: root redirects to /es/, /api/ proxied to backend
- zonemaster-gui/config.ts: defaultLanguage set to 'es' (Spanish)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-21 08:19:24 +02:00
commit 8d4eaa1489
1567 changed files with 204155 additions and 0 deletions

View File

@@ -0,0 +1,163 @@
use strict;
use warnings;
use Test::More;
use File::Basename;
use File::Spec::Functions qw( rel2abs );
use lib dirname( rel2abs( $0 ) );
BEGIN {
use_ok( q{Zonemaster::Engine} );
use_ok( q{Zonemaster::Engine::Nameserver} );
use_ok( q{Zonemaster::Engine::Test::Nameserver} );
use_ok( q{TestUtil}, qw( perform_testcase_testing ) );
}
###########
# nameserver15 - https://github.com/zonemaster/zonemaster/blob/master/docs/public/specifications/test-zones/Nameserver-TP/nameserver15.md
my $test_module = 'Nameserver';
my $test_case = 'nameserver15';
my @all_tags = qw(N15_NO_VERSION_REVEALED
N15_ERROR_ON_VERSION_QUERY
N15_SOFTWARE_VERSION
N15_WRONG_CLASS);
# Common hint file (test-zone-data/COMMON/hintfile)
Zonemaster::Engine::Recursor->remove_fake_addresses( '.' );
Zonemaster::Engine::Recursor->add_fake_addresses( '.',
{ 'ns1' => [ '127.1.0.1', 'fda1:b2:c3::127:1:0:1' ],
'ns2' => [ '127.1.0.2', 'fda1:b2:c3::127:1:0:2' ],
}
);
# Test zone scenarios
# - Documentation: L<TestUtil/perform_testcase_testing()>
# - Format: { SCENARIO_NAME => [
# testable,
# zone_name,
# [ MANDATORY_MESSAGE_TAGS ],
# [ FORBIDDEN_MESSAGE_TAGS ],
# [ UNDELEGATED_NS ],
# [ UNDELEGATED_DS ],
# ] }
#
# - One of MANDATORY_MESSAGE_TAGS and FORBIDDEN_MESSAGE_TAGS may be undefined.
# See documentation for the meaning of that.
my %subtests = (
'NO-VERSION-REVEALED-1' => [
1,
q(no-version-revealed-1.nameserver15.xa),
[ qw(N15_NO_VERSION_REVEALED) ],
undef,
[],
[]
],
'NO-VERSION-REVEALED-2' => [
1,
q(no-version-revealed-2.nameserver15.xa),
[ qw(N15_NO_VERSION_REVEALED) ],
undef,
[],
[]
],
'NO-VERSION-REVEALED-3' => [
1,
q(no-version-revealed-3.nameserver15.xa),
[ qw(N15_NO_VERSION_REVEALED) ],
undef,
[],
[]
],
'NO-VERSION-REVEALED-4' => [
1,
q(no-version-revealed-4.nameserver15.xa),
[ qw(N15_NO_VERSION_REVEALED) ],
undef,
[],
[]
],
'NO-VERSION-REVEALED-5' => [
1,
q(no-version-revealed-5.nameserver15.xa),
[ qw(N15_NO_VERSION_REVEALED) ],
undef,
[],
[]
],
'NO-VERSION-REVEALED-6' => [
1,
q(no-version-revealed-6.nameserver15.xa),
[ qw(N15_NO_VERSION_REVEALED) ],
undef,
[],
[]
],
'ERROR-ON-VERSION-QUERY-1' => [
1,
q(error-on-version-query-1.nameserver15.xa),
[ qw(N15_ERROR_ON_VERSION_QUERY N15_NO_VERSION_REVEALED) ],
undef,
[],
[]
],
'ERROR-ON-VERSION-QUERY-2' => [
1,
q(error-on-version-query-2.nameserver15.xa),
[ qw(N15_ERROR_ON_VERSION_QUERY N15_NO_VERSION_REVEALED) ],
undef,
[],
[]
],
'SOFTWARE-VERSION-1' => [
1,
q(software-version-1.nameserver15.xa),
[ qw(N15_SOFTWARE_VERSION) ],
undef,
[],
[]
],
'SOFTWARE-VERSION-2' => [
1,
q(software-version-2.nameserver15.xa),
[ qw(N15_SOFTWARE_VERSION) ],
undef,
[],
[]
],
'WRONG-CLASS-1' => [
1,
q(wrong-class-1.nameserver15.xa),
[ qw(N15_SOFTWARE_VERSION N15_WRONG_CLASS) ],
undef,
[],
[]
],
'WRONG-CLASS-2' => [
1,
q(wrong-class-2.nameserver15.xa),
[ qw(N15_SOFTWARE_VERSION N15_WRONG_CLASS) ],
undef,
[],
[]
]
);
###########
my $datafile = 't/' . basename ($0, '.t') . '.data';
if ( not $ENV{ZONEMASTER_RECORD} ) {
die q{Stored data file missing} if not -r $datafile;
Zonemaster::Engine::Nameserver->restore( $datafile );
Zonemaster::Engine::Profile->effective->set( q{no_network}, 1 );
}
Zonemaster::Engine::Profile->effective->merge( Zonemaster::Engine::Profile->from_json( qq({ "test_cases": [ "$test_case" ] }) ) );
perform_testcase_testing( $test_case, $test_module, \@all_tags, \%subtests, $ENV{ZONEMASTER_SELECTED_SCENARIOS}, $ENV{ZONEMASTER_DISABLED_SCENARIOS} );
if ( $ENV{ZONEMASTER_RECORD} ) {
Zonemaster::Engine::Nameserver->save( $datafile );
}
done_testing;