-
Notifications
You must be signed in to change notification settings - Fork 9
/
session_test.c
227 lines (197 loc) · 7.67 KB
/
session_test.c
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
221
222
223
224
225
226
227
#include "session.h"
#include <check.h>
// Only exists in check v0.11 and later.
#ifndef ck_assert_mem_eq
#define ck_assert_mem_eq(a,b,n) ck_assert(memcmp((a), (b), (n)) == 0)
#endif
#define TEST_FD (999)
#define TEST_BAUDRATE (9600)
static struct session sess;
static unsigned last_baudrate = 0;
static unsigned baudrate_set = 0;
static void new_baudrate(int fd, unsigned baudrate) {
ck_assert_uint_eq(fd, TEST_FD);
baudrate_set++;
last_baudrate = baudrate;
}
static unsigned char last_data[SESSION_BUFLEN];
static struct packet last_packet;
static void new_packet(struct packet *packet) {
memcpy(&last_packet, packet, sizeof(last_packet));
memcpy(last_data, packet->data, packet->data_length);
}
static char last_msg[SESSION_BUFLEN];
static void log_msg(const char *msg) {
strncpy(last_msg, msg, SESSION_BUFLEN);
}
static void setup(void) {
session_init(&sess, new_packet, new_baudrate, log_msg,
TEST_FD, TEST_BAUDRATE);
memset(&last_packet, 0, sizeof(last_packet));
memset(&last_msg, 0, sizeof(last_msg));
}
static void inject_packet(unsigned char *data, unsigned len) {
unsigned i;
for (i = 0; i < len; i++) {
session_add_byte(&sess, data[i]);
}
}
// Verify packet was returned, and check result and session state.
// Do as macro to keep line number in test failure messages useful.
#define INJECT_PACKET(sent,logged,res,sess_state) do { \
inject_packet((sent), sizeof(sent)); \
ck_assert_uint_eq(last_packet.data_length, sizeof(logged)); \
ck_assert_mem_eq((logged), last_data, sizeof(logged)); \
ck_assert_uint_eq(last_packet.result, (res)); \
ck_assert_uint_eq(sess.curr.state, (sess_state)); \
memset(&last_packet, 0, sizeof(last_packet)); \
} while (0)
START_TEST(baudrate_setup)
{
// Baudrate should be configured as session starts.
ck_assert_uint_eq(last_baudrate, TEST_BAUDRATE);
}
END_TEST
START_TEST(baudrate_switch_atr)
{
unsigned char atr[] = { 0x3B, 0xD2, 0x13, 0xFF, 0x10, 0x80, 0x07, 0x14};
INJECT_PACKET(atr, atr, ANSWER_TO_RESET, IDLE);
ck_assert_uint_eq(last_baudrate, TEST_BAUDRATE*4);
ck_assert_str_eq(last_msg,
"Switching to 93 ticks per ETU (38400 baud) after ATR");
ck_assert_uint_eq(sess.curr.protocol_version, 0);
}
END_TEST
START_TEST(baudrate_switch_pps)
{
unsigned char atr[] = {
0x3B, 0x7F, 0x18, 0x00, 0x00, 0x43, 0x55, 0x32, 0x69, 0xAA, 0x20,
0x00, 0x32, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 };
INJECT_PACKET(atr, atr, ANSWER_TO_RESET, IDLE);
ck_assert_uint_eq(sess.curr.protocol_version, 0);
unsigned char pps[] = { 0xFF, 0x10, 0x13, 0xFC };
INJECT_PACKET(pps, pps, PPS_REQ, PPS);
INJECT_PACKET(pps, pps, PPS_RESP, IDLE);
ck_assert_uint_eq(last_baudrate, TEST_BAUDRATE*4);
ck_assert_str_eq(last_msg,
"Switching to 93 ticks per ETU (38400 baud) after PPS");
ck_assert_uint_eq(sess.curr.protocol_version, 0);
}
END_TEST
START_TEST(protocol_switch_atr)
{
unsigned char atr[] = {
0x3B, 0xFF, 0x13, 0x00, 0x00, 0x81, 0x31, 0xFE, 0x45, 0x43, 0x44,
0x32, 0x69, 0xA9, 0x41, 0x00, 0x00, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x00, 0x53 };
INJECT_PACKET(atr, atr, ANSWER_TO_RESET, IDLE);
ck_assert_str_eq(last_msg, "Switching to protocol T=1 after ATR");
ck_assert_uint_eq(sess.curr.protocol_version, 1);
unsigned char t1_data[] = { 0x00, 0xC1, 0x01, 0xFE, 0x3E };
INJECT_PACKET(t1_data, t1_data, T1_DATA_CMD, T1_DATA);
ck_assert_uint_eq(sess.curr.protocol_version, 1);
}
END_TEST
START_TEST(protocol_switch_pps)
{
unsigned char atr[] = { 0x3B, 0x80, 0x80, 0x01, 0x01 };
INJECT_PACKET(atr, atr, ANSWER_TO_RESET, IDLE);
ck_assert_uint_eq(sess.curr.protocol_version, 0);
unsigned char pps[] = { 0xFF, 0x01, 0xFC };
INJECT_PACKET(pps, pps, PPS_REQ, PPS);
INJECT_PACKET(pps, pps, PPS_RESP, IDLE);
// Baudrate not set again after init.
ck_assert_uint_eq(baudrate_set, 1);
ck_assert_str_eq(last_msg, "Switching to protocol T=1 after PPS");
ck_assert_uint_eq(sess.curr.protocol_version, 1);
unsigned char t1_data[] = { 0x00, 0xC1, 0x01, 0xFE, 0x3E };
INJECT_PACKET(t1_data, t1_data, T1_DATA_CMD, T1_DATA);
ck_assert_uint_eq(sess.curr.protocol_version, 1);
}
END_TEST
START_TEST(baudrate_protocol_switch_pps)
{
unsigned char atr[] = {
0x3B, 0x95, 0x96, 0x80, 0xB1, 0xFE, 0x55, 0x1F, 0xC7,
0x47, 0x72, 0x61, 0x63, 0x65, 0x13 };
INJECT_PACKET(atr, atr, ANSWER_TO_RESET, IDLE);
ck_assert_uint_eq(sess.curr.protocol_version, 0);
unsigned char pps[] = { 0xFF, 0x11, 0x13, 0xFC };
INJECT_PACKET(pps, pps, PPS_REQ, PPS);
INJECT_PACKET(pps, pps, PPS_RESP, IDLE);
ck_assert_uint_eq(last_baudrate, TEST_BAUDRATE*4);
ck_assert_uint_eq(sess.curr.protocol_version, 1);
}
END_TEST
START_TEST(convert_inverse)
{
unsigned i;
for (i = 0; i < 256; i++) {
// Inverse of inverse is equal to the start value.
ck_assert_uint_eq(convert_from_inverse(convert_from_inverse(i)), i);
}
}
END_TEST
START_TEST(inverse_convention)
{
unsigned char inv_atr[] = {
0x03, 0x59, 0x5B, 0xEF, 0x33, 0xDF, 0xFB, 0xF6, 0xFF };
unsigned char atr[] = {
0x3F, 0x65, 0x25, 0x08, 0x33, 0x04, 0x20, 0x90, 0x00 };
INJECT_PACKET(inv_atr, atr, ANSWER_TO_RESET, IDLE);
ck_assert_str_eq(last_msg, "Switching to inverse convention");
ck_assert_uint_eq(sess.curr.protocol_version, 0);
unsigned char inv_t0_cmd[] = { 0xFF, 0xAC, 0x7F, 0xFF, 0xBF };
unsigned char t0_cmd[] = { 0x00, 0xCA, 0x01, 0x00, 0x02 };
INJECT_PACKET(inv_t0_cmd, t0_cmd, T0_DATA_CMD_HEADER, T0_DATA);
unsigned char inv_t0_error[] = { 0xA9, 0xFF };
unsigned char t0_error[] = { 0x6A, 0x00 };
INJECT_PACKET(inv_t0_error, t0_error, T0_DATA_RESP_SW, T0_DATA);
}
END_TEST
START_TEST(t0_data_exchange)
{
unsigned char atr[] = { 0x3B, 0x80, 0x80, 0x01, 0x01 };
INJECT_PACKET(atr, atr, ANSWER_TO_RESET, IDLE);
ck_assert_uint_eq(sess.curr.protocol_version, 0);
unsigned char t0_cmd[] = { 0x00, 0xCA, 0x01, 0x00, 0x02 };
INJECT_PACKET(t0_cmd, t0_cmd, T0_DATA_CMD_HEADER, T0_DATA);
unsigned char t0_ack[] = { 0xCA };
INJECT_PACKET(t0_ack, t0_ack, T0_DATA_ACK, T0_DATA);
unsigned char t0_data[] = { 0x01, 0x02 };
INJECT_PACKET(t0_data, t0_data, T0_DATA_RESP_BODY, T0_DATA);
unsigned char t0_status[] = { 0x90, 0x00 };
INJECT_PACKET(t0_status, t0_status, T0_DATA_RESP_SW, T0_DATA);
}
END_TEST
START_TEST(t1_data_exchange)
{
unsigned char atr[] = {
0x3B, 0xFF, 0x13, 0x00, 0x00, 0x81, 0x31, 0xFE, 0x45, 0x43, 0x44,
0x32, 0x69, 0xA9, 0x41, 0x00, 0x00, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x00, 0x53 };
INJECT_PACKET(atr, atr, ANSWER_TO_RESET, IDLE);
ck_assert_uint_eq(sess.curr.protocol_version, 1);
unsigned char t1_cmd[] = { 0x00, 0xC1, 0x01, 0xFE, 0x3E };
INJECT_PACKET(t1_cmd, t1_cmd, T1_DATA_CMD, T1_DATA);
unsigned char t1_resp[] = { 0x00, 0xE1, 0x01, 0xFE, 0x1E };
INJECT_PACKET(t1_resp, t1_resp, T1_DATA_RESP, T1_DATA);
}
END_TEST
Suite* session_tests(void) {
Suite* suite = suite_create("session");
TCase* test = tcase_create("session");
tcase_add_checked_fixture(test, setup, NULL);
tcase_add_test(test, baudrate_setup);
tcase_add_test(test, baudrate_switch_atr);
tcase_add_test(test, baudrate_switch_pps);
tcase_add_test(test, protocol_switch_atr);
tcase_add_test(test, protocol_switch_pps);
tcase_add_test(test, baudrate_protocol_switch_pps);
tcase_add_test(test, convert_inverse);
tcase_add_test(test, inverse_convention);
tcase_add_test(test, t0_data_exchange);
tcase_add_test(test, t1_data_exchange);
suite_add_tcase(suite, test);
return suite;
}