]> git.sesse.net Git - xml-template/blob - tests/xml-diff.pl
More fixes.
[xml-template] / tests / xml-diff.pl
1 #! /usr/bin/perl
2
3 #
4 # Compare two XML files for structural and content equivalence. Used for
5 # regression testing.
6 #
7
8 use strict;
9 use warnings;
10
11 use XML::DOM;
12 use XML::Parser;
13 use XML::NamespaceSupport;
14
15 my $parser = XML::DOM::Parser->new;
16 my $d1 = $parser->parsefile($ARGV[0]);
17 my $d2 = $parser->parsefile($ARGV[1]);
18 my $nsup1 = XML::NamespaceSupport->new;
19 my $nsup2 = XML::NamespaceSupport->new;
20
21 compare($d1, $d2, $nsup1, $nsup2);
22
23 sub compare {
24         my ($n1, $n2, $nsup1, $nsup2) = @_;
25
26         if ($n1->getNodeType != $n2->getNodeType) {
27                 printf STDERR "Node types don't match (%u vs. %u)\n",
28                         $n1->getNodeType, $n2->getNodeType;
29                 exit(1);
30         }
31
32         $nsup1->push_context;
33         $nsup2->push_context;
34
35         if ($n1->getNodeType == XML::DOM::ELEMENT_NODE) {
36                 process_namespaces($n1, $nsup1);
37                 process_namespaces($n2, $nsup2);
38         }
39
40         my ($nsuri1, undef, $lname1) = $nsup1->process_element_name($n1->getNodeName);
41         my ($nsuri2, undef, $lname2) = $nsup2->process_element_name($n2->getNodeName);
42
43         # compare element names
44         unless ($nsuri1 eq $nsuri2 && $lname1 eq $lname2) {
45                 print STDERR "$nsuri1/$lname1 != $nsuri2/$lname2\n";
46                 exit(1);
47         }
48
49         # compare attributes
50         my $attrs1 = $n1->getAttributes;
51         my $attrs2 = $n2->getAttributes;
52
53         # this will need some special care, since we ignore xmlns= attributes; defer
54         # to its own function so it's easier to do comparison both ways
55         compare_attr_list($attrs1, $attrs2, $nsup1, $nsup2) if (defined($attrs1));
56         compare_attr_list($attrs2, $attrs1, $nsup2, $nsup1) if (defined($attrs2));
57
58         # this element is ok, let's compare all children
59         my $c1 = $n1->getChildNodes;
60         my $c2 = $n2->getChildNodes;
61
62         if ($c1->getLength != $c2->getLength) {
63                 print STDERR "$nsuri1/$lname1 has differing number of children\n";
64         }
65
66         for my $i (0..($c1->getLength-1)) {
67                 compare($c1->item($i), $c2->item($i), $nsup1, $nsup2);
68         }
69
70         $nsup1->pop_context;
71         $nsup2->pop_context;
72 }
73
74 sub process_namespaces {
75         my ($node, $nsup) = @_;
76
77         my $attrs = $node->getAttributes;
78         return unless defined($attrs);
79
80         for my $attr ($attrs->getValues) {
81                 my $name = $attr->getName;
82                 if ($name =~ /^xmlns:(.*)$/) {
83                         $nsup->declare_prefix($1, $attr->getValue);
84                 }
85         }
86 }
87
88 sub compare_attr_list {
89         my ($attrs1, $attrs2, $nsup1, $nsup2) = @_;
90
91         for my $attr1 ($attrs1->getValues) {
92                 my $name = $attr1->getName;
93                 next if ($name =~ /^xmlns:(.*)$/);
94                 
95                 my ($nsuri1, undef, $lname1) = $nsup1->process_attribute_name($n1->getName);
96
97                 if (!defined($attrs2)) {
98                         # n2 has no attributes at all
99                         print STDERR "Attribute $nsuri1/$lname1 exists on one side but not the other\n";
100                         exit(1);
101                 }
102
103                 my $attr2_found;
104                 for my $attr2 ($attrs2->getValues) {
105                         my ($nsuri2, undef, $lname2) = $nsup2->process_attribute_name($n2->getName);
106                 
107                         if ($nsuri1 eq $nsuri2 && $lname1 eq $lname2) {
108                                 $attr2_found = $attr2;
109                                 last;
110                         }
111                 }
112
113                 if (!defined($attr2_found)) {
114                         print STDERR "Attribute $nsuri1/$lname1 exists on one side but not the other\n";
115                         last;
116                 }
117
118                 if ($attr1->getValue ne $attr2->getValue) {
119                         print STDERR "Attribute $nsuri1/$lname1 has differing values\n";
120                 }
121         }
122 }