diff options
author | Mike Hommey <glandium@debian.org> | 2006-01-31 19:25:18 +0100 |
---|---|---|
committer | Mike Hommey <glandium@debian.org> | 2006-01-31 19:25:18 +0100 |
commit | c5d565931c4823dc8f62fffcb65aecfec516f7b9 (patch) | |
tree | 9550b0b41e973d707cbbca74333c1b05ab89e5ee /result/XPath | |
parent | 0fd83af441e251fc23fc1af7959fd6ecfa105fe1 (diff) | |
download | libxml2-upstream/2.6.23.dfsg.2.tar.gz |
Removing tests and resultsupstream/2.6.23.dfsg.2
Diffstat (limited to 'result/XPath')
26 files changed, 0 insertions, 2025 deletions
diff --git a/result/XPath/expr/base b/result/XPath/expr/base deleted file mode 100644 index 3552866..0000000 --- a/result/XPath/expr/base +++ /dev/null @@ -1,20 +0,0 @@ - -======================== -Expression: 1 -Object is a number : 1 - -======================== -Expression: 1+2 -Object is a number : 3 - -======================== -Expression: 2*3 -Object is a number : 6 - -======================== -Expression: 1+2*3+4 -Object is a number : 11 - -======================== -Expression: (1+2)*(3+4) -Object is a number : 21 diff --git a/result/XPath/expr/compare b/result/XPath/expr/compare deleted file mode 100644 index 21a88d0..0000000 --- a/result/XPath/expr/compare +++ /dev/null @@ -1,184 +0,0 @@ - -======================== -Expression: 0<0 -Object is a Boolean : false - -======================== -Expression: 0<=0 -Object is a Boolean : true - -======================== -Expression: 0>0 -Object is a Boolean : false - -======================== -Expression: 0>=0 -Object is a Boolean : true - -======================== -Expression: 0<1 -Object is a Boolean : true - -======================== -Expression: 0<=1 -Object is a Boolean : true - -======================== -Expression: 0>1 -Object is a Boolean : false - -======================== -Expression: 0>=1 -Object is a Boolean : false - -======================== -Expression: 1<0 -Object is a Boolean : false - -======================== -Expression: 1<=0 -Object is a Boolean : false - -======================== -Expression: 1>0 -Object is a Boolean : true - -======================== -Expression: 1>=0 -Object is a Boolean : true - -======================== -Expression: 1<1 -Object is a Boolean : false - -======================== -Expression: 1<=1 -Object is a Boolean : true - -======================== -Expression: 1>1 -Object is a Boolean : false - -======================== -Expression: 1>=1 -Object is a Boolean : true - -======================== -Expression: '0'<1 -Object is a Boolean : true - -======================== -Expression: '0'<=1 -Object is a Boolean : true - -======================== -Expression: '0'>1 -Object is a Boolean : false - -======================== -Expression: '0'>=1 -Object is a Boolean : false - -======================== -Expression: 0<'1.2' -Object is a Boolean : true - -======================== -Expression: 0<='1.2' -Object is a Boolean : true - -======================== -Expression: 0>'1.2' -Object is a Boolean : false - -======================== -Expression: 0>='1.2' -Object is a Boolean : false - -======================== -Expression: 0<'-0.2' -Object is a Boolean : false - -======================== -Expression: 0<='-0.2' -Object is a Boolean : false - -======================== -Expression: 0>'-0.2' -Object is a Boolean : true - -======================== -Expression: 0>='-0.2' -Object is a Boolean : true - -======================== -Expression: false()<1 -Object is a Boolean : true - -======================== -Expression: false()<=1 -Object is a Boolean : true - -======================== -Expression: 0>true() -Object is a Boolean : false - -======================== -Expression: 0>=true() -Object is a Boolean : false - -======================== -Expression: 'a' > 'a' -Object is a Boolean : false - -======================== -Expression: 'a' > 'b' -Object is a Boolean : false - -======================== -Expression: 'b' > 'a' -Object is a Boolean : false - -======================== -Expression: 'a' < 'a' -Object is a Boolean : false - -======================== -Expression: 'a' < 'b' -Object is a Boolean : false - -======================== -Expression: 'b' < 'a' -Object is a Boolean : false - -======================== -Expression: 'a' >= 'a' -Object is a Boolean : false - -======================== -Expression: 'a' >= 'b' -Object is a Boolean : false - -======================== -Expression: 'b' >= 'a' -Object is a Boolean : false - -======================== -Expression: 'a' <= 'a' -Object is a Boolean : false - -======================== -Expression: 'a' <= 'b' -Object is a Boolean : false - -======================== -Expression: 'b' <= 'a' -Object is a Boolean : false - -======================== -Expression: 'a' > '0.0' -Object is a Boolean : false - -======================== -Expression: 'a' < '0.0' -Object is a Boolean : false diff --git a/result/XPath/expr/equality b/result/XPath/expr/equality deleted file mode 100644 index 44b4c22..0000000 --- a/result/XPath/expr/equality +++ /dev/null @@ -1,104 +0,0 @@ - -======================== -Expression: 1=1 -Object is a Boolean : true - -======================== -Expression: 1!=1 -Object is a Boolean : false - -======================== -Expression: 1=0 -Object is a Boolean : false - -======================== -Expression: 1!=0 -Object is a Boolean : true - -======================== -Expression: true()=true() -Object is a Boolean : true - -======================== -Expression: true()!=true() -Object is a Boolean : false - -======================== -Expression: true()=false() -Object is a Boolean : false - -======================== -Expression: false()!=true() -Object is a Boolean : true - -======================== -Expression: 'test'='test' -Object is a Boolean : true - -======================== -Expression: 'test'!='test' -Object is a Boolean : false - -======================== -Expression: 'test2'='test' -Object is a Boolean : false - -======================== -Expression: 'test2'!='test' -Object is a Boolean : true - -======================== -Expression: false()=0 -Object is a Boolean : true - -======================== -Expression: false()!=0 -Object is a Boolean : false - -======================== -Expression: false()=1 -Object is a Boolean : false - -======================== -Expression: false()!=1 -Object is a Boolean : true - -======================== -Expression: 0=true() -Object is a Boolean : false - -======================== -Expression: 0!=true() -Object is a Boolean : true - -======================== -Expression: 1=true() -Object is a Boolean : true - -======================== -Expression: 1!=true() -Object is a Boolean : false - -======================== -Expression: true()='test' -Object is a Boolean : true - -======================== -Expression: false()='test' -Object is a Boolean : false - -======================== -Expression: 'test'!=true() -Object is a Boolean : false - -======================== -Expression: 'test'!=false() -Object is a Boolean : true - -======================== -Expression: 'a'=0.0 -Object is a Boolean : false - -======================== -Expression: 'a'!=0.0 -Object is a Boolean : true diff --git a/result/XPath/expr/floats b/result/XPath/expr/floats deleted file mode 100644 index b6255ce..0000000 --- a/result/XPath/expr/floats +++ /dev/null @@ -1,244 +0,0 @@ - -======================== -Expression: 1 -Object is a number : 1 - -======================== -Expression: 123 -Object is a number : 123 - -======================== -Expression: 1.23 -Object is a number : 1.23 - -======================== -Expression: 0.123 -Object is a number : 0.123 - -======================== -Expression: 4. -Object is a number : 4 - -======================== -Expression: .4 -Object is a number : 0.4 - -======================== -Expression: 1.23e3 -Object is a number : 1230 - -======================== -Expression: 1.23e-3 -Object is a number : 0.00123 - -======================== -Expression: 1 div 0 -Object is a number : Infinity - -======================== -Expression: -1 div 0 -Object is a number : -Infinity - -======================== -Expression: 0 div 0 -Object is a number : NaN - -======================== -Expression: 1 div -0 -Object is a number : -Infinity - -======================== -Expression: (1 div 0) > 0 -Object is a Boolean : true - -======================== -Expression: (1 div 0) < 0 -Object is a Boolean : false - -======================== -Expression: (-1 div 0) > 0 -Object is a Boolean : false - -======================== -Expression: (-1 div 0) < 0 -Object is a Boolean : true - -======================== -Expression: (0 div 0) > 0 -Object is a Boolean : false - -======================== -Expression: (0 div 0) < 0 -Object is a Boolean : false - -======================== -Expression: (1 div -0) > 0 -Object is a Boolean : false - -======================== -Expression: (1 div -0) < 0 -Object is a Boolean : true - -======================== -Expression: 0 div 0 = 0 div 0 -Object is a Boolean : false - -======================== -Expression: 0 div 0 != 0 div 0 -Object is a Boolean : true - -======================== -Expression: 0 div 0 > 0 div 0 -Object is a Boolean : false - -======================== -Expression: 0 div 0 < 0 div 0 -Object is a Boolean : false - -======================== -Expression: 0 div 0 >= 0 div 0 -Object is a Boolean : false - -======================== -Expression: 0 div 0 <= 0 div 0 -Object is a Boolean : false - -======================== -Expression: 1 div 0 = -1 div 0 -Object is a Boolean : false - -======================== -Expression: 1 div 0 != -1 div 0 -Object is a Boolean : true - -======================== -Expression: 1 div 0 > -1 div 0 -Object is a Boolean : true - -======================== -Expression: 1 div 0 < -1 div 0 -Object is a Boolean : false - -======================== -Expression: 1 div 0 >= -1 div 0 -Object is a Boolean : true - -======================== -Expression: 1 div 0 <= -1 div 0 -Object is a Boolean : false - -======================== -Expression: 1 div 0 = 1 div 0 -Object is a Boolean : true - -======================== -Expression: 1 div 0 != 1 div 0 -Object is a Boolean : false - -======================== -Expression: 1 div 0 > 1 div 0 -Object is a Boolean : false - -======================== -Expression: 1 div 0 < 1 div 0 -Object is a Boolean : false - -======================== -Expression: 1 div 0 >= -1 div 0 -Object is a Boolean : true - -======================== -Expression: 1 div 0 <= -1 div 0 -Object is a Boolean : false - -======================== -Expression: -2 div 0 = -1 div 0 -Object is a Boolean : true - -======================== -Expression: 1 div floor(0.1) -Object is a number : Infinity - -======================== -Expression: 1 div floor(-0.1) -Object is a number : -1 - -======================== -Expression: 1 div floor(-0) -Object is a number : -Infinity - -======================== -Expression: 1 div floor(0) -Object is a number : Infinity - -======================== -Expression: 1 div ceiling(0.1) -Object is a number : 1 - -======================== -Expression: 1 div ceiling(-0.1) -Object is a number : -Infinity - -======================== -Expression: 1 div ceiling(-0) -Object is a number : -Infinity - -======================== -Expression: 1 div ceiling(0) -Object is a number : Infinity - -======================== -Expression: 1 div round(0.1) -Object is a number : Infinity - -======================== -Expression: 1 div round(-0.1) -Object is a number : -Infinity - -======================== -Expression: 1 div round(-0) -Object is a number : -Infinity - -======================== -Expression: 1 div round(0) -Object is a number : Infinity - -======================== -Expression: 1 div number('f') -Object is a number : NaN - -======================== -Expression: number('f') div 1 -Object is a number : NaN - -======================== -Expression: 1 div (1 div 0) -Object is a number : 0 - -======================== -Expression: (1 div 0) div 1 -Object is a number : Infinity - -======================== -Expression: -(1 div 0) div 1 -Object is a number : -Infinity - -======================== -Expression: 5 mod 2 -Object is a number : 1 - -======================== -Expression: 5 mod -2 -Object is a number : 1 - -======================== -Expression: -5 mod 2 -Object is a number : -1 - -======================== -Expression: -5 mod -2 -Object is a number : -1 - -======================== -Expression: 8 mod 3 = 2 -Object is a Boolean : true diff --git a/result/XPath/expr/functions b/result/XPath/expr/functions deleted file mode 100644 index 10cc27e..0000000 --- a/result/XPath/expr/functions +++ /dev/null @@ -1,100 +0,0 @@ - -======================== -Expression: true() -Object is a Boolean : true - -======================== -Expression: false() -Object is a Boolean : false - -======================== -Expression: number("1.5") -Object is a number : 1.5 - -======================== -Expression: number('abc') -Object is a number : NaN - -======================== -Expression: -number('abc') -Object is a number : NaN - -======================== -Expression: floor(0.1) -Object is a number : 0 - -======================== -Expression: floor(-0.1) -Object is a number : -1 - -======================== -Expression: floor(-0) -Object is a number : 0 - -======================== -Expression: floor(0) -Object is a number : 0 - -======================== -Expression: floor(5.2) -Object is a number : 5 - -======================== -Expression: floor(-5.2) -Object is a number : -6 - -======================== -Expression: ceiling(0.1) -Object is a number : 1 - -======================== -Expression: ceiling(-0.1) -Object is a number : 0 - -======================== -Expression: ceiling(-0) -Object is a number : 0 - -======================== -Expression: ceiling(0) -Object is a number : 0 - -======================== -Expression: ceiling(5.2) -Object is a number : 6 - -======================== -Expression: ceiling(-5.2) -Object is a number : -5 - -======================== -Expression: round(0.1) -Object is a number : 0 - -======================== -Expression: round(5.2) -Object is a number : 5 - -======================== -Expression: round(5.5) -Object is a number : 6 - -======================== -Expression: round(5.6) -Object is a number : 6 - -======================== -Expression: round(-0.1) -Object is a number : 0 - -======================== -Expression: round(-5.2) -Object is a number : -5 - -======================== -Expression: round(-5.5) -Object is a number : -5 - -======================== -Expression: round(-5.6) -Object is a number : -6 diff --git a/result/XPath/expr/strings b/result/XPath/expr/strings deleted file mode 100644 index fad7048..0000000 --- a/result/XPath/expr/strings +++ /dev/null @@ -1,136 +0,0 @@ - -======================== -Expression: string(5) -Object is a string : 5 - -======================== -Expression: string(0.5) -Object is a string : 0.5 - -======================== -Expression: string(-0.5) -Object is a string : -0.5 - -======================== -Expression: string(true()) -Object is a string : true - -======================== -Expression: string(false()) -Object is a string : false - -======================== -Expression: concat("titi","toto") -Object is a string : tititoto - -======================== -Expression: concat("titi","toto","tata") -Object is a string : tititototata - -======================== -Expression: concat("titi",'toto') -Object is a string : tititoto - -======================== -Expression: concat("titi",'toto',"tata","last") -Object is a string : tititototatalast - -======================== -Expression: starts-with("tititoto","titi") -Object is a Boolean : true - -======================== -Expression: starts-with("tititoto","to") -Object is a Boolean : false - -======================== -Expression: contains("tititototata","titi") -Object is a Boolean : true - -======================== -Expression: contains("tititototata","toto") -Object is a Boolean : true - -======================== -Expression: contains("tititototata","tata") -Object is a Boolean : true - -======================== -Expression: contains("tititototata","tita") -Object is a Boolean : false - -======================== -Expression: substring("12345",2,3) -Object is a string : 234 - -======================== -Expression: substring("12345",2) -Object is a string : 2345 - -======================== -Expression: substring("12345",-4) -Object is a string : 12345 - -======================== -Expression: substring("12345",3.4) -Object is a string : 345 - -======================== -Expression: substring("12345",3.6) -Object is a string : 45 - -======================== -Expression: substring("12345",1.5,2.6) -Object is a string : 234 - -======================== -Expression: substring("12345",2.2,2.2) -Object is a string : 23 - -======================== -Expression: substring("12345",0,3) -Object is a string : 12 - -======================== -Expression: substring("12345",-8,10) -Object is a string : 1 - -======================== -Expression: substring("12345",4,-10) -Object is a string : - -======================== -Expression: substring("12345",0 div 0, 3) -Object is a string : - -======================== -Expression: substring("12345",1, 0 div 0) -Object is a string : - -======================== -Expression: substring("12345",1 div 0, 3) -Object is a string : - -======================== -Expression: substring("12345",3,-1 div 0) -Object is a string : - -======================== -Expression: substring("12345",-42, 1 div 0) -Object is a string : 12345 - -======================== -Expression: substring("12345",-1 div 0, 1 div 0) -Object is a string : - -======================== -Expression: substring("12345",-1 div 0,5) -Object is a string : - -======================== -Expression: string-length("") -Object is a number : 0 - -======================== -Expression: string-length("titi") -Object is a number : 4 diff --git a/result/XPath/tests/chaptersbase b/result/XPath/tests/chaptersbase deleted file mode 100644 index 03c6567..0000000 --- a/result/XPath/tests/chaptersbase +++ /dev/null @@ -1,115 +0,0 @@ - -======================== -Expression: /child::EXAMPLE -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT EXAMPLE - ATTRIBUTE prop1 - TEXT - content=gnome is great - ATTRIBUTE prop2 - TEXT - content=& linux too - -======================== -Expression: /child::* -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT EXAMPLE - ATTRIBUTE prop1 - TEXT - content=gnome is great - ATTRIBUTE prop2 - TEXT - content=& linux too - -======================== -Expression: /child::EXAMPLE/child::head -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT head - -======================== -Expression: /child::EXAMPLE/child::* -Object is a Node Set : -Set contains 6 nodes: -1 ELEMENT head -2 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter1 -3 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter2 -4 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter3 -5 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter4 -6 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter5 - -======================== -Expression: /child::EXAMPLE/child::head/child::title -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT title - -======================== -Expression: /child::EXAMPLE/child::head/child::title/child::text() -Object is a Node Set : -Set contains 1 nodes: -1 TEXT - content=Welcome to Gnome - -======================== -Expression: /child::EXAMPLE/child::head/node() -Object is a Node Set : -Set contains 3 nodes: -1 TEXT - content= -2 ELEMENT title -3 TEXT - content= - -======================== -Expression: /descendant::title -Object is a Node Set : -Set contains 6 nodes: -1 ELEMENT title -2 ELEMENT title -3 ELEMENT title -4 ELEMENT title -5 ELEMENT title -6 ELEMENT title - -======================== -Expression: /descendant::p/ancestor::chapter -Object is a Node Set : -Set contains 5 nodes: -1 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter1 -2 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter2 -3 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter3 -4 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter4 -5 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter5 diff --git a/result/XPath/tests/chaptersprefol b/result/XPath/tests/chaptersprefol deleted file mode 100644 index a12c937..0000000 --- a/result/XPath/tests/chaptersprefol +++ /dev/null @@ -1,100 +0,0 @@ - -======================== -Expression: /following::* -Object is a Node Set : -Set contains 0 nodes: - -======================== -Expression: /preceding::* -Object is a Node Set : -Set contains 0 nodes: - -======================== -Expression: /child::EXAMPLE/preceding::* -Object is a Node Set : -Set contains 0 nodes: - -======================== -Expression: /child::EXAMPLE/following::* -Object is a Node Set : -Set contains 0 nodes: - -======================== -Expression: /child::EXAMPLE/child::chapter[3]/preceding::* -Object is a Node Set : -Set contains 10 nodes: -1 ELEMENT head -2 ELEMENT title -3 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter1 -4 ELEMENT title -5 ELEMENT p -6 ELEMENT image - ATTRIBUTE href - TEXT - content=linus.gif -7 ELEMENT p -8 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter2 -9 ELEMENT title -10 ELEMENT p - -======================== -Expression: /child::EXAMPLE/child::chapter[3]/following::* -Object is a Node Set : -Set contains 6 nodes: -1 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter4 -2 ELEMENT title -3 ELEMENT p -4 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter5 -5 ELEMENT title -6 ELEMENT p - -======================== -Expression: /child::EXAMPLE/child::chapter[1]/image/preceding::* -Object is a Node Set : -Set contains 4 nodes: -1 ELEMENT head -2 ELEMENT title -3 ELEMENT title -4 ELEMENT p - -======================== -Expression: /child::EXAMPLE/child::chapter[1]/image/following::* -Object is a Node Set : -Set contains 13 nodes: -1 ELEMENT p -2 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter2 -3 ELEMENT title -4 ELEMENT p -5 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter3 -6 ELEMENT title -7 ELEMENT p -8 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter4 -9 ELEMENT title -10 ELEMENT p -11 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter5 -12 ELEMENT title -13 ELEMENT p diff --git a/result/XPath/tests/idsimple b/result/XPath/tests/idsimple deleted file mode 100644 index 891b52e..0000000 --- a/result/XPath/tests/idsimple +++ /dev/null @@ -1,33 +0,0 @@ - -======================== -Expression: //*[@id="root"] -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT EXAMPLE - ATTRIBUTE id - TEXT - content=root - ATTRIBUTE prop1 - TEXT - content=gnome is great - ATTRIBUTE prop2 - TEXT - content=& linux too - -======================== -Expression: //*[@id="chapter2"] -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter2 - -======================== -Expression: //*[@id="chapter5"] -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter5 diff --git a/result/XPath/tests/langsimple b/result/XPath/tests/langsimple deleted file mode 100644 index d8d7afd..0000000 --- a/result/XPath/tests/langsimple +++ /dev/null @@ -1,60 +0,0 @@ - -======================== -Expression: //*[lang('en')] -Object is a Node Set : -Set contains 9 nodes: -1 ELEMENT b - ATTRIBUTE lang - TEXT - content=en -2 ELEMENT x -3 ELEMENT x -4 ELEMENT para - ATTRIBUTE lang - TEXT - content=en -5 ELEMENT div - ATTRIBUTE lang - TEXT - content=en -6 ELEMENT para -7 ELEMENT para - ATTRIBUTE lang - TEXT - content=EN -8 ELEMENT para - ATTRIBUTE lang - TEXT - content=en-us -9 ELEMENT para - ATTRIBUTE lang - TEXT - content=EN-US - -======================== -Expression: //*[lang('en-us')] -Object is a Node Set : -Set contains 2 nodes: -1 ELEMENT para - ATTRIBUTE lang - TEXT - content=en-us -2 ELEMENT para - ATTRIBUTE lang - TEXT - content=EN-US - -======================== -Expression: //*[lang('en-gb')] -Object is a Node Set : -Set contains 0 nodes: - -======================== -Expression: //*[lang('fr')] -Object is a Node Set : -Set contains 0 nodes: - -======================== -Expression: //*[lang('')] -Object is a Node Set : -Set contains 0 nodes: diff --git a/result/XPath/tests/mixedpat b/result/XPath/tests/mixedpat deleted file mode 100644 index 3be0c49..0000000 --- a/result/XPath/tests/mixedpat +++ /dev/null @@ -1,101 +0,0 @@ - -======================== -Expression: s -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT s - ATTRIBUTE p - TEXT - content=root - -======================== -Expression: s|p1/s -Object is a Node Set : -Set contains 2 nodes: -1 ELEMENT s - ATTRIBUTE p - TEXT - content=root -2 ELEMENT s - ATTRIBUTE p - TEXT - content=p1 - -======================== -Expression: s|/root/p1/s -Object is a Node Set : -Set contains 2 nodes: -1 ELEMENT s - ATTRIBUTE p - TEXT - content=root -2 ELEMENT s - ATTRIBUTE p - TEXT - content=p1 - -======================== -Expression: /root/p1/s|s -Object is a Node Set : -Set contains 2 nodes: -1 ELEMENT s - ATTRIBUTE p - TEXT - content=root -2 ELEMENT s - ATTRIBUTE p - TEXT - content=p1 - -======================== -Expression: //s -Object is a Node Set : -Set contains 3 nodes: -1 ELEMENT s - ATTRIBUTE p - TEXT - content=root -2 ELEMENT s - ATTRIBUTE p - TEXT - content=p1 -3 ELEMENT s - ATTRIBUTE p - TEXT - content=p2 - -======================== -Expression: //s|p1 -Object is a Node Set : -Set contains 4 nodes: -1 ELEMENT s - ATTRIBUTE p - TEXT - content=root -2 ELEMENT p1 -3 ELEMENT s - ATTRIBUTE p - TEXT - content=p1 -4 ELEMENT s - ATTRIBUTE p - TEXT - content=p2 - -======================== -Expression: p1|//s -Object is a Node Set : -Set contains 4 nodes: -1 ELEMENT s - ATTRIBUTE p - TEXT - content=root -2 ELEMENT p1 -3 ELEMENT s - ATTRIBUTE p - TEXT - content=p1 -4 ELEMENT s - ATTRIBUTE p - TEXT - content=p2 diff --git a/result/XPath/tests/nodespat b/result/XPath/tests/nodespat deleted file mode 100644 index 1efd87f..0000000 --- a/result/XPath/tests/nodespat +++ /dev/null @@ -1,94 +0,0 @@ - -======================== -Expression: /. -Object is a Node Set : -Set contains 1 nodes: -1 / - -======================== -Expression: //. -Object is a Node Set : -Set contains 12 nodes: -1 / -2 ELEMENT root -3 ELEMENT foo -4 TEXT - content=txt -5 COMMENT - content=hello -6 CDATA_SECTION - content=data -7 PI target - content=data -8 ELEMENT bar -9 TEXT - content=txt -10 COMMENT - content=hello -11 CDATA_SECTION - content=data -12 PI target - content=data - -======================== -Expression: /root//. -Object is a Node Set : -Set contains 11 nodes: -1 ELEMENT root -2 ELEMENT foo -3 TEXT - content=txt -4 COMMENT - content=hello -5 CDATA_SECTION - content=data -6 PI target - content=data -7 ELEMENT bar -8 TEXT - content=txt -9 COMMENT - content=hello -10 CDATA_SECTION - content=data -11 PI target - content=data - -======================== -Expression: //.//./././/. -Object is a Node Set : -Set contains 12 nodes: -1 / -2 ELEMENT root -3 ELEMENT foo -4 TEXT - content=txt -5 COMMENT - content=hello -6 CDATA_SECTION - content=data -7 PI target - content=data -8 ELEMENT bar -9 TEXT - content=txt -10 COMMENT - content=hello -11 CDATA_SECTION - content=data -12 PI target - content=data - -======================== -Expression: /root//././/bar//. -Object is a Node Set : -Set contains 5 nodes: -1 ELEMENT bar -2 TEXT - content=txt -3 COMMENT - content=hello -4 CDATA_SECTION - content=data -5 PI target - content=data diff --git a/result/XPath/tests/simpleabbr b/result/XPath/tests/simpleabbr deleted file mode 100644 index 85da41a..0000000 --- a/result/XPath/tests/simpleabbr +++ /dev/null @@ -1,81 +0,0 @@ - -======================== -Expression: /EXAMPLE -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT EXAMPLE - ATTRIBUTE prop1 - TEXT - content=gnome is great - ATTRIBUTE prop2 - TEXT - content=& linux too - -======================== -Expression: /EXAMPLE/head -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT head - -======================== -Expression: /EXAMPLE/chapter[1] -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT chapter - -======================== -Expression: //p -Object is a Node Set : -Set contains 2 nodes: -1 ELEMENT p -2 ELEMENT p - -======================== -Expression: //chapter/image -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT image - ATTRIBUTE href - TEXT - content=linus.gif - -======================== -Expression: //p/text() -Object is a Node Set : -Set contains 2 nodes: -1 TEXT - content=bla bla bla ... -2 TEXT - content=... - -======================== -Expression: //p/text()[position()=1] -Object is a Node Set : -Set contains 2 nodes: -1 TEXT - content=bla bla bla ... -2 TEXT - content=... - -======================== -Expression: //p/text()[position()=last()] -Object is a Node Set : -Set contains 2 nodes: -1 TEXT - content=bla bla bla ... -2 TEXT - content=... - -======================== -Expression: (//p/text())[position()=1] -Object is a Node Set : -Set contains 1 nodes: -1 TEXT - content=bla bla bla ... - -======================== -Expression: (//p/text())[position()=last()] -Object is a Node Set : -Set contains 1 nodes: -1 TEXT - content=... diff --git a/result/XPath/tests/simplebase b/result/XPath/tests/simplebase deleted file mode 100644 index 38fa144..0000000 --- a/result/XPath/tests/simplebase +++ /dev/null @@ -1,73 +0,0 @@ - -======================== -Expression: /child::* -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT EXAMPLE - ATTRIBUTE prop1 - TEXT - content=gnome is great - ATTRIBUTE prop2 - TEXT - content=& linux too - -======================== -Expression: /child::EXAMPLE -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT EXAMPLE - ATTRIBUTE prop1 - TEXT - content=gnome is great - ATTRIBUTE prop2 - TEXT - content=& linux too - -======================== -Expression: /child::EXAMPLE/child::head -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT head - -======================== -Expression: /child::EXAMPLE/child::* -Object is a Node Set : -Set contains 2 nodes: -1 ELEMENT head -2 ELEMENT chapter - -======================== -Expression: /child::EXAMPLE/child::head/child::title -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT title - -======================== -Expression: /child::EXAMPLE/child::head/child::title/child::text() -Object is a Node Set : -Set contains 1 nodes: -1 TEXT - content=Welcome to Gnome - -======================== -Expression: /child::EXAMPLE/child::head/node() -Object is a Node Set : -Set contains 3 nodes: -1 TEXT - content= -2 ELEMENT title -3 TEXT - content= - -======================== -Expression: /descendant::title -Object is a Node Set : -Set contains 2 nodes: -1 ELEMENT title -2 ELEMENT title - -======================== -Expression: /descendant::p/ancestor::chapter -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT chapter diff --git a/result/XPath/tests/usr1check b/result/XPath/tests/usr1check deleted file mode 100644 index 0308991..0000000 --- a/result/XPath/tests/usr1check +++ /dev/null @@ -1,12 +0,0 @@ - -======================== -Expression: //ITEM[1] -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT ITEM - ATTRIBUTE monto - TEXT - content=50.12 - ATTRIBUTE divisa - TEXT - content=DOL diff --git a/result/XPath/tests/vidbase b/result/XPath/tests/vidbase deleted file mode 100644 index 3c7b62f..0000000 --- a/result/XPath/tests/vidbase +++ /dev/null @@ -1,42 +0,0 @@ - -======================== -Expression: id('chapter1') -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter1 - -======================== -Expression: id('chapter3') -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter3 - -======================== -Expression: id('chapter1')/p -Object is a Node Set : -Set contains 4 nodes: -1 ELEMENT p -2 ELEMENT p -3 ELEMENT p -4 ELEMENT p - -======================== -Expression: id('chapter1')//p -Object is a Node Set : -Set contains 4 nodes: -1 ELEMENT p -2 ELEMENT p -3 ELEMENT p -4 ELEMENT p - -======================== -Expression: id('chapter1')/p[1] -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT p diff --git a/result/XPath/xptr/chapterschildseq b/result/XPath/xptr/chapterschildseq deleted file mode 100644 index 396bcac..0000000 --- a/result/XPath/xptr/chapterschildseq +++ /dev/null @@ -1,53 +0,0 @@ - -======================== -Expression: /1/2/3 -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT image - ATTRIBUTE href - TEXT - content=linus.gif - -======================== -Expression: element(/1/2/3) -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT image - ATTRIBUTE href - TEXT - content=linus.gif - -======================== -Expression: element(foo)element(/1/2/3) -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT image - ATTRIBUTE href - TEXT - content=linus.gif - -======================== -Expression: element(/1/2/3)element(foo) -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT image - ATTRIBUTE href - TEXT - content=linus.gif - -======================== -Expression: chapter1/3 -Object is a Node Set : -Set contains 0 nodes: - -======================== -Expression: element(chapter1/3) -Object is empty (NULL) - -======================== -Expression: element(foo)element(chapter1/3) -Object is empty (NULL) - -======================== -Expression: element(chapter1/3)element(foo) -Object is empty (NULL) diff --git a/result/XPath/xptr/chaptersparts b/result/XPath/xptr/chaptersparts deleted file mode 100644 index 70b561b..0000000 --- a/result/XPath/xptr/chaptersparts +++ /dev/null @@ -1,44 +0,0 @@ - -======================== -Expression: xpointer(//chapitre[2]) -Object is empty (NULL) - -======================== -Expression: xpointer(//chapter[2]) -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter2 - -======================== -Expression: xpointer(//chapitre[2])xpointer(//chapter[2]) -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter2 - -======================== -Expression: xpointer(id("chapter1")) -Object is empty (NULL) - -======================== -Expression: xpointer(//*[@id="chapter1"]) -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter1 - -======================== -Expression: xpointer(id("chapter1"))xpointer(//*[@id="chapter1"]) -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter1 diff --git a/result/XPath/xptr/chaptersrange b/result/XPath/xptr/chaptersrange deleted file mode 100644 index c1b9cde..0000000 --- a/result/XPath/xptr/chaptersrange +++ /dev/null @@ -1,64 +0,0 @@ - -======================== -Expression: xpointer(//chapter[position() = 2]/range-to(following::chapter[1])) -Object is a Location Set: -1 : Object is a range : - From node - ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter2 - To node - ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter3 - - -======================== -Expression: xpointer(//chapter[position() <= 2]/range-to(following::chapter[1])) -Object is a Location Set: -1 : Object is a range : - From node - ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter1 - To node - ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter2 - -2 : Object is a range : - From node - ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter2 - To node - ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter3 - - -======================== -Expression: xpointer(//chapter[position() = last()]/range-to(following::chapter[1])) -Object is empty (NULL) - -======================== -Expression: xpointer(//chapter[position() = 3]/range-to(/.//chapter[position() = 1])) -Object is a Location Set: -1 : Object is a range : - From node - ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter1 - To node - ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter3 - diff --git a/result/XPath/xptr/strpoint b/result/XPath/xptr/strpoint deleted file mode 100644 index d6ecab3..0000000 --- a/result/XPath/xptr/strpoint +++ /dev/null @@ -1,75 +0,0 @@ - -======================== -Expression: xpointer(start-point(string-range(//p,'multiple'))) -Object is a Location Set: -1 : Object is a point : index 1 in node TEXT - content=multiple tests - - -======================== -Expression: xpointer(end-point(string-range(//p,'multiple'))) -Object is a Location Set: -1 : Object is a point : index 8 in node TEXT - content=multiple tests - - -======================== -Expression: xpointer(start-point(string-range(//p,'test'))) -Object is a Location Set: -1 : Object is a point : index 10 in node TEXT - content=a simple test - -2 : Object is a point : index 10 in node TEXT - content=multiple tests - -3 : Object is a point : index 7 in node TEXT - content=anced test - - -======================== -Expression: xpointer(end-point(string-range(//p,'test'))) -Object is a Location Set: -1 : Object is a point : index 13 in node TEXT - content=a simple test - -2 : Object is a point : index 13 in node TEXT - content=multiple tests - -3 : Object is a point : index 10 in node TEXT - content=anced test - - -======================== -Expression: xpointer(start-point(string-range(//*,'multiple',1,0))) -Object is a Location Set: -1 : Object is a point : index 1 in node TEXT - content=multiple tests - - -======================== -Expression: xpointer(end-point(string-range(//*,'multiple',1,0))) -Object is a Location Set: -1 : Object is a point : index 1 in node TEXT - content=multiple tests - - -======================== -Expression: xpointer(start-point(string-range(//*,'multiple',1,1))) -Object is a Location Set: -1 : Object is a point : index 1 in node TEXT - content=multiple tests - - -======================== -Expression: xpointer(end-point(string-range(//*,'multiple',1,1))) -Object is a Location Set: -1 : Object is a point : index 2 in node TEXT - content=multiple tests - - -======================== -Expression: xpointer(start-point(string-range(//p,'test'))[1]) -Object is a Location Set: -1 : Object is a point : index 10 in node TEXT - content=a simple test - diff --git a/result/XPath/xptr/strrange b/result/XPath/xptr/strrange deleted file mode 100644 index c14ed91..0000000 --- a/result/XPath/xptr/strrange +++ /dev/null @@ -1,96 +0,0 @@ - -======================== -Expression: xpointer(string-range(//p, 'simple')) -Object is a Location Set: -1 : Object is a range : - From index 3 in node - TEXT - content=a simple test - To index 8 in node - TEXT - content=a simple test - - -======================== -Expression: xpointer(string-range(//p, 'test')) -Object is a Location Set: -1 : Object is a range : - From index 10 in node - TEXT - content=a simple test - To index 13 in node - TEXT - content=a simple test - -2 : Object is a range : - From index 10 in node - TEXT - content=multiple tests - To index 13 in node - TEXT - content=multiple tests - -3 : Object is a range : - From index 7 in node - TEXT - content=anced test - To index 10 in node - TEXT - content=anced test - - -======================== -Expression: xpointer(string-range(//p, 'difficult')) -Object is a Location Set: -1 : Object is a range : - From index 3 in node - TEXT - content=a diff - To index 4 in node - TEXT - content=cult one - - -======================== -Expression: xpointer(string-range(//p, 'spanning')) -Object is a Location Set: -1 : Object is a range : - From index 3 in node - TEXT - content=a span - To index 3 in node - TEXT - content=ing one - - -======================== -Expression: xpointer(string-range(//p, 'unbalanced')) -Object is a Location Set: -1 : Object is a range : - From index 8 in node - TEXT - content=and an unbal - To index 5 in node - TEXT - content=anced test - - -======================== -Expression: xpointer(string-range(//seq, '')) -Object is a Location Set: -1 : Object is a collapsed range : - index 1 in node - TEXT - content=123 -2 : Object is a collapsed range : - index 2 in node - TEXT - content=123 -3 : Object is a collapsed range : - index 3 in node - TEXT - content=123 -4 : Object is a collapsed range : - index 4 in node - TEXT - content=123 diff --git a/result/XPath/xptr/strrange2 b/result/XPath/xptr/strrange2 deleted file mode 100644 index ea6ee45..0000000 --- a/result/XPath/xptr/strrange2 +++ /dev/null @@ -1,64 +0,0 @@ - -======================== -Expression: xpointer(string-range(//p, 'test', 2)) -Object is a Location Set: -1 : Object is a range : - From index 11 in node - TEXT - content=a simple test - To index 13 in node - TEXT - content=a simple test - -2 : Object is a range : - From index 11 in node - TEXT - content=multiple tests - To index 13 in node - TEXT - content=multiple tests - -3 : Object is a range : - From index 8 in node - TEXT - content=anced test - To index 10 in node - TEXT - content=anced test - - -======================== -Expression: xpointer(string-range(//p, 'test', 2, 2)) -Object is a Location Set: -1 : Object is a range : - From index 11 in node - TEXT - content=a simple test - To index 12 in node - TEXT - content=a simple test - -2 : Object is a range : - From index 11 in node - TEXT - content=multiple tests - To index 12 in node - TEXT - content=multiple tests - -3 : Object is a range : - From index 8 in node - TEXT - content=anced test - To index 9 in node - TEXT - content=anced test - - -======================== -Expression: xpointer(string-range(//p, 'difficult', 1, 0)) -Object is a Location Set: -1 : Object is a collapsed range : - index 3 in node - TEXT - content=a diff diff --git a/result/XPath/xptr/strrange3 b/result/XPath/xptr/strrange3 deleted file mode 100644 index 6d3114a..0000000 --- a/result/XPath/xptr/strrange3 +++ /dev/null @@ -1,48 +0,0 @@ - -======================== -Expression: xpointer(string-range(//p, 'test', 1, 0)) -Object is a Location Set: -1 : Object is a collapsed range : - index 10 in node - TEXT - content=a simple test -2 : Object is a collapsed range : - index 10 in node - TEXT - content=multiple tests -3 : Object is a collapsed range : - index 7 in node - TEXT - content=anced test - -======================== -Expression: xpointer(string-range(//*, 'test', 1, 0)) -Object is a Location Set: -1 : Object is a collapsed range : - index 10 in node - TEXT - content=a simple test -2 : Object is a collapsed range : - index 10 in node - TEXT - content=multiple tests -3 : Object is a collapsed range : - index 7 in node - TEXT - content=anced test - -======================== -Expression: xpointer(string-range(//p, 'test', 1, 0)[2]) -Object is a Location Set: -1 : Object is a collapsed range : - index 10 in node - TEXT - content=multiple tests - -======================== -Expression: xpointer(string-range(//*, 'test', 1, 0)[2]) -Object is a Location Set: -1 : Object is a collapsed range : - index 10 in node - TEXT - content=multiple tests diff --git a/result/XPath/xptr/vidbase b/result/XPath/xptr/vidbase deleted file mode 100644 index 8b9e92d..0000000 --- a/result/XPath/xptr/vidbase +++ /dev/null @@ -1,19 +0,0 @@ - -======================== -Expression: xpointer(id('chapter1')/p) -Object is a Node Set : -Set contains 4 nodes: -1 ELEMENT p -2 ELEMENT p -3 ELEMENT p -4 ELEMENT p - -======================== -Expression: xpointer(id('chapter1')/p[1]/range-to(following-sibling::p[2])) -Object is a Location Set: -1 : Object is a range : - From node - ELEMENT p - To node - ELEMENT p - diff --git a/result/XPath/xptr/vidchildseq b/result/XPath/xptr/vidchildseq deleted file mode 100644 index eb8c5f7..0000000 --- a/result/XPath/xptr/vidchildseq +++ /dev/null @@ -1,36 +0,0 @@ - -======================== -Expression: /1/2/3 -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT image - ATTRIBUTE href - TEXT - content=linus.gif - -======================== -Expression: element(/1/2/3) -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT image - ATTRIBUTE href - TEXT - content=linus.gif - -======================== -Expression: chapter1/3 -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT image - ATTRIBUTE href - TEXT - content=linus.gif - -======================== -Expression: element(chapter1/3) -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT image - ATTRIBUTE href - TEXT - content=linus.gif diff --git a/result/XPath/xptr/vidparts b/result/XPath/xptr/vidparts deleted file mode 100644 index bd5bd3c..0000000 --- a/result/XPath/xptr/vidparts +++ /dev/null @@ -1,27 +0,0 @@ - -======================== -Expression: xpointer(id("chapter1")) -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter1 - -======================== -Expression: xpointer(//*[@id="chapter1"]) -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter1 - -======================== -Expression: xpointer(id("chapter1"))xpointer(//*[@id="chapter1"]) -Object is a Node Set : -Set contains 1 nodes: -1 ELEMENT chapter - ATTRIBUTE id - TEXT - content=chapter1 |