os/ossrv/compressionlibs/ziplib/test/rtest/decompresstest/decompresstest.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include <e32cmn.h>
sl@0
    17
#include <f32file.h>
sl@0
    18
#include <e32test.h>
sl@0
    19
#include <ezgzip.h>
sl@0
    20
#include <ezfilebuffer.h>
sl@0
    21
#include <ezdecompressor.h>
sl@0
    22
sl@0
    23
_LIT(KTestTitle, "Decompress Test. ");
sl@0
    24
_LIT(KFileOutputPath, "c:\\test\\decompresstest\\");
sl@0
    25
_LIT(KFileInputPath, "c:\\test\\decompresstest\\testfiles\\");
sl@0
    26
sl@0
    27
RTest test(_L("decompresstest.exe"));
sl@0
    28
sl@0
    29
/* Test macro and function */
sl@0
    30
void Check(TInt aValue, TInt aExpected, TInt aLine)
sl@0
    31
	{
sl@0
    32
    if (aValue != aExpected)
sl@0
    33
    	{
sl@0
    34
        test.Printf(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
sl@0
    35
        test.operator()(EFalse, aLine);
sl@0
    36
        }
sl@0
    37
    }
sl@0
    38
#define test2(a, b) Check(a, b, __LINE__)
sl@0
    39
sl@0
    40
sl@0
    41
void DecompressZipL(RFile &aInputFile, RFile &aOutputFile)
sl@0
    42
	{
sl@0
    43
	CEZFileBufferManager *bufferManager = CEZFileBufferManager::NewLC(aInputFile, aOutputFile);	
sl@0
    44
	CEZDecompressor *decompressor = CEZDecompressor::NewLC(*bufferManager, MAX_WBITS);
sl@0
    45
	while(decompressor->InflateL())
sl@0
    46
		{
sl@0
    47
		// Do nothing here
sl@0
    48
		}
sl@0
    49
	
sl@0
    50
	CleanupStack::PopAndDestroy(3);
sl@0
    51
	}
sl@0
    52
sl@0
    53
void DecompressGZipL(RFs &aFs, RFile &aOutputFile, const TFileName &aFileInputPath, const TFileName &aFileName)
sl@0
    54
	{
sl@0
    55
	aFs.SetSessionPath(aFileInputPath);
sl@0
    56
	CEZGZipToFile *decompressor = CEZGZipToFile::NewLC(aFs, aFileName, aOutputFile);
sl@0
    57
	while(decompressor->InflateL())
sl@0
    58
		{
sl@0
    59
		// Do nothing here
sl@0
    60
		}
sl@0
    61
	
sl@0
    62
	CleanupStack::PopAndDestroy(1);
sl@0
    63
	}
sl@0
    64
sl@0
    65
void TestDecompressL(RFs &aFs, const TFileName &aFileInputPath, const TFileName &aFileName)
sl@0
    66
	{
sl@0
    67
	test.Printf(_L("\nUsing file %S. "), &aFileName);
sl@0
    68
	
sl@0
    69
	// Create temporary output file and open it for writing
sl@0
    70
	TFileName outputFileName;
sl@0
    71
	RFile outputFile;
sl@0
    72
	
sl@0
    73
	aFs.MkDir(KFileOutputPath);
sl@0
    74
	outputFile.Temp(aFs, KFileOutputPath, outputFileName, EFileWrite);
sl@0
    75
	CleanupClosePushL(outputFile);
sl@0
    76
	
sl@0
    77
	// Decompress file based on whether its a gzip file or zip archive
sl@0
    78
	aFs.SetSessionPath(aFileInputPath);
sl@0
    79
	EZGZipFile gzipFile;	
sl@0
    80
	if(gzipFile.IsGzipFileL(aFs, aFileName))
sl@0
    81
		{
sl@0
    82
		// Check for memory leaks
sl@0
    83
		__UHEAP_MARK;
sl@0
    84
		TRAPD(err, DecompressGZipL(aFs, outputFile, aFileInputPath, aFileName));
sl@0
    85
		__UHEAP_MARKEND;
sl@0
    86
		switch(err)
sl@0
    87
			{
sl@0
    88
			case KEZlibErrStream:
sl@0
    89
			case KEZlibErrData:
sl@0
    90
			case KEZlibErrBuf:
sl@0
    91
			case KEZlibErrVersion:
sl@0
    92
			case KEZlibErrUnexpected:
sl@0
    93
			case KEZlibErrDeflateTerminated:
sl@0
    94
			case KEZlibErrInflateTerminated:
sl@0
    95
			case KEZlibErrInflateDictionary:
sl@0
    96
			case KEZlibErrNotGZipFile:
sl@0
    97
			case KEZlibErrInvalidCompression:
sl@0
    98
			case KEZlibErrBadGZipHeader:
sl@0
    99
			case KEZlibErrBadGZipTrailer:
sl@0
   100
			case KEZlibErrBadGZipCrc: 
sl@0
   101
				break;
sl@0
   102
			default: 
sl@0
   103
				if(err > KErrNone || err < KErrNoSecureTime)
sl@0
   104
					{
sl@0
   105
					test.Printf(_L("FAILED! error = %d"), err);
sl@0
   106
					test2(err, KErrNone);	
sl@0
   107
					}
sl@0
   108
			}
sl@0
   109
		}
sl@0
   110
	else
sl@0
   111
		{
sl@0
   112
		// Open the input file for reading
sl@0
   113
        RFile inputFile;
sl@0
   114
        
sl@0
   115
        aFs.SetSessionPath(aFileInputPath);
sl@0
   116
        User::LeaveIfError(inputFile.Open(aFs, aFileName, EFileRead));
sl@0
   117
        CleanupClosePushL(inputFile);
sl@0
   118
		
sl@0
   119
		__UHEAP_MARK;
sl@0
   120
		TRAPD(err, DecompressZipL(inputFile, outputFile));
sl@0
   121
		__UHEAP_MARKEND;
sl@0
   122
		switch(err)
sl@0
   123
			{
sl@0
   124
			case KEZlibErrStream:
sl@0
   125
			case KEZlibErrData:
sl@0
   126
			case KEZlibErrBuf:
sl@0
   127
			case KEZlibErrVersion:
sl@0
   128
			case KEZlibErrUnexpected:
sl@0
   129
			case KEZlibErrDeflateTerminated:
sl@0
   130
			case KEZlibErrInflateTerminated:
sl@0
   131
			case KEZlibErrInflateDictionary: 
sl@0
   132
				break;
sl@0
   133
			default: 
sl@0
   134
				if(err > KErrNone || err < KErrNoSecureTime)
sl@0
   135
					{
sl@0
   136
					test.Printf(_L("FAILED! error = %d"), err);
sl@0
   137
					test2(err, KErrNone);
sl@0
   138
					}
sl@0
   139
			}
sl@0
   140
			
sl@0
   141
			CleanupStack::PopAndDestroy(1);
sl@0
   142
		}
sl@0
   143
	CleanupStack::PopAndDestroy(1);
sl@0
   144
	
sl@0
   145
	// Delete temporary output file
sl@0
   146
	aFs.SetSessionPath(KFileOutputPath);
sl@0
   147
	aFs.Delete(outputFileName);
sl@0
   148
	}
sl@0
   149
sl@0
   150
/**
sl@0
   151
@SYMTestCaseID          SYSLIB-EZLIB2-CT-4315
sl@0
   152
@SYMTestCaseDesc	    To test for invalid return codes, panics and memory leaks when 
sl@0
   153
                        decompressing invalid Zip archive and GZip files.
sl@0
   154
@SYMTestPriority 	    Medium
sl@0
   155
@SYMTestActions  	    1.	Create an instance of CDir and get the number of files and 
sl@0
   156
                            directories in the test file directory.
sl@0
   157
                        2.	Loop through the list of files and directories, held by CDir. 
sl@0
   158
                            a.	If the current entry is a directory navigate to it and go 
sl@0
   159
                                back to step 1.
sl@0
   160
                            b.	If the current entry is a file, open a temporary output 
sl@0
   161
                                file for writing. Then check if we have a GZip or Zip archive.
sl@0
   162
                            c.	If we have a GZip file:
sl@0
   163
                                i.	Call __UHEAP_MARK
sl@0
   164
                                ii.	Create a CEZGZipToFile passing it the open output file 
sl@0
   165
                                    and the name of the input file.
sl@0
   166
                                iii.Call InflateL as many times as needed to decompress 
sl@0
   167
                                    the input file.
sl@0
   168
                                iv.	Call __UHEAP_MARKEND
sl@0
   169
                                v.	Check any leave errors against a list of expected 
sl@0
   170
                                    errors. If an unexpected leave value is returned, panic.
sl@0
   171
                            d.	If we have a Zip archive
sl@0
   172
                                i.	Open the input file for reading.
sl@0
   173
                                ii.	Call __UHEAP_MARK.
sl@0
   174
                                iii.Create a CEZFileBufferManager passing it the open 
sl@0
   175
                                    input and output files.
sl@0
   176
                                iv.	Create a CEZDecompressor passing it the 
sl@0
   177
                                    CEZFileBufferManager and windowBits of 15.
sl@0
   178
                                v.	Call InflateL as many times as needed to decompress 
sl@0
   179
                                    the input file.
sl@0
   180
                                vi.	Call __UHEAP_MARKEND
sl@0
   181
                                vii.Check any leave errors against a list of expected 
sl@0
   182
                                    errors. If an unexpected leave value is returned, panic.
sl@0
   183
                            e.	Delete the temporary output file.
sl@0
   184
@SYMTestExpectedResults There will be no memory leaks or panics and all return codes will 
sl@0
   185
                        be the expected ones.
sl@0
   186
@SYMDEF                 REQ8024
sl@0
   187
*/
sl@0
   188
void TestL(RFs &aFs, TFileName aFileInputPath)
sl@0
   189
	{
sl@0
   190
	test.Printf(_L("\nIn directory %S. "), &aFileInputPath);
sl@0
   191
	test.Next(_L(" @SYMTestCaseID:SYSLIB-EZLIB2-CT-4315 "));
sl@0
   192
	
sl@0
   193
	CDir *inputFiles;
sl@0
   194
	aFs.GetDir(aFileInputPath, KEntryAttNormal|KEntryAttDir, ESortByName | EDirsFirst, inputFiles);
sl@0
   195
	CleanupStack::PushL(inputFiles);
sl@0
   196
	
sl@0
   197
	TInt numInputFiles = inputFiles->Count();
sl@0
   198
	for(TInt i = 0; i < numInputFiles; i++)
sl@0
   199
		{
sl@0
   200
		TEntry entry = (*inputFiles)[i];
sl@0
   201
		
sl@0
   202
		// If we have a directory we need to try decompressing the files contained in it
sl@0
   203
		if(entry.IsDir())
sl@0
   204
			{
sl@0
   205
			TFileName currentDir = aFileInputPath;
sl@0
   206
			currentDir.Append(entry.iName);
sl@0
   207
			currentDir.Append(_L("\\"));
sl@0
   208
			
sl@0
   209
			TestL(aFs, currentDir);
sl@0
   210
			}
sl@0
   211
		else
sl@0
   212
			{
sl@0
   213
			TRAPD(err, TestDecompressL(aFs, aFileInputPath, entry.iName));
sl@0
   214
			test2(err, KErrNone);
sl@0
   215
			}
sl@0
   216
		}
sl@0
   217
	CleanupStack::PopAndDestroy(1);
sl@0
   218
	}
sl@0
   219
sl@0
   220
void RunTestL()
sl@0
   221
	{
sl@0
   222
	RFs fs;
sl@0
   223
	User::LeaveIfError(fs.Connect());
sl@0
   224
	CleanupClosePushL(fs);
sl@0
   225
	
sl@0
   226
	TFileName filePath(KFileInputPath);
sl@0
   227
	TestL(fs, filePath);
sl@0
   228
sl@0
   229
	CleanupStack::PopAndDestroy(1);
sl@0
   230
	}
sl@0
   231
sl@0
   232
TInt E32Main()
sl@0
   233
	{
sl@0
   234
	__UHEAP_MARK;
sl@0
   235
sl@0
   236
	test.Printf(_L("\n"));
sl@0
   237
	test.Title();
sl@0
   238
	test.Start(KTestTitle);
sl@0
   239
sl@0
   240
	CTrapCleanup* cleanup = CTrapCleanup::New();
sl@0
   241
sl@0
   242
	TRAPD(err, RunTestL());
sl@0
   243
	test2(err, KErrNone);
sl@0
   244
	
sl@0
   245
	test.End();
sl@0
   246
	test.Close();
sl@0
   247
	delete cleanup;
sl@0
   248
sl@0
   249
	__UHEAP_MARKEND;
sl@0
   250
	return KErrNone;
sl@0
   251
	}