summaryrefslogtreecommitdiffstats
path: root/perl/t/560-regedit-import.t
blob: effb024c7e2fe8ce431594c592aeb424bad08a96 (plain)
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
# Win::Hivex::Regedit test -*- perl -*-
# Copyright (C) 2010 Red Hat Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

use strict;
use warnings;

use IO::Scalar;

use Test::More tests => 16;

use Win::Hivex;
use Win::Hivex::Regedit qw(reg_import reg_export);

my $srcdir = $ENV{srcdir} || ".";

my $h = Win::Hivex->open ("$srcdir/../images/minimal", write => 1);
ok ($h);

my ($data, $expected);

# Note that we don't clear the hive between tests, so results of
# next test depend on the previous test.

$data = '
[\A]

[\B]

[\C]
"Key1"=hex(2):48,00,65,00,6c,00,6c,00,6f,00
"Key2"=str(2):"Hello"
"Key3"=hex:48,00,65,00,6c,00,6c,00,6f,00,\
  48,00,65,00,6c,00,6c,00,6f,00
"Key4"=dword:ff123456';
$expected = '[\]

[\A]

[\B]

[\C]
"Key1"=hex(2):48,00,65,00,6c,00,6c,00,6f,00
"Key2"=hex(2):48,00,65,00,6c,00,6c,00,6f,00,00,00
"Key3"=hex(3):48,00,65,00,6c,00,6c,00,6f,00,48,00,65,00,6c,00,6c,00,6f,00
"Key4"=dword:ff123456

';

run_test ($data, $expected);

$data = '
[\A]
@="Hello"

[-\B]
';
$expected = '[\]

[\A]
@=hex(1):48,00,65,00,6c,00,6c,00,6f,00,00,00

[\C]
"Key1"=hex(2):48,00,65,00,6c,00,6c,00,6f,00
"Key2"=hex(2):48,00,65,00,6c,00,6c,00,6f,00,00,00
"Key3"=hex(3):48,00,65,00,6c,00,6c,00,6f,00,48,00,65,00,6c,00,6c,00,6f,00
"Key4"=dword:ff123456

';

run_test ($data, $expected);

$data = '
[\A]
@=-

[-\C]

[\A\B]
';
$expected = '[\]

[\A]

[\A\B]

';

run_test ($data, $expected);

# In the next test, the value of ValueContainingEscapes in the
# imported data is \\W\\, which will become \W\ in the final hive.
# However Perl has complex and inconsistent rules on quoting
# backslashes.  See:
# http://en.wikibooks.org/wiki/Perl_Programming/Strings#Single_Quoted_Strings
$data = '
[\A]
"NotExistant"=-

[\A\B]
"Key\"Containing\"Quotes"=hex(0):
"ValueContainingEscapes"="\\\\W\\\\"
';
$expected = '[\]

[\A]

[\A\B]
"Key\"Containing\"Quotes"=hex(0):
"ValueContainingEscapes"=hex(1):5c,00,57,00,5c,00,00,00

';

run_test ($data, $expected);

$data = '
[\A\B]
"Key\"Containing\"Quotes"=-
"ValueContainingEscapes"=-

[-\A]
';
$expected = '[\]

';

run_test ($data, $expected);

#----------------------------------------------------------------------

sub run_test {
    my $data = shift;
    my $expected = shift;

    my $fh = new IO::Scalar \$data;
    reg_import ($fh, $h);
    ok (1);

    $fh = new IO::Scalar;
    reg_export ($h, "\\", $fh);
    ok (1);

    my $actual = ${$fh->sref};
    warn "\n\n----- ACTUAL -----\n$actual\n----- EXPECTED -----\n$expected\n\n"
        if $actual ne $expected;

    ok ($actual eq $expected)
}