File: include.t

package info (click to toggle)
psp 0.5.5-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 4,820 kB
  • ctags: 2,333
  • sloc: perl: 21,074; ansic: 4,553; sh: 2,407; makefile: 461; php: 11; pascal: 6
file content (144 lines) | stat: -rw-r--r-- 4,548 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# -*- perl -*-
# Copyright (c) 2000, FundsXpress Financial Network, Inc.
# This library is free software released "AS IS WITH ALL FAULTS"
# and WITHOUT ANY WARRANTIES under the terms of the GNU Lesser
# General Public License, Version 2.1, a copy of which can be
# found in the "COPYING" file of this distribution.

# $Id: include.t,v 1.1.1.2 2003/12/06 19:47:26 hartmans Exp $

use strict;
use Test;
use Data::Dumper;
use PSP::Parser;

my $n_iterations = 1;
plan tests => $n_iterations * 82;
for (my $n=0; $n<$n_iterations; $n++) {

#create a parser.
my $parser;
ok $parser = PSP::Parser->new();

#print Dumper($parser);
ok !$parser->{verbose};
ok !$parser->{pile_name};
ok !@{$parser->{includepath}};
ok !$parser->{sub_lvl};
ok $parser->{back_compat} eq 1;
ok @{$parser->{propagatable}};
ok %{$parser->{handlers_begin}};
ok %{$parser->{handlers_end}};
ok @{$parser->{stack_text_sub}};
ok @{$parser->{stack_code_sub}};
ok !@{$parser->{stack_handlers}};
ok !@{$parser->{depends}};
ok !%{$parser->{depends_h}};
ok !$parser->{is_cdata};
ok !$parser->{text_to_flush};
ok !$parser->{current_code};
ok !$parser->{current_indent};
ok @{$parser->{stack_decl}};
ok @{$parser->{stack_context}};
ok $parser->{prev_context};
ok $parser->{current_line_n};
ok !$parser->{current_fname};
ok !%{$parser->{preparsed}};
ok !$parser->{debug};

#map { touch("include$_-$$.inc") } qw(0 1 2 3 4);
sub touch_file { open FILE, ">>".$_[0]; close FILE; }
#map { create_file("include.inc","<psp:include src='include.inc'/>\n");
sub create_file { open FILE, ">".shift and print FILE @_ and close FILE; }

ok(-d "tmp" or mkdir "tmp", 0755);
ok create_file("tmp/test.psp","<psp:include src='include-1.inc'/>\n");
ok create_file("tmp/include-1.inc","<psp:include src='include-2.inc'/>\n");
ok create_file("tmp/include-2.inc","<psp:include src='include-3.inc'/>\n");
ok(!-f "tmp/include-3.inc" or unlink("tmp/include-3.inc"));

# parse the input source file.

print STDERR "\nexpect an error==================\n";
ok !$parser->parse_file("tmp/test.psp");
print STDERR "expected an error================\n";

# fix the error.
ok touch_file("tmp/include-3.inc");
ok $parser = PSP::Parser->new();
ok $parser->parse_file("tmp/test.psp");

ok @{$parser->{depends}};
ok %{$parser->{depends_h}};
ok $parser->{current_code};
ok $parser->{current_fname};

#clean up after that test.
ok unlink("tmp/include-3.inc");
ok unlink("tmp/include-2.inc");
ok unlink("tmp/include-1.inc");
ok unlink("tmp/test.psp");

# do a more complex test.
ok(-d "tmp/inc1" or mkdir "tmp/inc1", 0755);
ok(-d "tmp/inc2" or mkdir "tmp/inc2", 0755);
ok(-d "tmp/inc1/inc3" or mkdir "tmp/inc1/inc3", 0755);
ok create_file("tmp/test.psp",
	       "<psp:include src='inc1/include.inc'/>\n");
ok create_file("tmp/inc1/include.inc",
	       "<psp:include src='../inc2/include.inc'/>\n");
ok create_file("tmp/inc2/include.inc",
	       "<psp:include src='../inc1/inc3/include.inc'/>\n");
unlink("tmp/inc1/inc3/include.inc");

ok $parser = PSP::Parser->new();
print STDERR "\nexpect an error==================\n";
ok !$parser->parse_file("tmp/test.psp");
print STDERR "expected an error================\n";

ok touch_file("tmp/inc1/inc3/include.inc");
ok $parser = PSP::Parser->new();
ok $parser->parse_file("tmp/test.psp");

ok unlink("tmp/test.psp");
ok unlink("tmp/inc1/include.inc");
ok unlink("tmp/inc2/include.inc");
ok unlink("tmp/inc1/inc3/include.inc");
ok rmdir("tmp/inc1/inc3");
ok rmdir("tmp/inc1");
ok rmdir("tmp/inc2");

ok create_file("tmp/test.psp","<psp:include src='include1.inc'/>\n");
ok(-d "tmp/inc" or mkdir "tmp/inc", 0755);
ok(-d "tmp/inc/erf" or mkdir "tmp/inc/erf", 0755);
ok create_file("tmp/inc/include1.inc",
	       "<psp:include src='erf/include2.inc'/>\n");
ok create_file("tmp/inc/erf/include2.inc",
	       "<psp:include src='include3.inc'/>\n");
ok(!-f "tmp/inc/include3.inc" or unlink("tmp/inc/include3.inc"));

ok $parser = PSP::Parser->new();
print STDERR "\nexpect an error==================\n";
ok !$parser->parse_file("tmp/test.psp",["tmp/inc"]);
print STDERR "expected an error================\n";

ok touch_file("tmp/inc/include3.inc");
ok $parser = PSP::Parser->new();
ok $parser->parse_file("tmp/test.psp",["tmp/inc"]);

#print Dumper($parser);
ok @{$parser->{depends}};
ok %{$parser->{depends_h}};
ok $parser->{current_code};
ok $parser->{current_fname};

ok unlink("tmp/test.psp");
ok unlink("tmp/inc/include1.inc");
ok unlink("tmp/inc/include3.inc");
ok unlink("tmp/inc/erf/include2.inc");
ok rmdir("tmp/inc/erf");
ok rmdir("tmp/inc");
ok rmdir("tmp");


}#for $n_iterations