1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/compressionlibs/ziplib/test/pctools/linktest/src/linktest.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,119 @@
1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include <iostream>
1.20 +#include <zlib.h>
1.21 +
1.22 +using namespace std;
1.23 +
1.24 +unsigned in OF((void FAR *in_desc, unsigned char FAR * FAR *in_buf))
1.25 + {
1.26 + in_desc = NULL;
1.27 + in_buf = NULL;
1.28 + return 0;
1.29 + }
1.30 +
1.31 +int out OF((void FAR *out_desc, unsigned char FAR *out_buf, unsigned len))
1.32 + {
1.33 + out_desc = NULL;
1.34 + out_buf = NULL;
1.35 + len = 0;
1.36 + return 0;
1.37 + }
1.38 +
1.39 +/**
1.40 +@SYMTestCaseID SYSLIB-EZLIB2-CT-4311
1.41 +@SYMTestCaseDesc To test that the all the zlib function calls can link against libz.dll and libzlib.a.
1.42 +@SYMTestPriority High
1.43 +@SYMTestActions Call every exported function in zlib.h.
1.44 +@SYMTestExpectedResults The code should build with no errors.
1.45 +*/
1.46 +void LinkTest()
1.47 + {
1.48 + z_stream stream, copiedStream;
1.49 + Bytef bytefarray[1];
1.50 + gz_header header;
1.51 + unsigned char uchararray[1];
1.52 + uLongf *ulongfp = NULL;
1.53 + const char *constcharp = NULL;
1.54 + char *charp = NULL;
1.55 + gzFile file = NULL;
1.56 + z_off_t zofft = 0;
1.57 + int *intp = NULL;
1.58 + const Bytef *constbytefp = NULL;
1.59 +
1.60 + zlibVersion();
1.61 + deflateInit(&stream, Z_DEFAULT_COMPRESSION);
1.62 + deflateInit2(&stream, Z_DEFAULT_COMPRESSION, Z_DEFLATED, MAX_WBITS, MAX_MEM_LEVEL, Z_DEFAULT_STRATEGY);
1.63 + deflateSetDictionary(&stream, bytefarray, 1);
1.64 + deflateCopy(&copiedStream, &stream);
1.65 + deflateReset(&stream);
1.66 + deflateParams(&stream, Z_DEFAULT_COMPRESSION, Z_DEFAULT_STRATEGY);
1.67 + deflateTune(&stream, 1, 1, 1, 1);
1.68 + deflateBound(&stream, 1);
1.69 + deflatePrime(&stream, 0, 0);
1.70 + deflateSetHeader(&stream, &header);
1.71 + deflate(&stream, Z_NO_FLUSH);
1.72 + deflateEnd(&stream);
1.73 + inflateInit(&stream);
1.74 + inflateInit2(&stream, MAX_WBITS);
1.75 + inflateSetDictionary(&stream, bytefarray, 1);
1.76 + inflateSync(&stream);
1.77 + inflateCopy(&copiedStream, &stream);
1.78 + inflateReset(&stream);
1.79 + inflatePrime(&stream, 0, 0);
1.80 + inflateGetHeader(&stream, &header);
1.81 + inflate(&stream, Z_NO_FLUSH);
1.82 + inflateEnd(&stream);
1.83 + inflateBackInit(&stream, MAX_WBITS, uchararray);
1.84 + inflateBack(&stream, in, uchararray, out, uchararray);
1.85 + inflateBackEnd(&stream);
1.86 + zlibCompileFlags();
1.87 + compress(bytefarray, ulongfp, bytefarray, 1);
1.88 + compress2(bytefarray, ulongfp, bytefarray, 1, Z_DEFAULT_COMPRESSION);
1.89 + compressBound(1);
1.90 + uncompress(bytefarray, ulongfp, bytefarray, 1);
1.91 + gzopen(constcharp, constcharp);
1.92 + gzdopen(1, constcharp);
1.93 + gzsetparams(file, Z_DEFAULT_COMPRESSION, Z_DEFAULT_STRATEGY);
1.94 + gzread(file, uchararray, 1);
1.95 + gzwrite(file, constcharp, 0);
1.96 + gzprintf(file, constcharp);
1.97 + gzputs(file, constcharp);
1.98 + gzgets(file, charp, 0);
1.99 + gzputc(file, 0);
1.100 + gzgetc(file);
1.101 + gzungetc(0, file);
1.102 + gzflush(file, Z_NO_FLUSH);
1.103 + gzseek(file, zofft, 0);
1.104 + gzrewind(file);
1.105 + gztell(file);
1.106 + gzeof(file);
1.107 + gzdirect(file);
1.108 + gzclose(file);
1.109 + gzerror(file, intp);
1.110 + gzclearerr(file);
1.111 + adler32(0, constbytefp, 0);
1.112 + adler32_combine(0, 0, zofft);
1.113 + crc32(0, constbytefp, 0);
1.114 + crc32_combine(0, 0, zofft);
1.115 + }
1.116 +
1.117 +int main()
1.118 + {
1.119 + LinkTest();
1.120 +
1.121 + return 0;
1.122 + }