Translation update done using Pootle.
[gammu.git] / tests / sms-nokia-12.c
blobf823cf37d2805bb092193acd0fe56bfbd0158147
1 /* Test for decoding SMS on Nokia 6510 driver */
3 #include <gammu.h>
4 #include <stdlib.h>
5 #include <stdio.h>
6 #include <string.h>
8 #include "common.h"
10 #include "../libgammu/protocol/protocol.h" /* Needed for GSM_Protocol_Message */
11 #include "../libgammu/gsmstate.h" /* Needed for state machine internals */
13 #include "../helper/message-display.h"
15 unsigned char data[] = {
16 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x01, 0x3C, 0x00, 0x00, 0x00, 0x00,
17 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
18 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
19 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
20 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
21 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2B,
22 0x00, 0x35, 0x00, 0x38, 0x00, 0x34, 0x00, 0x31, 0x00, 0x34, 0x00, 0x31, 0x00, 0x32, 0x00, 0x39,
23 0x00, 0x34, 0x00, 0x33, 0x00, 0x37, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
25 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
26 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
27 0x04, 0x0C, 0x91, 0x85, 0x14, 0x14, 0x92, 0x34, 0x67, 0x00, 0x03, 0x90, 0x21, 0x71, 0x41, 0x10,
28 0x63, 0x89, 0x04, 0xC8, 0x37, 0x3B, 0x0C, 0x01, 0x00, 0x72, 0x01, 0x00, 0x01, 0x00, 0x08, 0x00,
29 0x01, 0x00, 0x0E, 0x00, 0x01, 0x00, 0x0B, 0x00, 0x01, 0x00, 0x06, 0x00, 0x04, 0x00, 0x00, 0x00,
30 0x00, 0x09, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x27, 0x00, 0x01, 0x00, 0x03, 0x00, 0x0A, 0x00,
31 0x48, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x00, 0x02, 0x00, 0x0E, 0x2B, 0x35, 0x38, 0x34,
32 0x31, 0x32, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x00, 0x04, 0x00, 0x1C, 0x00, 0x2B, 0x00,
33 0x35, 0x00, 0x38, 0x00, 0x34, 0x00, 0x31, 0x00, 0x34, 0x00, 0x31, 0x00, 0x32, 0x00, 0x39, 0x00,
34 0x34, 0x00, 0x33, 0x00, 0x37, 0x00, 0x36, 0x00, 0x00, 0x07, 0x00, 0x01, 0x00, 0x05, 0x00, 0x01,
35 0x00, 0x12, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x01, 0x00
38 const char text[] = "Hola";
39 char decoded_text[200];
41 /* This is not part of API! */
42 extern GSM_Error N6510_DecodeFilesystemSMS(GSM_StateMachine * s, GSM_MultiSMSMessage * sms, GSM_File * FFF, int location);
44 int main(int argc UNUSED, char **argv UNUSED)
46 GSM_Debug_Info *debug_info;
47 GSM_StateMachine *s;
48 GSM_File file;
49 GSM_Error error;
50 GSM_MultiSMSMessage sms;
52 /* Init locales for proper output */
53 GSM_InitLocales(NULL);
55 debug_info = GSM_GetGlobalDebug();
56 GSM_SetDebugFileDescriptor(stderr, FALSE, debug_info);
57 GSM_SetDebugLevel("textall", debug_info);
59 /* Allocates state machine */
60 s = GSM_AllocStateMachine();
61 test_result(s != NULL);
63 debug_info = GSM_GetDebug(s);
64 GSM_SetDebugGlobal(TRUE, debug_info);
66 /* Init file */
67 file.Buffer = malloc(sizeof(data));
68 memcpy(file.Buffer, data, sizeof(data));
69 file.Used = sizeof(data);
70 file.ID_FullName[0] = 0;
71 file.ID_FullName[1] = 0;
72 GSM_GetCurrentDateTime(&(file.Modified));
74 /* Parse it */
75 error = N6510_DecodeFilesystemSMS(s, &sms, &file, 0);
77 /* Display message */
78 DisplayMultiSMSInfo(&sms, FALSE, TRUE, NULL, NULL);
79 DisplayMultiSMSInfo(&sms, TRUE, TRUE, NULL, NULL);
81 /* Free state machine */
82 GSM_FreeStateMachine(s);
84 /* Check expected text */
85 /* We do not compare full text due to locales problem */
86 EncodeUTF8(decoded_text, sms.SMS[0].Text);
87 test_result(strcmp(text, decoded_text) == 0);
89 gammu_test_result(error, "N6510_DecodeFilesystemSMS");
91 return 0;
94 /* Editor configuration
95 * vim: noexpandtab sw=8 ts=8 sts=8 tw=72: