summaryrefslogtreecommitdiff
path: root/test/files/jvm/xmlstuff.scala
blob: db6e3f90a0810df9521a03feed0cb3ee4830694e (plain) (blame)
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
import java.io.StringReader;
import org.xml.sax.InputSource;
import scala.xml.nobinding.XML;
import scala.testing.UnitTest._ ;
import scala.xml.{Node,NodeSeq};

object Test with Application {

  def eq( a:Seq[Node], b:Seq[Node] ) = {
    if( a.length == b.length ) {
      val ita = a.elements;
      val itb = b.elements;
      var res = true;
      while( ita.hasNext ) {
        res = res &&( ita.next == itb.next );
      };
      res
    } else {
      false
    }
  }
  val xmlFile1 = "<hello><world/></hello>";
  val isrc1 = new InputSource( new StringReader( xmlFile1 ) );
  val parsedxml1 = XML.load( isrc1 );

  val xmlFile2 = "<bib><book><author>Peter Buneman</author><author>Dan Suciu</author><title>Data on ze web</title></book><book><author>John Mitchell</author><title>Foundations of Programming Languages</title></book></bib>";
  val isrc2 = new InputSource( new StringReader( xmlFile2 ) );
  val parsedxml2 = XML.load( isrc2 );

  // xmlFile2/book -> book,book

  assertEquals( eq( parsedxml1/'_ ,List('world()) ), true);
  assertEquals( eq( parsedxml1/'world ,List('world()) ), true);

  assertEquals(
    eq(

      parsedxml2/'_,

      List(
        'book('author(Text("Peter Buneman")),
              'author(Text("Dan Suciu")),
              'title(Text("Data on ze web"))),
        'book('author(Text("John Mitchell")),
              'title(Text("Foundations of Programming Languages")))
      )), true );


  assertEquals( (parsedxml2/'author).length == 0, true );


  assertEquals(
    eq(

      parsedxml2/'book,

      List(
        'book('author(Text("Peter Buneman")),
              'author(Text("Dan Suciu")),
              'title(Text("Data on ze web"))),
        'book('author(Text("John Mitchell")),
              'title(Text("Foundations of Programming Languages")))
      )), true );

  assertEquals(
    eq(

      parsedxml2/'_/'_,

      List('author(Text("Peter Buneman")),
           'author(Text("Dan Suciu")),
           'title(Text("Data on ze web")),
           'author(Text("John Mitchell")),
           'title(Text("Foundations of Programming Languages")))

    ), true);

  assertEquals(
    eq(

      parsedxml2/'_/'author,

      List('author(Text("Peter Buneman")),
           'author(Text("Dan Suciu")),
           'author(Text("John Mitchell")))

    ), true);

  assertEquals( (parsedxml2/'_/'_/'author).length == 0, true );

  assertEquals(
    eq(

      parsedxml2/#'author,

      List('author(Text("Peter Buneman")),
           'author(Text("Dan Suciu")),
           'author(Text("John Mitchell")))

    ), true );

  assertEquals(
    eq(

      parsedxml2/#'_,

      List(
        'book('author(Text("Peter Buneman")),
              'author(Text("Dan Suciu")),
              'title(Text("Data on ze web"))),
        'author(Text("Peter Buneman")),
        Text("Peter Buneman"),
        'author(Text("Dan Suciu")),
        Text("Dan Suciu"),
        'title(Text("Data on ze web")),
        Text("Data on ze web"),
        'book('author(Text("John Mitchell")),
              'title(Text("Foundations of Programming Languages"))),
        'author(Text("John Mitchell")),
        Text("John Mitchell"),
        'title(Text("Foundations of Programming Languages")),
        Text("Foundations of Programming Languages"))
    ) , true);


  assertEquals(
    eq(

      parsedxml2/#'title,

      List(
        'title(Text("Data on ze web")),
        'title(Text("Foundations of Programming Languages")))
    ) , true);

}