os/ossrv/compressionlibs/ziplib/test/rtest/ezexample/ezexample.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* Portions Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
 * All rights reserved.
sl@0
     3
 */
sl@0
     4
sl@0
     5
/* ezexample.c -- usage example of the zlib compression library
sl@0
     6
 * Copyright (C) 1995-1998 Jean-loup Gailly.
sl@0
     7
 * For conditions of distribution and use, see copyright notice in zlib.h 
sl@0
     8
 */
sl@0
     9
sl@0
    10
/* @(#) $Id$ */
sl@0
    11
sl@0
    12
#include <stdio.h>
sl@0
    13
#include <ezlib.h>
sl@0
    14
#include <e32test.h>
sl@0
    15
sl@0
    16
static RTest test(_L("ezexample.exe"));
sl@0
    17
sl@0
    18
_LIT(KTestTitle, "Open Source Library Defect Tests.");
sl@0
    19
sl@0
    20
#ifdef STDC
sl@0
    21
#  include <string.h>
sl@0
    22
#  include <stdlib.h>
sl@0
    23
#else
sl@0
    24
   extern void exit  OF((int));
sl@0
    25
#endif
sl@0
    26
sl@0
    27
#if defined(VMS) || defined(RISCOS)
sl@0
    28
#  define TESTFILE "foo-gz"
sl@0
    29
#else
sl@0
    30
#  define TESTFILE "foo.gz"
sl@0
    31
#endif
sl@0
    32
sl@0
    33
/* Test macro and function */
sl@0
    34
void Check(TInt aValue, TInt aExpected, TInt aLine)
sl@0
    35
	{
sl@0
    36
    if (aValue != aExpected)
sl@0
    37
    	{
sl@0
    38
        test.Printf(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
sl@0
    39
        test.operator()(EFalse, aLine);
sl@0
    40
        }
sl@0
    41
    }
sl@0
    42
#define test2(a, b) Check(a, b, __LINE__)
sl@0
    43
sl@0
    44
const char hello[] = "hello, hello!";
sl@0
    45
/* "hello world" would be more standard, but the repeated "hello"
sl@0
    46
 * stresses the compression code better, sorry...
sl@0
    47
 */
sl@0
    48
sl@0
    49
const char dictionary[] = "hello";
sl@0
    50
uLong dictId; /* Adler32 value of the dictionary */
sl@0
    51
sl@0
    52
void test_compress      OF((Byte *compr, uLong comprLen,
sl@0
    53
		            Byte *uncompr, uLong uncomprLen)); 
sl@0
    54
void test_deflate       OF((Byte *compr, uLong comprLen));
sl@0
    55
void test_inflate       OF((Byte *compr, uLong comprLen,
sl@0
    56
		            Byte *uncompr, uLong uncomprLen));
sl@0
    57
void test_large_deflate OF((Byte *compr, uLong comprLen,
sl@0
    58
		            Byte *uncompr, uLong uncomprLen));
sl@0
    59
void test_large_inflate OF((Byte *compr, uLong comprLen,
sl@0
    60
		            Byte *uncompr, uLong uncomprLen));
sl@0
    61
void test_flush         OF((Byte *compr, uLong *comprLen));
sl@0
    62
void test_sync          OF((Byte *compr, uLong comprLen,
sl@0
    63
		            Byte *uncompr, uLong uncomprLen));
sl@0
    64
void test_dict_deflate  OF((Byte *compr, uLong comprLen));
sl@0
    65
void test_dict_inflate  OF((Byte *compr, uLong comprLen,
sl@0
    66
		            Byte *uncompr, uLong uncomprLen));
sl@0
    67
void PrintString(TRefByValue<const TDesC> aFmt, char* string);
sl@0
    68
void RunTest();
sl@0
    69
sl@0
    70
/**
sl@0
    71
Test compress() and uncompress()
sl@0
    72
sl@0
    73
@SYMTestCaseID          SYSLIB-EZLIB-CT-0820-0001
sl@0
    74
@SYMTestCaseDesc	    Compression and decompression of a buffer test.
sl@0
    75
@SYMTestPriority 	    High
sl@0
    76
@SYMTestActions  	    Compress and uncompress string "hello" and check for integrity of the operation done.
sl@0
    77
@SYMTestExpectedResults The test must not fail.
sl@0
    78
@SYMREQ                 REQ0000
sl@0
    79
*/
sl@0
    80
void test_compress(
sl@0
    81
    Byte *compr, uLong comprLen, Byte *uncompr,
sl@0
    82
     uLong uncomprLen)
sl@0
    83
{
sl@0
    84
	test.Next(_L("test_compress"));
sl@0
    85
	test.Next(_L(" @SYMTestCaseID:SYSLIB-EZLIB-CT-0820-0001 "));
sl@0
    86
    int err;
sl@0
    87
    uLong len = strlen(hello)+1;
sl@0
    88
sl@0
    89
    err = compress(compr, &comprLen, (const Bytef*)hello, len);
sl@0
    90
    test2(err, Z_OK);
sl@0
    91
sl@0
    92
    strcpy((char*)uncompr, "garbage");
sl@0
    93
sl@0
    94
    err = uncompress(uncompr, &uncomprLen, compr, comprLen);
sl@0
    95
    test2(err, Z_OK);
sl@0
    96
sl@0
    97
    test2(strcmp((char*)uncompr, hello), 0); /* Fails if bad uncompress */
sl@0
    98
sl@0
    99
    PrintString(_L("uncompress(): %S\n"), (char*)uncompr);
sl@0
   100
}
sl@0
   101
sl@0
   102
/**
sl@0
   103
@SYMTestCaseID          SYSLIB-EZLIB-CT-0821-0001
sl@0
   104
@SYMTestCaseDesc	    Read and write of .gz files test
sl@0
   105
@SYMTestPriority 	    High
sl@0
   106
@SYMTestActions  	    Tests deflate() with small buffers
sl@0
   107
@SYMTestExpectedResults The test must not fail.
sl@0
   108
@SYMREQ                 REQ0000
sl@0
   109
*/
sl@0
   110
void test_deflate(
sl@0
   111
    Byte *compr,
sl@0
   112
    uLong comprLen)
sl@0
   113
{
sl@0
   114
	test.Next(_L("test_deflate"));
sl@0
   115
	test.Next(_L(" @SYMTestCaseID:SYSLIB-EZLIB-CT-0821-0001 "));
sl@0
   116
    z_stream c_stream; /* compression stream */
sl@0
   117
    int err;
sl@0
   118
    int len = strlen(hello)+1;
sl@0
   119
sl@0
   120
    c_stream.zalloc = (alloc_func)0;
sl@0
   121
    c_stream.zfree = (free_func)0;
sl@0
   122
    c_stream.opaque = (voidpf)0;
sl@0
   123
sl@0
   124
    err = deflateInit(&c_stream, Z_DEFAULT_COMPRESSION);
sl@0
   125
    test2(err, Z_OK);
sl@0
   126
sl@0
   127
    c_stream.next_in  = (Bytef*)hello;
sl@0
   128
    c_stream.next_out = compr;
sl@0
   129
sl@0
   130
    while (c_stream.total_in != (uLong)len && c_stream.total_out < comprLen) {
sl@0
   131
        c_stream.avail_in = c_stream.avail_out = 1; /* force small buffers */
sl@0
   132
        err = deflate(&c_stream, Z_NO_FLUSH);
sl@0
   133
        test2(err, Z_OK);
sl@0
   134
    }
sl@0
   135
    /* Finish the stream, still forcing small buffers: */
sl@0
   136
    for (;;) {
sl@0
   137
        c_stream.avail_out = 1;
sl@0
   138
        err = deflate(&c_stream, Z_FINISH);
sl@0
   139
        if (err == Z_STREAM_END) break;
sl@0
   140
        test2(err, Z_OK);
sl@0
   141
    }
sl@0
   142
sl@0
   143
    err = deflateEnd(&c_stream);
sl@0
   144
    test2(err, Z_OK);
sl@0
   145
}
sl@0
   146
sl@0
   147
/**
sl@0
   148
@SYMTestCaseID          SYSLIB-EZLIB-CT-0822-0001
sl@0
   149
@SYMTestCaseDesc	    Read and write of .gz files test
sl@0
   150
@SYMTestPriority 	    High
sl@0
   151
@SYMTestActions  	    Tests inflate() with small buffers
sl@0
   152
@SYMTestExpectedResults The test must not fail.
sl@0
   153
@SYMREQ                 REQ0000
sl@0
   154
*/
sl@0
   155
void test_inflate(
sl@0
   156
    Byte *compr, uLong comprLen, Byte *uncompr,
sl@0
   157
     uLong uncomprLen)
sl@0
   158
{
sl@0
   159
	test.Next(_L("test_inflate"));
sl@0
   160
	test.Next(_L(" @SYMTestCaseID:SYSLIB-EZLIB-CT-0822-0001 "));
sl@0
   161
    int err;
sl@0
   162
    z_stream d_stream; /* decompression stream */
sl@0
   163
sl@0
   164
    strcpy((char*)uncompr, "garbage");
sl@0
   165
sl@0
   166
    d_stream.zalloc = (alloc_func)0;
sl@0
   167
    d_stream.zfree = (free_func)0;
sl@0
   168
    d_stream.opaque = (voidpf)0;
sl@0
   169
sl@0
   170
    d_stream.next_in  = compr;
sl@0
   171
    d_stream.avail_in = 0;
sl@0
   172
    d_stream.next_out = uncompr;
sl@0
   173
sl@0
   174
    err = inflateInit(&d_stream);
sl@0
   175
    test2(err, Z_OK);
sl@0
   176
sl@0
   177
    while (d_stream.total_out < uncomprLen && d_stream.total_in < comprLen) {
sl@0
   178
        d_stream.avail_in = d_stream.avail_out = 1; /* force small buffers */
sl@0
   179
        err = inflate(&d_stream, Z_NO_FLUSH);
sl@0
   180
        if (err == Z_STREAM_END) break;
sl@0
   181
        test2(err, Z_OK);
sl@0
   182
    }
sl@0
   183
sl@0
   184
    err = inflateEnd(&d_stream);
sl@0
   185
    test2(err, Z_OK);
sl@0
   186
sl@0
   187
    test2(strcmp((char*)uncompr, hello), 0); /* Fails if bad inflate */
sl@0
   188
sl@0
   189
    PrintString(_L("inflate(): %S\n"), (char*)uncompr);   
sl@0
   190
}
sl@0
   191
sl@0
   192
/**
sl@0
   193
@SYMTestCaseID          SYSLIB-EZLIB-CT-0823-0001
sl@0
   194
@SYMTestCaseDesc	    Deflate with large buffers test
sl@0
   195
@SYMTestPriority 	    High
sl@0
   196
@SYMTestActions  	    Test deflate() with large buffers and dynamic change of compression level
sl@0
   197
@SYMTestExpectedResults The test must not fail.
sl@0
   198
@SYMREQ                 REQ0000
sl@0
   199
*/
sl@0
   200
void test_large_deflate(
sl@0
   201
    Byte *compr, uLong comprLen, Byte *uncompr,
sl@0
   202
     uLong uncomprLen)
sl@0
   203
{
sl@0
   204
	test.Next(_L("test_large_deflate"));
sl@0
   205
	test.Next(_L(" @SYMTestCaseID:SYSLIB-EZLIB-CT-0823-0001	"));
sl@0
   206
    z_stream c_stream; /* compression stream */
sl@0
   207
    int err;
sl@0
   208
sl@0
   209
    c_stream.zalloc = (alloc_func)0;
sl@0
   210
    c_stream.zfree = (free_func)0;
sl@0
   211
    c_stream.opaque = (voidpf)0;
sl@0
   212
sl@0
   213
    err = deflateInit(&c_stream, Z_BEST_SPEED);
sl@0
   214
    test2(err, Z_OK);
sl@0
   215
sl@0
   216
    c_stream.next_out = compr;
sl@0
   217
    c_stream.avail_out = (uInt)comprLen;
sl@0
   218
sl@0
   219
    /* At this point, uncompr is still mostly zeroes, so it should compress
sl@0
   220
     * very well:
sl@0
   221
     */
sl@0
   222
    c_stream.next_in = uncompr;
sl@0
   223
    c_stream.avail_in = (uInt)uncomprLen;
sl@0
   224
    err = deflate(&c_stream, Z_NO_FLUSH);
sl@0
   225
    test2(err, Z_OK);
sl@0
   226
    
sl@0
   227
    test2(c_stream.avail_in, 0); /* Fails if deflate not greedy */
sl@0
   228
sl@0
   229
    /* Feed in already compressed data and switch to no compression: */
sl@0
   230
    deflateParams(&c_stream, Z_NO_COMPRESSION, Z_DEFAULT_STRATEGY);
sl@0
   231
    c_stream.next_in = compr;
sl@0
   232
    c_stream.avail_in = (uInt)comprLen/2;
sl@0
   233
    err = deflate(&c_stream, Z_NO_FLUSH);
sl@0
   234
    test2(err, Z_OK);
sl@0
   235
sl@0
   236
    /* Switch back to compressing mode: */
sl@0
   237
    deflateParams(&c_stream, Z_BEST_COMPRESSION, Z_FILTERED);
sl@0
   238
    c_stream.next_in = uncompr;
sl@0
   239
    c_stream.avail_in = (uInt)uncomprLen;
sl@0
   240
    err = deflate(&c_stream, Z_NO_FLUSH);
sl@0
   241
    test2(err, Z_OK);
sl@0
   242
sl@0
   243
    err = deflate(&c_stream, Z_FINISH);
sl@0
   244
    test2(err, Z_STREAM_END);
sl@0
   245
sl@0
   246
    err = deflateEnd(&c_stream);
sl@0
   247
    test2(err, Z_OK);
sl@0
   248
}
sl@0
   249
sl@0
   250
/**
sl@0
   251
@SYMTestCaseID          SYSLIB-EZLIB-CT-0824-0001
sl@0
   252
@SYMTestCaseDesc	    Inflate with large buffers test
sl@0
   253
@SYMTestPriority 	    High
sl@0
   254
@SYMTestActions  	    Tests inflate() with large buffers
sl@0
   255
@SYMTestExpectedResults The test must not fail.
sl@0
   256
@SYMREQ                 REQ0000
sl@0
   257
*/
sl@0
   258
sl@0
   259
void test_large_inflate(
sl@0
   260
    Byte *compr, uLong comprLen, Byte *uncompr,
sl@0
   261
     uLong uncomprLen)
sl@0
   262
{
sl@0
   263
    test.Next(_L(" @SYMTestCaseID:SYSLIB-EZLIB-CT-0824-0001 test_large_inflate "));
sl@0
   264
    int err;
sl@0
   265
    z_stream d_stream; /* decompression stream */
sl@0
   266
sl@0
   267
    strcpy((char*)uncompr, "garbage");
sl@0
   268
sl@0
   269
    d_stream.zalloc = (alloc_func)0;
sl@0
   270
    d_stream.zfree = (free_func)0;
sl@0
   271
    d_stream.opaque = (voidpf)0;
sl@0
   272
sl@0
   273
    d_stream.next_in  = compr;
sl@0
   274
    d_stream.avail_in = (uInt)comprLen;
sl@0
   275
sl@0
   276
    err = inflateInit(&d_stream);
sl@0
   277
    test2(err, Z_OK);
sl@0
   278
sl@0
   279
    for (;;) {
sl@0
   280
        d_stream.next_out = uncompr;            /* discard the output */
sl@0
   281
	d_stream.avail_out = (uInt)uncomprLen;
sl@0
   282
        err = inflate(&d_stream, Z_NO_FLUSH);
sl@0
   283
        if (err == Z_STREAM_END) break;
sl@0
   284
        test2(err, Z_OK);
sl@0
   285
    }
sl@0
   286
sl@0
   287
    err = inflateEnd(&d_stream);
sl@0
   288
    test2(err, Z_OK);
sl@0
   289
sl@0
   290
    test2(d_stream.total_out, (2*uncomprLen + comprLen/2)); /* Fails if bad large inflate */
sl@0
   291
sl@0
   292
    test.Printf(_L("large_inflate(): OK\n"));
sl@0
   293
}
sl@0
   294
sl@0
   295
/**
sl@0
   296
@SYMTestCaseID          SYSLIB-EZLIB-CT-0825-0001
sl@0
   297
@SYMTestCaseDesc	    Test deflate() with full flush
sl@0
   298
@SYMTestPriority 	    High
sl@0
   299
@SYMTestActions  	    Test by flushing the output as random access is desired
sl@0
   300
@SYMTestExpectedResults The test must not fail.
sl@0
   301
@SYMREQ                 REQ0000
sl@0
   302
*/
sl@0
   303
void test_flush(
sl@0
   304
    Byte *compr,
sl@0
   305
    uLong *comprLen)
sl@0
   306
{
sl@0
   307
	test.Next(_L("test_flush"));
sl@0
   308
	test.Next(_L(" @SYMTestCaseID:SYSLIB-EZLIB-CT-0825-0001 "));
sl@0
   309
    z_stream c_stream; /* compression stream */
sl@0
   310
    int err;
sl@0
   311
    int len = strlen(hello)+1;
sl@0
   312
sl@0
   313
    c_stream.zalloc = (alloc_func)0;
sl@0
   314
    c_stream.zfree = (free_func)0;
sl@0
   315
    c_stream.opaque = (voidpf)0;
sl@0
   316
sl@0
   317
    err = deflateInit(&c_stream, Z_DEFAULT_COMPRESSION);
sl@0
   318
    test2(err, Z_OK);
sl@0
   319
sl@0
   320
    c_stream.next_in  = (Bytef*)hello;
sl@0
   321
    c_stream.next_out = compr;
sl@0
   322
    c_stream.avail_in = 3;
sl@0
   323
    c_stream.avail_out = (uInt)*comprLen;
sl@0
   324
    err = deflate(&c_stream, Z_FULL_FLUSH);
sl@0
   325
    test2(err, Z_OK);
sl@0
   326
sl@0
   327
    compr[3]++; /* force an error in first compressed block */
sl@0
   328
    c_stream.avail_in = len - 3;
sl@0
   329
sl@0
   330
    err = deflate(&c_stream, Z_FINISH);
sl@0
   331
    if (err != Z_STREAM_END) {
sl@0
   332
    	test2(err, Z_OK);
sl@0
   333
    }
sl@0
   334
    err = deflateEnd(&c_stream);
sl@0
   335
    test2(err, Z_OK);
sl@0
   336
sl@0
   337
    *comprLen = c_stream.total_out;
sl@0
   338
}
sl@0
   339
sl@0
   340
/**
sl@0
   341
@SYMTestCaseID          SYSLIB-EZLIB-CT-0826-0001
sl@0
   342
@SYMTestCaseDesc	    Test the inflateSync() function
sl@0
   343
@SYMTestPriority 	    High
sl@0
   344
@SYMTestActions  	    Tests for reading of compressed data with damaged parts and check for errors.
sl@0
   345
@SYMTestExpectedResults The test must not fail.
sl@0
   346
@SYMREQ                 REQ0000
sl@0
   347
*/
sl@0
   348
void test_sync(
sl@0
   349
    Byte *compr, uLong comprLen, Byte *uncompr,
sl@0
   350
     uLong uncomprLen)
sl@0
   351
{
sl@0
   352
	test.Next(_L("test_sync"));
sl@0
   353
	test.Next(_L(" @SYMTestCaseID:SYSLIB-EZLIB-CT-0826-0001 "));
sl@0
   354
    int err;
sl@0
   355
    z_stream d_stream; /* decompression stream */
sl@0
   356
sl@0
   357
    strcpy((char*)uncompr, "garbage");
sl@0
   358
sl@0
   359
    d_stream.zalloc = (alloc_func)0;
sl@0
   360
    d_stream.zfree = (free_func)0;
sl@0
   361
    d_stream.opaque = (voidpf)0;
sl@0
   362
sl@0
   363
    d_stream.next_in  = compr;
sl@0
   364
    d_stream.avail_in = 2; /* just read the zlib header */
sl@0
   365
sl@0
   366
    err = inflateInit(&d_stream);
sl@0
   367
    test2(err, Z_OK);
sl@0
   368
sl@0
   369
    d_stream.next_out = uncompr;
sl@0
   370
    d_stream.avail_out = (uInt)uncomprLen;
sl@0
   371
sl@0
   372
    inflate(&d_stream, Z_NO_FLUSH);
sl@0
   373
    test2(err, Z_OK);
sl@0
   374
sl@0
   375
    d_stream.avail_in = (uInt)comprLen-2;   /* read all compressed data */
sl@0
   376
    err = inflateSync(&d_stream);           /* but skip the damaged part */
sl@0
   377
    test2(err, Z_OK);
sl@0
   378
sl@0
   379
    err = inflate(&d_stream, Z_FINISH);
sl@0
   380
    test2(err, Z_DATA_ERROR); /* inflate should report DATA_ERROR because of incorrect adler32 */
sl@0
   381
sl@0
   382
    err = inflateEnd(&d_stream);
sl@0
   383
    test2(err, Z_OK);
sl@0
   384
sl@0
   385
    PrintString(_L("after inflateSync(): hel%S\n"), (char*)uncompr);
sl@0
   386
}
sl@0
   387
sl@0
   388
/**
sl@0
   389
@SYMTestCaseID          SYSLIB-EZLIB-CT-0827-0001
sl@0
   390
@SYMTestCaseDesc	    Deflation functionality test
sl@0
   391
@SYMTestPriority 	    High
sl@0
   392
@SYMTestActions  	    Test deflate() function with preset dictionary
sl@0
   393
@SYMTestExpectedResults The test must not fail.
sl@0
   394
@SYMREQ                 REQ0000
sl@0
   395
*/
sl@0
   396
void test_dict_deflate(
sl@0
   397
    Byte *compr,
sl@0
   398
    uLong comprLen)
sl@0
   399
{
sl@0
   400
	test.Next(_L("test_dict_deflate"));
sl@0
   401
	test.Next(_L(" @SYMTestCaseID:SYSLIB-EZLIB-CT-0827-0001 "));
sl@0
   402
    z_stream c_stream; /* compression stream */
sl@0
   403
    int err;
sl@0
   404
sl@0
   405
    c_stream.zalloc = (alloc_func)0;
sl@0
   406
    c_stream.zfree = (free_func)0;
sl@0
   407
    c_stream.opaque = (voidpf)0;
sl@0
   408
sl@0
   409
    err = deflateInit(&c_stream, Z_BEST_COMPRESSION);
sl@0
   410
    test2(err, Z_OK);
sl@0
   411
sl@0
   412
    err = deflateSetDictionary(&c_stream,
sl@0
   413
			       (const Bytef*)dictionary, sizeof(dictionary));
sl@0
   414
    test2(err, Z_OK);
sl@0
   415
sl@0
   416
    dictId = c_stream.adler;
sl@0
   417
    c_stream.next_out = compr;
sl@0
   418
    c_stream.avail_out = (uInt)comprLen;
sl@0
   419
sl@0
   420
    c_stream.next_in = (Bytef*)hello;
sl@0
   421
    c_stream.avail_in = (uInt)strlen(hello)+1;
sl@0
   422
sl@0
   423
    err = deflate(&c_stream, Z_FINISH);
sl@0
   424
    test2(err, Z_STREAM_END);
sl@0
   425
sl@0
   426
    err = deflateEnd(&c_stream);
sl@0
   427
    test2(err, Z_OK);
sl@0
   428
}
sl@0
   429
sl@0
   430
/**
sl@0
   431
@SYMTestCaseID          SYSLIB-EZLIB-CT-0828-0001
sl@0
   432
@SYMTestCaseDesc	    Inflation functionality test
sl@0
   433
@SYMTestPriority 	    High
sl@0
   434
@SYMTestActions  	    Test inflate() with a preset dictionary
sl@0
   435
@SYMTestExpectedResults The test must not fail.
sl@0
   436
@SYMREQ                 REQ0000
sl@0
   437
*/
sl@0
   438
void test_dict_inflate(
sl@0
   439
    Byte *compr, uLong comprLen, Byte *uncompr,
sl@0
   440
     uLong uncomprLen)
sl@0
   441
{
sl@0
   442
	test.Next(_L("test_dict_inflate"));
sl@0
   443
	test.Next(_L(" @SYMTestCaseID:SYSLIB-EZLIB-CT-0828-0001 "));
sl@0
   444
    int err;
sl@0
   445
    z_stream d_stream; /* decompression stream */
sl@0
   446
sl@0
   447
    strcpy((char*)uncompr, "garbage");
sl@0
   448
sl@0
   449
    d_stream.zalloc = (alloc_func)0;
sl@0
   450
    d_stream.zfree = (free_func)0;
sl@0
   451
    d_stream.opaque = (voidpf)0;
sl@0
   452
sl@0
   453
    d_stream.next_in  = compr;
sl@0
   454
    d_stream.avail_in = (uInt)comprLen;
sl@0
   455
sl@0
   456
    err = inflateInit(&d_stream);
sl@0
   457
    test2(err, Z_OK);
sl@0
   458
sl@0
   459
    d_stream.next_out = uncompr;
sl@0
   460
    d_stream.avail_out = (uInt)uncomprLen;
sl@0
   461
sl@0
   462
    for (;;) {
sl@0
   463
        err = inflate(&d_stream, Z_NO_FLUSH);
sl@0
   464
        if (err == Z_STREAM_END) break;
sl@0
   465
		if (err == Z_NEED_DICT) {
sl@0
   466
			test2(d_stream.adler, dictId); /* Fails if unexpected dictionary */
sl@0
   467
sl@0
   468
		    err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary,
sl@0
   469
					       sizeof(dictionary));
sl@0
   470
		}
sl@0
   471
		test2(err, Z_OK);
sl@0
   472
    }
sl@0
   473
sl@0
   474
    err = inflateEnd(&d_stream);
sl@0
   475
    test2(err, Z_OK);
sl@0
   476
sl@0
   477
    test2(strcmp((char*)uncompr, hello), 0); /* Fails if bad inflate with dictionary */
sl@0
   478
sl@0
   479
    PrintString(_L("inflate with dictionary: %S\n"), (char*)uncompr);
sl@0
   480
}
sl@0
   481
sl@0
   482
/* ===========================================================================
sl@0
   483
 * Usage:  example [output.gz  [input.gz]]
sl@0
   484
 */
sl@0
   485
sl@0
   486
void PrintString(TRefByValue<const TDesC> aFmt, char* string)
sl@0
   487
	{
sl@0
   488
	TPtrC8 ptrc8;
sl@0
   489
	TBuf<100> buf;
sl@0
   490
	ptrc8.Set((TUint8*)string, strlen(string));
sl@0
   491
	buf.Copy(ptrc8);
sl@0
   492
	test.Printf(aFmt, &buf);
sl@0
   493
	}
sl@0
   494
sl@0
   495
void RunTest()
sl@0
   496
{
sl@0
   497
    Byte *compr, *uncompr;
sl@0
   498
    uLong comprLen = 10000*sizeof(int); /* don't overflow on MSDOS */
sl@0
   499
    uLong uncomprLen = comprLen;
sl@0
   500
    static const char* myVersion = ZLIB_VERSION;
sl@0
   501
sl@0
   502
    test2(zlibVersion()[0], myVersion[0]); /* Fails if incompatible zlib version */
sl@0
   503
    
sl@0
   504
    if (strcmp(zlibVersion(), ZLIB_VERSION) != 0) {
sl@0
   505
    	test.Printf(_L("warning: different zlib version\n"));
sl@0
   506
    }
sl@0
   507
sl@0
   508
    compr    = (Byte*)calloc((uInt)comprLen, 1);
sl@0
   509
    uncompr  = (Byte*)calloc((uInt)uncomprLen, 1);
sl@0
   510
    /* compr and uncompr are cleared to avoid reading uninitialized
sl@0
   511
     * data and to ensure that uncompr compresses well.
sl@0
   512
     */
sl@0
   513
    test2((compr == Z_NULL || uncompr == Z_NULL), 0); /* Fails if out of memory */
sl@0
   514
sl@0
   515
    test_compress(compr, comprLen, uncompr, uncomprLen);
sl@0
   516
sl@0
   517
    test_deflate(compr, comprLen);
sl@0
   518
    test_inflate(compr, comprLen, uncompr, uncomprLen);
sl@0
   519
sl@0
   520
    test_large_deflate(compr, comprLen, uncompr, uncomprLen);
sl@0
   521
    test_large_inflate(compr, comprLen, uncompr, uncomprLen);
sl@0
   522
sl@0
   523
    test_flush(compr, &comprLen);
sl@0
   524
    test_sync(compr, comprLen, uncompr, uncomprLen);
sl@0
   525
    comprLen = uncomprLen;
sl@0
   526
sl@0
   527
    test_dict_deflate(compr, comprLen);
sl@0
   528
    test_dict_inflate(compr, comprLen, uncompr, uncomprLen);
sl@0
   529
    
sl@0
   530
    delete compr;
sl@0
   531
    delete uncompr;
sl@0
   532
}
sl@0
   533
sl@0
   534
GLDEF_C TInt E32Main()
sl@0
   535
	{
sl@0
   536
	__UHEAP_MARK;
sl@0
   537
sl@0
   538
	test.Printf(_L("\n"));
sl@0
   539
	test.Title();
sl@0
   540
	test.Start(KTestTitle);
sl@0
   541
sl@0
   542
	CTrapCleanup* cleanup = CTrapCleanup::New();
sl@0
   543
sl@0
   544
	TRAPD(err, RunTest());
sl@0
   545
	test2(err, KErrNone);
sl@0
   546
	
sl@0
   547
	test.End();
sl@0
   548
	test.Close();
sl@0
   549
	delete cleanup;
sl@0
   550
sl@0
   551
	__UHEAP_MARKEND;
sl@0
   552
	return KErrNone;
sl@0
   553
	}