The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/perl

use strict;
use warnings;

use Test::More tests => 2;

use File::Spec;

use XML::LibXML;

use XML::Grammar::Screenplay::ToDocBook;

my @tests = (qw(
        with-internal-description
    ));

sub load_xml
{
    my $path = shift;

    open my $in, "<", $path;
    my $contents;
    {
        local $/;
        $contents = <$in>
    }
    close($in);
    return $contents;
}

# TEST:$num_texts=1

my $converter = XML::Grammar::Screenplay::ToDocBook->new({
        data_dir => File::Spec->catdir(File::Spec->curdir(), "extradata"),
    });

foreach my $fn (@tests)
{
    my $docbook_text = $converter->translate_to_docbook({
            source => { file => "t/screenplay/data/xml/$fn.xml", },
            output => "string",
        }
        );

    # TEST*$num_texts*2

    my $parser = XML::LibXML->new();

    my $doc = $parser->parse_string($docbook_text);

    is (
        scalar(() = $doc->findnodes(q{//article[@id='index']})),
        1,
        "Found one article with id index",
    );

    ok (
        (scalar(() = $doc->findnodes(q{//section[@role='description']}))
            >=
            1
        ),
        "Found role=description sections",
    );
}

1;