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
|
# Features covered: Processing Instructions
#
# This file tests the parser's performance on Processing Instructions.
# Sourcing this file into Tcl runs the tests and generates output
# for errors. No output means no errors were found.
#
# Copyright (c) 1998-2000 Zveno Pty Ltd.
#
# $Id$
source [file join [file dir [info script]] loadtdom.tcl]
catch {unset result}
proc PI {target data args} {
lappend ::result $target $data
}
test pi-1.1 {PI} {
set ::result {}
set parser [xml::parser pi-1.1 \
-processinginstructioncommand PI]
$parser parse {<?xml version="1.0"?>
<!DOCTYPE Test>
<Test><?Test This is a processing instruction?></Test>
}
$parser free
set ::result
} {Test {This is a processing instruction}}
test pi-1.2 {PI: missing trailing ?} {
set ::result {}
set parser [xml::parser pi-1.2 \
-processinginstructioncommand PI]
set returncode [catch {$parser parse {<?xml version="1.0"?>
<!DOCTYPE Test>
<Test><?Test This is a syntax error></Test>
}} msg]
$parser free
list $returncode [regexp {error "unclosed token" at.+} $msg]
} {1 1}
test pi-2.1 {PI with special characters} {
set ::result {}
set parser [xml::parser pi-2.1 \
-processinginstructioncommand PI]
$parser parse {<?xml version="1.0"?>
<!DOCTYPE Test>
<Test><?Test [if !VMLRender]?></Test>
}
$parser free
set ::result
} {Test {[if !VMLRender]}}
# cleanup
::tcltest::cleanupTests
return
|