test-stkutil: Add Language Notification response

This commit is contained in:
Andrzej Zaborowski 2010-05-27 06:59:57 +02:00 committed by Denis Kenzior
parent ac222a5512
commit 1914716dd7
1 changed files with 49 additions and 0 deletions

View File

@ -17686,6 +17686,48 @@ static const struct terminal_response_test send_dtmf_response_data_211b = {
},
};
static const unsigned char language_notification_response_111[] = {
0x81, 0x03, 0x01, 0x35, 0x01, 0x82, 0x02, 0x82,
0x81, 0x83, 0x01, 0x00,
};
static const struct terminal_response_test
language_notification_response_data_111 = {
.pdu = language_notification_response_111,
.pdu_len = sizeof(language_notification_response_111),
.response = {
.number = 1,
.type = STK_COMMAND_TYPE_LANGUAGE_NOTIFICATION,
.qualifier = 0x01,
.src = STK_DEVICE_IDENTITY_TYPE_TERMINAL,
.dst = STK_DEVICE_IDENTITY_TYPE_UICC,
.result = {
.type = STK_RESULT_TYPE_SUCCESS,
},
},
};
static const unsigned char language_notification_response_121[] = {
0x81, 0x03, 0x01, 0x35, 0x00, 0x82, 0x02, 0x82,
0x81, 0x83, 0x01, 0x00,
};
static const struct terminal_response_test
language_notification_response_data_121 = {
.pdu = language_notification_response_121,
.pdu_len = sizeof(language_notification_response_121),
.response = {
.number = 1,
.type = STK_COMMAND_TYPE_LANGUAGE_NOTIFICATION,
.qualifier = 0x00,
.src = STK_DEVICE_IDENTITY_TYPE_TERMINAL,
.dst = STK_DEVICE_IDENTITY_TYPE_UICC,
.result = {
.type = STK_RESULT_TYPE_SUCCESS,
},
},
};
int main(int argc, char **argv)
{
g_test_init(&argc, &argv, NULL);
@ -19247,6 +19289,13 @@ int main(int argc, char **argv)
g_test_add_data_func("/teststk/Language Notification 1.2.1",
&language_notification_data_121, test_language_notification);
g_test_add_data_func("/teststk/Language Notification response 1.1.1",
&language_notification_response_data_111,
test_terminal_response_encoding);
g_test_add_data_func("/teststk/Language Notification response 1.2.1",
&language_notification_response_data_121,
test_terminal_response_encoding);
g_test_add_data_func("/teststk/Launch Browser 1.1.1",
&launch_browser_data_111, test_launch_browser);
g_test_add_data_func("/teststk/Launch Browser 1.2.1",