File: 31-input-from-variable.t

package info (click to toggle)
liblatex-driver-perl 1.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 512 kB
  • sloc: perl: 2,776; makefile: 4
file content (57 lines) | stat: -rwxr-xr-x 1,878 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/perl
# $Id: 31-input-from-variable.t 81 2011-09-18 09:19:03Z andrew $

use strict;
use blib;
use FindBin qw($Bin);
use File::Spec;
use lib ("$Bin/../lib", "$Bin/lib");
use Data::Dumper;

use Test::More;
use Test::LaTeX::Driver;
use LaTeX::Driver;
use File::Slurp;

plan skip_all => 'dvips not installed' if system('dvips -v');
plan tests => 11;

tidy_directory($basedir, $docname, $debug);

my $source = read_file($docpath) or die "cannot read the source data";
my $output;
my $drv = LaTeX::Driver->new( source      => \$source,
                              format      => 'ps',
                              output      => \$output,
                              @DEBUGOPTS );

my $systmpdir = $ENV{TMPDIR} || '/tmp';

diag("Checking the formatting of a simple LaTeX document read from a variable");
isa_ok($drv, 'LaTeX::Driver');
my $tmpbasedir = File::Spec->catdir($systmpdir, $LaTeX::Driver::DEFAULT_TMPDIR);
#like($drv->basedir, qr{^$tmpbasedir\w+$}, "checking basedir");
is($drv->basename, $LaTeX::Driver::DEFAULT_DOCNAME, "checking basename");
#is($drv->basepath, File::Spec->catpath('', $drv->basedir, $LaTeX::Driver::DEFAULT_DOCNAME), "checking basepath");
is($drv->formatter, 'latex', "formatter");

ok($drv->run, "formatting $docname");

is($drv->stats->{runs}{latex},         1, "should have run latex once");
is($drv->stats->{runs}{bibtex},    undef, "should not have run bibtex");
is($drv->stats->{runs}{makeindex}, undef, "should not have run makeindex");
is($drv->stats->{runs}{dvips},         1, "should have run dvips once");

like($output, qr/^%!PS/, "got postscript in output string");

my $tmpdir = $drv->basedir;
ok(-d $tmpdir, "temporary directory exists before undeffing driver");
undef $drv;
ok(!-d $tmpdir, "temporary directory deleted after undeffing driver");


tidy_directory($basedir, $docname, $debug)
  unless $no_cleanup;


exit(0);