summaryrefslogtreecommitdiff
path: root/src/tests/dlt-test-filetransfer.c
blob: 591714a77895e89e32277cfcd0b56d0226625faa (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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
/*
 * @licence app begin@
 * SPDX license identifier: MPL-2.0
 *
 * Copyright (C) 2011-2015, BMW AG
 *
 * This file is part of GENIVI Project DLT - Diagnostic Log and Trace.
 *
 * This Source Code Form is subject to the terms of the
 * Mozilla Public License (MPL), v. 2.0.
 * If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * For further information see http://www.genivi.org/.
 * @licence end@
 */

/*!
 * \author Alexander Wenzel <alexander.aw.wenzel@bmw.de>
 *
 * \copyright Copyright © 2011-2015 BMW AG. \n
 * License MPL-2.0: Mozilla Public License version 2.0 http://mozilla.org/MPL/2.0/.
 *
 * \file dlt-test-filetransfer.c
 */


/*******************************************************************************
**                                                                            **
**  SRC-MODULE: dlt-test-client.c                                             **
**                                                                            **
**  TARGET    : linux                                                         **
**                                                                            **
**  PROJECT   : DLT                                                           **
**                                                                            **
**  AUTHOR    : Alexander Wenzel Alexander.AW.Wenzel@bmw.de                   **
**                                                                            **
**  PURPOSE   :                                                               **
**                                                                            **
**  REMARKS   :                                                               **
**                                                                            **
**  PLATFORM DEPENDANT [yes/no]: yes                                          **
**                                                                            **
**  TO BE CHANGED BY USER [yes/no]: no                                        **
**                                                                            **
*******************************************************************************/

/*******************************************************************************
**                      Author Identity                                       **
********************************************************************************
**                                                                            **
** Initials     Name                       Company                            **
** --------     -------------------------  ---------------------------------- **
**  aw          Alexander Wenzel           BMW                                **
*******************************************************************************/


#include <dlt_filetransfer.h>     /*Needed for transferring files with the dlt protocol*/
#include <dlt.h>                /*Needed for dlt logging*/

//!Declare some context for the main program. It's a must have to do this, when you want to log with dlt.
DLT_DECLARE_CONTEXT(mainContext)

//!Declare some context for the file transfer. It's not a must have to do this, but later you can set a filter on this context in the dlt viewer.
DLT_DECLARE_CONTEXT(fileContext)

//!Textfile which will be transferred.
char *file1;
//!Image which will be transferred.
char *file2;
//!Not existing file which will be transferred.
char *file3_1;
//!Not existing file which will be transferred.
char *file3_2;
//!Not existing file which will be transferred.
char *file3_3;
//!Just some variables
int i,countPackages, transferResult;
static int g_numFailed = 0;

//!Prints the test result
void printTestResultPositiveExpected(const char *function, int result){

    if(result >= 0){
        printf("%s successful\n",function);
    }
    else
    {
        printf("%s failed\n",function);
        g_numFailed++;
    }

}

//!Prints the test result
void printTestResultNegativeExpected(const char *function, int result){

    if(result < 0){
        printf("%s successful\n",function);
    }
    else
    {
        printf("%s failed\n",function);
        g_numFailed++;
    }

}

//!Test the file transfer with the condition that the transferred file is smaller as the file transfer buffer using dlt_user_log_file_complete.
int testFile1Run1(){
    //Just some log to the main context
    DLT_LOG(mainContext,DLT_LOG_INFO,DLT_STRING("Started testF1P1 - dlt_user_log_file_complete"),DLT_STRING(file1));

    //Here's the line where the dlt file transfer is called. The method call needs a context, the absolute file path, will the file be deleted after transfer and the timeout between the packages
    transferResult = dlt_user_log_file_complete(&fileContext,file1,0,20);
    if(transferResult < 0 )
    {
            printf("Error: dlt_user_log_file_complete\n");
            return transferResult;
    }
    //Just some log to the main context
    DLT_LOG(mainContext,DLT_LOG_INFO,DLT_STRING("Finished testF1P1"),DLT_STRING(file1));

    printTestResultPositiveExpected(__FUNCTION__,transferResult);

    return transferResult;
}

//!Test the file transfer with the condition that the transferred file is smaller as the file transfer buffer using single package transfer
int testFile1Run2(){
    int total_size, used_size;

    //Get the information how many packages have the file
    countPackages = dlt_user_log_file_packagesCount(&fileContext,file1);
    if(countPackages < 0 )
    {
            printf("Error: dlt_user_log_file_packagesCount\n");
            printTestResultPositiveExpected(__FUNCTION__,countPackages);
            return -1;
    }
    //Just some log to the main context
    DLT_LOG(mainContext,DLT_LOG_INFO,DLT_STRING("Started testF1P2 - transfer single package"),DLT_STRING(file1));

    //Logs the header of the file transfer. For more details see Mainpage.c.
    //The header gives information about the file serial number, filename (with absolute path), filesize, packages of file, buffer size
    transferResult = dlt_user_log_file_header(&fileContext,file1);
    if(transferResult >= 0)
    {
        //Loop to log all packages
        for(i=1;i<=countPackages;i++)
        {
            dlt_user_check_buffer(&total_size, &used_size);
            if((total_size - used_size) < (total_size/2))
            {
                printf("Error: dlt_user_log_file_data\n");
                printTestResultPositiveExpected(__FUNCTION__,transferResult);
                break;
            }

            //Logs one single package to the file context
            transferResult = dlt_user_log_file_data(&fileContext,file1,i,20);
            if(transferResult < 0)
            {
                printf("Error: dlt_user_log_file_data\n");
                printTestResultPositiveExpected(__FUNCTION__,transferResult);
                return transferResult;
            }
        }

        //Logs the end of the file transfer. For more details see Mainpage.c
        //The end gives just information about the file serial number but is needed to signal that the file transfer has correctly finished and needed for the file transfer plugin of the dlt viewer.
        transferResult = dlt_user_log_file_end(&fileContext,file1,0);
        if(transferResult < 0)
        {
            printf("Error: dlt_user_log_file_end\n");
            printTestResultPositiveExpected(__FUNCTION__,transferResult);
            return transferResult;
        }
    }
    else
    {
        printf("Error: dlt_user_log_file_header\n");
        printTestResultPositiveExpected(__FUNCTION__,transferResult);
        return transferResult;
    }

    //Just some log to main context
    DLT_LOG(mainContext,DLT_LOG_INFO,DLT_STRING("Finished testF1P2 - transfer single package"),DLT_STRING(file1));
    printTestResultPositiveExpected(__FUNCTION__,transferResult);
    return 0;
}
//!Test the file transfer with the condition that the transferred file is bigger as the file transfer buffer using dlt_user_log_file_complete.
int testFile2Run1(){
    //Just some log to main context
    DLT_LOG(mainContext,DLT_LOG_INFO,DLT_STRING("Started testF2P1 - dlt_user_log_file_complete"),DLT_STRING(file2));

    //Here's the line where the dlt file transfer is called. The method call needs a context, the absolute file path, will the file be deleted after transfer and the timeout between the packages
    transferResult = dlt_user_log_file_complete(&fileContext,file2,0,20);
    if(transferResult < 0)
    {
        printf("Error: dlt_user_log_file_complete\n");
        printTestResultPositiveExpected(__FUNCTION__,transferResult);
        return transferResult;
    }
    //Just some log to main context
    DLT_LOG(mainContext,DLT_LOG_INFO,DLT_STRING("Finished testF2P1"),DLT_STRING(file2));
    printTestResultPositiveExpected(__FUNCTION__,transferResult);
    return transferResult;
}

//!Test the file transfer with the condition that the transferred file is bigger as the file transfer buffer using single package transfer
int testFile2Run2(){
    int total_size, used_size;

    //Get the information how many packages have the file
    countPackages = dlt_user_log_file_packagesCount(&fileContext,file2);
    if(countPackages < 0 )
    {
            printf("Error: dlt_user_log_file_packagesCount\n");
            printTestResultPositiveExpected(__FUNCTION__,countPackages);
            return -1;
    }

    //Just some log to the main context
    DLT_LOG(mainContext,DLT_LOG_INFO,DLT_STRING("Started testF2P2 - transfer single package"),DLT_STRING(file2));

    //Logs the header of the file transfer. For more details see Mainpage.c.
    //The header gives information about the file serial number, filename (with absolute path), filesize, packages of file, buffer size
    transferResult = dlt_user_log_file_header(&fileContext,file2);
    if( transferResult >= 0){

        //Loop to log all packages
        for(i=1;i<=countPackages;i++)
        {
            dlt_user_check_buffer(&total_size, &used_size);
            if((total_size - used_size) < (total_size/2))
            {
                printf("Error: dlt_user_log_file_data\n");
                printTestResultPositiveExpected(__FUNCTION__,transferResult);
                break;
            }

            //Logs one single package to the file context
            transferResult = dlt_user_log_file_data(&fileContext,file2,i,20);
            if(transferResult < 0)
            {
                printf("Error: dlt_user_log_file_data\n");
                printTestResultPositiveExpected(__FUNCTION__,transferResult);
                return transferResult;
            }
        }

        //Logs the end of the file transfer. For more details see Mainpage.c
        //The end gives just information about the file serial number but is needed to signal that the file transfer has correctly finished and needed for the file transfer plugin of the dlt viewer.
        transferResult = dlt_user_log_file_end(&fileContext,file2,0);
        if(transferResult < 0)
        {
            printf("Error: dlt_user_log_file_end\n");
            printTestResultPositiveExpected(__FUNCTION__,transferResult);
            return transferResult;
        }
    }
    else
    {
        printf("Error: dlt_user_log_file_header\n");
        printTestResultPositiveExpected(__FUNCTION__,transferResult);
        return transferResult;
    }
    //Just some log to the main context
    DLT_LOG(mainContext,DLT_LOG_INFO,DLT_STRING("Finished testF2P2"),DLT_STRING(file2));
    printTestResultPositiveExpected(__FUNCTION__,transferResult);
    return 0;
}

//!Test the file transfer with the condition that the transferred file does not exist using dlt_user_log_file_complete.
int testFile3Run1(){

    //Just some log to the main context
    DLT_LOG(mainContext,DLT_LOG_INFO,DLT_STRING("Started testF3P1"),DLT_STRING(file3_1));

    //Here's the line where the dlt file transfer is called. The method call needs a context, the absolute file path, will the file be deleted after transfer and the timeout between the packages
    transferResult = dlt_user_log_file_complete(&fileContext,file3_1,0,20);
    if(transferResult < 0)
    {
        //Error expected because file doesn't exist
        //printf("Error: dlt_user_log_file_complete\n");
        //Just some log to the main context
        DLT_LOG(mainContext,DLT_LOG_INFO,DLT_STRING("Finished testF3P1"),DLT_STRING(file3_1));
        printTestResultNegativeExpected(__FUNCTION__,transferResult);
        return transferResult;
    }
    printTestResultNegativeExpected(__FUNCTION__,transferResult);
    return transferResult;
}


//!Test the file transfer with the condition that the transferred file does not exist using single package transfer
int testFile3Run2(){

    //Get the information how many packages have the file
    countPackages = dlt_user_log_file_packagesCount(&fileContext,file3_2);
    if(countPackages < 0 )
    {
            //Error expected because file doesn't exist
            //printf("Error: dlt_user_log_file_packagesCount\n");
            //Just some log to the main context
            DLT_LOG(mainContext,DLT_LOG_INFO,DLT_STRING("Finished testF3P1"),DLT_STRING(file3_2));
            printTestResultNegativeExpected(__FUNCTION__,countPackages);
            return -1;
    }
    //Just some log to the main context
    DLT_LOG(mainContext,DLT_LOG_INFO,DLT_STRING("Started testF3P1"),DLT_STRING(file3_2));

    //Logs the header of the file transfer. For more details see Mainpage.c.
    //The header gives information about the file serial number, filename (with absolute path), filesize, packages of file, buffer size
    transferResult = dlt_user_log_file_header(&fileContext,file3_2);
    if( transferResult >= 0){

        //Loop to log all packages
        for(i=1;i<=countPackages;i++)
        {
            //Logs one single package to the file context
            transferResult = dlt_user_log_file_data(&fileContext,file3_2,i,20);
            if(transferResult < 0)
            {
                printf("Error: dlt_user_log_file_data\n");
                printTestResultNegativeExpected(__FUNCTION__,transferResult);
                return transferResult;
            }
        }

        //Logs the end of the file transfer. For more details see Mainpage.c
        //The end gives just information about the file serial number but is needed to signal that the file transfer has correctly finished and needed for the file transfer plugin of the dlt viewer.
        transferResult = dlt_user_log_file_end(&fileContext,file3_2,0);
        if(transferResult < 0)
        {
            printf("Error: dlt_user_log_file_end\n");
            printTestResultNegativeExpected(__FUNCTION__,transferResult);
            return transferResult;
        }
    }
    printTestResultNegativeExpected(__FUNCTION__,transferResult);
    return 0;
}


//!Logs some information about the file.
int testFile3Run3(){

    //Just some log to the main context
    DLT_LOG(mainContext,DLT_LOG_INFO,DLT_STRING("Started testF3P2"),DLT_STRING(file3_3));

    //Here's the line where the dlt file file info is called. The method call logs some information to dlt about the file, filesize, file serial number and number of packages
    transferResult = dlt_user_log_file_infoAbout(&fileContext,file3_3);
    if(transferResult < 0)
    {
        //Error expected because file doesn't exist
        //printf("Error: dlt_user_log_file_infoAbout\n");
        //Just some log to the main context
        DLT_LOG(mainContext,DLT_LOG_INFO,DLT_STRING("Finished testF3P2"),DLT_STRING(file3_3));
        printTestResultNegativeExpected(__FUNCTION__,transferResult);
        return transferResult;
    }
    printTestResultNegativeExpected(__FUNCTION__,transferResult);
    return 0;
}

//!Main program dlt-test-filestransfer starts here
int main(void)
{
    //First file contains some text
    file1 = "/usr/local/share/dlt-filetransfer/dlt-test-filetransfer-file";
    //Second file is a picture
    file2 = "/usr/local/share/dlt-filetransfer/dlt-test-filetransfer-image.png";
    //Third file doesn't exist. Just to test the reaction when the file isn't available.
    file3_1 = "dlt-test-filetransfer-doesntExist_1";
    //Third file doesn't exist. Just to test the reaction when the file isn't available.
    file3_2 = "dlt-test-filetransfer-doesntExist_2";
    //Third file doesn't exist. Just to test the reaction when the file isn't available.
    file3_3 = "dlt-test-filetransfer-doesntExist_3";

    //Register the application at the dlt-daemon
    DLT_REGISTER_APP("FLTR","Test Application filetransfer");

    //Register the context of the main program at the dlt-daemon
    DLT_REGISTER_CONTEXT(mainContext,"MAIN","Main context for filetransfer test");

    //Register the context in which the file transfer will be logged at the dlt-daemon
    DLT_REGISTER_CONTEXT(fileContext,"FLTR","Test Context for filetransfer");

    //More details in corresponding methods
    testFile1Run1();
    testFile1Run2();
    testFile2Run1();
    testFile2Run2();
    testFile3Run1();
    testFile3Run2();
    testFile3Run3();

    //Unregister the context in which the file transfer happened from the dlt-daemon
    DLT_UNREGISTER_CONTEXT(fileContext);
    //Unregister the context of the main program from the dlt-daemon
    DLT_UNREGISTER_CONTEXT(mainContext);
    //Unregister the app from the dlt-daemon
    DLT_UNREGISTER_APP();

    return g_numFailed == 0 ? 0 : 1;
}