summaryrefslogtreecommitdiffstats
path: root/unit
diff options
context:
space:
mode:
authorAndrzej Zaborowski <andrew.zaborowski@intel.com>2010-06-11 12:39:53 +0200
committerDenis Kenzior <denkenz@gmail.com>2010-06-15 12:09:17 -0500
commit024123c51bcba9a80da7fe7ec4b23fd9969f3620 (patch)
tree3d3c269f9a0e4cc9185256de5f04891f6fd39a34 /unit
parentdd9e095524077756a408cf0b5c2590f4065cca33 (diff)
downloadofono-024123c51bcba9a80da7fe7ec4b23fd9969f3620.tar.bz2
test-stkutil: Tests for Timer Expiration envelope
Diffstat (limited to 'unit')
-rw-r--r--unit/test-stkutil.c49
1 files changed, 49 insertions, 0 deletions
diff --git a/unit/test-stkutil.c b/unit/test-stkutil.c
index aaa5bcc6..c0494714 100644
--- a/unit/test-stkutil.c
+++ b/unit/test-stkutil.c
@@ -19603,6 +19603,50 @@ static const struct envelope_test event_download_network_rejection_data_121 = {
},
};
+static const unsigned char timer_expiration_211[] = {
+ 0xd7, 0x0c, 0x82, 0x02, 0x82, 0x81, 0xa4, 0x01,
+ 0x01, 0xa5, 0x03, 0x00, 0x00, 0x01,
+};
+
+static const struct envelope_test timer_expiration_data_211 = {
+ .pdu = timer_expiration_211,
+ .pdu_len = sizeof(timer_expiration_211),
+ .envelope = {
+ .type = STK_ENVELOPE_TYPE_TIMER_EXPIRATION,
+ .src = STK_DEVICE_IDENTITY_TYPE_TERMINAL,
+ .dst = STK_DEVICE_IDENTITY_TYPE_UICC,
+ { .timer_expiration = {
+ .id = 1,
+ .value = {
+ .second = 10,
+ .has_value = TRUE,
+ },
+ }},
+ },
+};
+
+static const unsigned char timer_expiration_221a[] = {
+ 0xd7, 0x0c, 0x82, 0x02, 0x82, 0x81, 0xa4, 0x01,
+ 0x01, 0xa5, 0x03, 0x00, 0x00, 0x03,
+};
+
+static const struct envelope_test timer_expiration_data_221a = {
+ .pdu = timer_expiration_221a,
+ .pdu_len = sizeof(timer_expiration_221a),
+ .envelope = {
+ .type = STK_ENVELOPE_TYPE_TIMER_EXPIRATION,
+ .src = STK_DEVICE_IDENTITY_TYPE_TERMINAL,
+ .dst = STK_DEVICE_IDENTITY_TYPE_UICC,
+ { .timer_expiration = {
+ .id = 1,
+ .value = {
+ .second = 30,
+ .has_value = TRUE,
+ },
+ }},
+ },
+};
+
int main(int argc, char **argv)
{
g_test_init(&argc, &argv, NULL);
@@ -21447,5 +21491,10 @@ int main(int argc, char **argv)
&event_download_network_rejection_data_121,
test_envelope_encoding);
+ g_test_add_data_func("/teststk/Timer Expiration 2.1.1",
+ &timer_expiration_data_211, test_envelope_encoding);
+ g_test_add_data_func("/teststk/Timer Expiration 2.2.1A",
+ &timer_expiration_data_221a, test_envelope_encoding);
+
return g_test_run();
}