summaryrefslogtreecommitdiffstats
path: root/tools/iap/ipod-003-lingo2.t
blob: ee0bd6972eb42a22b657de1439e88519b7eb1489 (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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
use Test::More qw( no_plan );
use strict;

BEGIN { use_ok('Device::iPod'); }
require_ok('Device::iPod');

my $ipod = Device::iPod->new();
my $m;
my ($l, $c, $p);

isa_ok($ipod, 'Device::iPod');

$ipod->{-debug} = 1;
$ipod->open("/dev/ttyUSB0");

$m = $ipod->sendraw("\xFF" x 16); # Wake up and sync
ok($m == 1, "Wakeup sent");

# Empty the buffer
$ipod->emptyrecv();

# IdentifyDeviceLingoes(lingos=0x01, options=0x00, deviceid=0x00)
# We expect an ACK OK message as response
$m = $ipod->sendmsg(0x00, 0x13, "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00");
ok($m == 1, "IdentifyDeviceLingoes(lingos=0x01, options=0x00, deviceid=0x00) sent");
($l, $c, $p) = $ipod->recvmsg();
subtest "ACK OK" => sub {
    ok(defined($l), "Response received");
    is($l, 0x00, "Response lingo");
    is($c, 0x02, "Response command");
    is($p, "\x00\x13", "Response payload");
};

# Empty the buffer
$ipod->emptyrecv();

# ContextButtonStatus(0x00)
# We expect an ACK Bad Parameter message as response
$m = $ipod->sendmsg(0x02, 0x00, "\x00");
ok($m == 1, "ContextButtonStatus(0x00)");
($l, $c, $p) = $ipod->recvmsg();
subtest "ACK Bad Parameter" => sub {
    ok(defined($l), "Response received");
    is($l, 0x02, "Response lingo");
    is($c, 0x01, "Response command");
    is($p, "\x04\x00", "Response payload");
};

# Empty the buffer
$ipod->emptyrecv();

# Identify(lingo=0x00)
# We expect no response (timeout)
$m = $ipod->sendmsg(0x00, 0x01, "\x00");
ok($m == 1, "Identify(lingo=0x00) sent");
($l, $c, $p) = $ipod->recvmsg();
subtest "Timeout" => sub {
    ok(!defined($l), "No response received");
    like($ipod->error(), '/Timeout/', "Timeout reading response");
};

# Empty the buffer
$ipod->emptyrecv();

# ContextButtonStatus(0x00)
# We expect a timeout as response
$m = $ipod->sendmsg(0x02, 0x00, "\x00");
ok($m == 1, "ContextButtonStatus(0x00)");
($l, $c, $p) = $ipod->recvmsg();
subtest "Timeout" => sub {
    ok(!defined($l), "Response received");
    like($ipod->error(), '/Timeout/', "Timeout reading response");
};

# Empty the buffer
$ipod->emptyrecv();

# Identify(lingo=0x02)
# We expect no response (timeout)
$m = $ipod->sendmsg(0x00, 0x01, "\x02");
ok($m == 1, "Identify(lingo=0x02) sent");
($l, $c, $p) = $ipod->recvmsg();
subtest "Timeout" => sub {
    ok(!defined($l), "No response received");
    like($ipod->error(), '/Timeout/', "Timeout reading response");
};

# Empty the buffer
$ipod->emptyrecv();

# ContextButtonStatus(0x00)
# We expect a timeout as response
$m = $ipod->sendmsg(0x02, 0x00, "\x00");
ok($m == 1, "ContextButtonStatus(0x00)");
($l, $c, $p) = $ipod->recvmsg();
subtest "Timeout" => sub {
    ok(!defined($l), "Response received");
    like($ipod->error(), '/Timeout/', "Timeout reading response");
};

# Empty the buffer
$ipod->emptyrecv();

# IdentifyDeviceLingoes(lingos=0x05, options=0x00, deviceid=0x00)
# We expect an ACK OK message as response
$m = $ipod->sendmsg(0x00, 0x13, "\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00");
ok($m == 1, "IdentifyDeviceLingoes(lingos=0x05, options=0x00, deviceid=0x00) sent");
($l, $c, $p) = $ipod->recvmsg();
subtest "ACK OK" => sub {
    ok(defined($l), "Response received");
    is($l, 0x00, "Response lingo");
    is($c, 0x02, "Response command");
    is($p, "\x00\x13", "Response payload");
};

# Empty the buffer
$ipod->emptyrecv();

# RequestLingoProtocolVersion(lingo=0x02)
# We expect a ReturnLingoProtocolVersion packet
$m = $ipod->sendmsg(0x00, 0x0F, "\x02");
ok($m == 1, "RequestLingoProtocolVersion(lingo=0x02) sent");
($l, $c, $p) = $ipod->recvmsg();
subtest "ReturnLingoProtocolVersion" => sub {
    ok(defined($l), "Response received");
    is($l, 0x00, "Response lingo");
    is($c, 0x10, "Response command");
    like($p, "/^\\x02..\$/", "Response payload");
};

# Empty the buffer
$ipod->emptyrecv();

# Send an undefined command
# We expect an ACK Bad Parameter as response
$m = $ipod->sendmsg(0x02, 0xFF);
ok($m == 1, "Undefined command sent");
($l, $c, $p) = $ipod->recvmsg();
subtest "ACK Bad Parameter" => sub {
    ok(defined($l), "Response received");
    is($l, 0x02, "Response lingo");
    is($c, 0x01, "Response command");
    is($p, "\x04\xFF", "Response payload");
};

# Empty the buffer
$ipod->emptyrecv();

# ContextButtonStatus(0x00)
# We expect a timeout as response
$m = $ipod->sendmsg(0x02, 0x00, "\x00");
ok($m == 1, "ContextButtonStatus(0x00)");
($l, $c, $p) = $ipod->recvmsg();
subtest "Timeout" => sub {
    ok(!defined($l), "Response received");
    like($ipod->error(), '/Timeout/', "Timeout reading response");
};

# Empty the buffer
$ipod->emptyrecv();

# Send a too short command
# We expect an ACK Bad Parameter as response
$m = $ipod->sendmsg(0x02, 0x00, "");
ok($m == 1, "Short command sent");
($l, $c, $p) = $ipod->recvmsg();
subtest "ACK Bad Parameter" => sub {
    ok(defined($l), "Response received");
    is($l, 0x02, "Response lingo");
    is($c, 0x01, "Response command");
    is($p, "\x04\x00", "Response payload");
};

# Empty the buffer
$ipod->emptyrecv();

# ImageButtonStatus(0x00)
# We expect an ACK Not Authenticated as response
$m = $ipod->sendmsg(0x02, 0x02, "\x00");
ok($m == 1, "ImageButtonStatus(0x00)");
($l, $c, $p) = $ipod->recvmsg();
subtest "ACK Not Authenticated" => sub {
    ok(defined($l), "Response received");
    is($l, 0x02, "Response lingo");
    is($c, 0x01, "Response command");
    is($p, "\x07\x02", "Response payload");
};

# Empty the buffer
$ipod->emptyrecv();

# VideoButtonStatus(0x00)
# We expect an ACK Not Authenticated as response
$m = $ipod->sendmsg(0x02, 0x03, "\x00");
ok($m == 1, "VideoButtonStatus(0x00)");
($l, $c, $p) = $ipod->recvmsg();
subtest "ACK Not Authenticated" => sub {
    ok(defined($l), "Response received");
    is($l, 0x02, "Response lingo");
    is($c, 0x01, "Response command");
    is($p, "\x07\x03", "Response payload");
};

# Empty the buffer
$ipod->emptyrecv();

# AudioButtonStatus(0x00)
# We expect an ACK Not Authenticated as response
$m = $ipod->sendmsg(0x02, 0x04, "\x00");
ok($m == 1, "AudioButtonStatus(0x00)");
($l, $c, $p) = $ipod->recvmsg();
subtest "ACK Not Authenticated" => sub {
    ok(defined($l), "Response received");
    is($l, 0x02, "Response lingo");
    is($c, 0x01, "Response command");
    is($p, "\x07\x04", "Response payload");
};

# Empty the buffer
$ipod->emptyrecv();