Update contrib.
2 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
3 // All rights reserved.
4 // This component and the accompanying materials are made available
5 // under the terms of "Eclipse Public License v1.0"
6 // which accompanies this distribution, and is available
7 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 // Initial Contributors:
10 // Nokia Corporation - initial contribution.
15 // Name : ulibz_test.cpp
24 // ============================ MEMBER FUNCTIONS ===============================
28 -------------------------------------------------------------------------------
29 Function Name : CTestlibz::libzcomp_decomp()
30 API Tested : Compress() and Decompress()
32 -------------------------------------------------------------------------------
36 TInt CTestlibz::libzcomp_decomp()
45 const char hello[] = "hello, hello!";
47 comprLen = sizeof(compr);
48 uncomprLen = sizeof(uncompr);
50 uLong len = (uLong)strlen(hello)+1;
52 INFO_PRINTF1(_L("compress()\n"));
53 err = compress(compr, &comprLen, (const Bytef*)hello, len);
56 INFO_PRINTF1(_L("compress failed\n"));
60 strcpy((char*)uncompr, "garbage");
62 INFO_PRINTF1(_L("uncompress()\n"));
63 err = uncompress(uncompr, &uncomprLen, compr, comprLen);
66 INFO_PRINTF1(_L("uncompress failed\n"));
69 if (strcmp((char*)uncompr, hello))
71 INFO_PRINTF1(_L("Bad uncompress\n"));
80 -------------------------------------------------------------------------------
81 Function Name : CTestlibz::libzdefl_Infl()
82 API Tested : deflate(), deflateInit(), deflateEnd().
84 -------------------------------------------------------------------------------
88 TInt CTestlibz::libzdefl_Infl()
96 uLong uncomprLen = 30;
98 compr = (Byte*)calloc((uInt)comprLen, 1);
101 INFO_PRINTF1(_L("Could not allocate memory for compr."));
105 uncompr = (Byte*)calloc((uInt)uncomprLen, 1);
108 INFO_PRINTF1(_L("Could not allocate memory for uncompr."));
113 ret = libzdeflate(compr, comprLen);
114 if(ret == KErrGeneral)
120 ret = libzinflate(compr, comprLen, uncompr, uncomprLen);
129 -------------------------------------------------------------------------------
130 Function Name : CTestlibz::libzdeflate()
131 API Tested : deflate(), deflateInit(), deflateEnd().
133 -------------------------------------------------------------------------------
136 TInt CTestlibz::libzdeflate(Byte * compr, uLong comprLen)
138 z_stream c_stream; /* compression stream */
142 const char hello[] = "hello, hello!";
144 uLong len = (uLong)strlen(hello)+1;
146 c_stream.zalloc = (alloc_func)0;
147 c_stream.zfree = (free_func)0;
148 c_stream.opaque = (voidpf)0;
150 err = deflateInit(&c_stream, Z_DEFAULT_COMPRESSION);
153 INFO_PRINTF2(_L("deflateInit failed with err %d"), err);
156 c_stream.next_in = (Bytef*)hello;
157 c_stream.next_out = compr;
159 while (c_stream.total_in != len && c_stream.total_out < comprLen)
161 c_stream.avail_in = c_stream.avail_out = 1; /* force small buffers */
162 err = deflate(&c_stream, Z_NO_FLUSH);
165 INFO_PRINTF2(_L("deflate failed with err %d"), err);
170 /* Finish the stream, still forcing small buffers: */
173 c_stream.avail_out = 1;
174 err = deflate(&c_stream, Z_FINISH);
175 if (err == Z_STREAM_END)
179 INFO_PRINTF2(_L("deflate failed with err %d"), err);
183 INFO_PRINTF1(_L("deflateEnd()\n"));
184 err = deflateEnd(&c_stream);
187 INFO_PRINTF2(_L("deflateEnd failed with err %d"), err);
195 -------------------------------------------------------------------------------
196 Function Name : CTestlibz::libzinflate()
197 API Tested : inflate(), inflateInit(),inflateEnd().
199 -------------------------------------------------------------------------------
202 TInt CTestlibz::libzinflate(Byte * compr,uLong comprLen, Byte * uncompr, uLong uncomprLen)
204 z_stream d_stream; /* decompression stream */
206 const char hello[] = "hello, hello!";
208 strcpy((char*)uncompr, "garbage");
210 d_stream.zalloc = (alloc_func)0;
211 d_stream.zfree = (free_func)0;
212 d_stream.opaque = (voidpf)0;
214 d_stream.next_in = compr;
215 d_stream.avail_in = 0;
216 d_stream.next_out = uncompr;
218 err = inflateInit(&d_stream);
221 INFO_PRINTF2(_L("inflateInit failed with err %d"), err);
225 while (d_stream.total_out < uncomprLen && d_stream.total_in < comprLen) {
226 d_stream.avail_in = d_stream.avail_out = 1; /* force small buffers */
227 err = inflate(&d_stream, Z_NO_FLUSH);
228 if (err == Z_STREAM_END)
232 INFO_PRINTF2(_L("inflate failed with err %d"), err);
237 err = inflateEnd(&d_stream);
240 INFO_PRINTF2(_L("inflateEnd failed with err %d"), err);
243 if (strcmp((char*)uncompr, hello))
245 INFO_PRINTF1(_L("Bad Inflate\n"));
252 -------------------------------------------------------------------------------
253 Function Name : CTestlibz::libzgzio()
254 API Tested : gzopen(), gzputc(), gzprintf(), gzseek(), gzclose(),
255 gzread(), gzgetc(), gzungetc(), gzgets(), gzputs(),
258 -------------------------------------------------------------------------------
261 TInt CTestlibz::libzgzio()
265 INFO_PRINT1(_L("NO_GZCOMPRESS -- gz* functions cannot compress"));
268 const char Buffer[] = "Symbian Libz!";
270 char fname[] = "C:\\Libz\\Test1\\bye.gz";
276 err = iRfile.Create(iRfs, KGZFILE, EFileShareAny);
277 if( err != KErrNone && err != KErrAlreadyExists )
279 INFO_PRINTF1(_L("File create successfully\n"));
283 len = (int)strlen(Buffer)+1;
285 //-------------gzopen()------------------
286 INFO_PRINTF1(_L("gzopen()\n"));
287 file = gzopen(fname, "wb");
289 INFO_PRINTF1(_L("gzopen error"));
293 //-------------gzputc() ------------
294 INFO_PRINTF1(_L("gputc()\n"));
296 if (gzputs(file, "ymbian") != 6) {
297 INFO_PRINTF2(_L("gzputs err: %s\n"), gzerror(file, &err));
300 //-------------gzprintf() ------------
301 INFO_PRINTF1(_L("gzprintf()\n"));
302 if (gzprintf(file, " %s!", "Libz") != 6) {
303 INFO_PRINTF2(_L("gzprintf err: %s\n"), gzerror(file, &err));
306 //-------------gzseek() ------------
307 INFO_PRINTF1(_L("gzseek()\n"));
308 if(gzseek(file, 1L, SEEK_CUR) != 14){ /* add one zero byte */
309 INFO_PRINTF2(_L("gzseek err: %s\n"), gzerror(file, &err));
312 //-------------gzclose() ------------
313 INFO_PRINTF1(_L("gzclose()\n"));
314 if(gzclose(file) == Z_ERRNO){
315 INFO_PRINTF2(_L("gzclose err: %s\n"), gzerror(file, &err));
319 //-------------gzopen()------------------
320 INFO_PRINTF1(_L("gzopen()\n"));
321 file = gzopen(fname, "rb");
323 INFO_PRINTF1(_L("gzopen error\n"));
326 strcpy((char*)uncompr, "garbage");
328 //-------------gzread()------------------
329 INFO_PRINTF1(_L("gzread()\n"));
330 if (gzread(file, uncompr, sizeof(uncompr)) != len) {
331 INFO_PRINTF2(_L("gzread err: %s\n"), gzerror(file, &err));
335 if (strcmp((char*)uncompr, Buffer))
337 INFO_PRINTF2(_L("bad gzread: %s\n"), (char*)uncompr);
341 //-------------gzseek() & gztell()-----------------
342 INFO_PRINTF1(_L("gzseek & gztell()\n"));
343 pos = gzseek(file, -7L, SEEK_CUR);
344 if (gztell(file) != pos || pos != 7)
346 INFO_PRINTF3(_L("gzseek error, pos=%ld, gztell=%ld\n"), (long)pos, (long)gztell(file));
350 //-------------gzgetc()------------------
351 INFO_PRINTF1(_L("gzgetc()\n"));
352 if (gzgetc(file) != ' ')
354 INFO_PRINTF1(_L("gzgetc error"));
359 //-------------gzungetc()------------------
360 INFO_PRINTF1(_L("gzungetc\n"));
361 if (gzungetc(' ', file) != ' ')
363 INFO_PRINTF1(_L("gzungetc error\n"));
367 //-------------gzgets()------------------
368 INFO_PRINTF1(_L("gzgets()\n"));
369 gzgets(file, (char*)uncompr, sizeof(uncompr));
370 if (strlen((char*)uncompr) != 6)
373 INFO_PRINTF2(_L("gzgets err after gzseek: %s\n"), gzerror(file, &err));
377 if (strcmp((char*)uncompr, Buffer + 7))
379 INFO_PRINTF1(_L("bad gzgets after gzseek\n"));
383 //-------------gzclose() ------------
384 if(gzclose(file) == Z_ERRNO)
386 INFO_PRINTF2(_L("gzclose err: %s\n"), gzerror(file, &err));
397 -------------------------------------------------------------------------------
398 Function Name : CTestlibz::libzversion()
399 API Tested : zlibversion()
401 -------------------------------------------------------------------------------
404 TInt CTestlibz::libzversion()
408 INFO_PRINTF1(_L("zlibVersion()\n"));
409 if( (strcmp( buf, zlibVersion() ) != 0) ){
410 INFO_PRINTF1(_L("zlibversion failed\n"));