sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
|
sl@0
|
3 |
|
sl@0
|
4 |
* Redistribution and use in source and binary forms, with or without
|
sl@0
|
5 |
* modification, are permitted provided that the following conditions are met:
|
sl@0
|
6 |
|
sl@0
|
7 |
* Redistributions of source code must retain the above copyright notice, this
|
sl@0
|
8 |
* list of conditions and the following disclaimer.
|
sl@0
|
9 |
* Redistributions in binary form must reproduce the above copyright notice,
|
sl@0
|
10 |
* this list of conditions and the following disclaimer in the documentation
|
sl@0
|
11 |
* and/or other materials provided with the distribution.
|
sl@0
|
12 |
* Neither the name of Nokia Corporation nor the names of its contributors
|
sl@0
|
13 |
* may be used to endorse or promote products derived from this software
|
sl@0
|
14 |
* without specific prior written permission.
|
sl@0
|
15 |
|
sl@0
|
16 |
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
sl@0
|
17 |
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
sl@0
|
18 |
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
sl@0
|
19 |
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
sl@0
|
20 |
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
sl@0
|
21 |
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
sl@0
|
22 |
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
sl@0
|
23 |
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
sl@0
|
24 |
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
sl@0
|
25 |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
sl@0
|
26 |
*
|
sl@0
|
27 |
* Description: ?Description
|
sl@0
|
28 |
*
|
sl@0
|
29 |
*/
|
sl@0
|
30 |
|
sl@0
|
31 |
|
sl@0
|
32 |
|
sl@0
|
33 |
#ifndef CRYPTO_TEST_H
|
sl@0
|
34 |
#define CRYPTO_TEST_H
|
sl@0
|
35 |
|
sl@0
|
36 |
// INCLUDES
|
sl@0
|
37 |
#include <StifLogger.h>
|
sl@0
|
38 |
#include <TestScripterInternal.h>
|
sl@0
|
39 |
#include <StifTestModule.h>
|
sl@0
|
40 |
|
sl@0
|
41 |
|
sl@0
|
42 |
// CONSTANTS
|
sl@0
|
43 |
//const ?type ?constant_var = ?constant;
|
sl@0
|
44 |
|
sl@0
|
45 |
// MACROS
|
sl@0
|
46 |
//#define ?macro ?macro_def
|
sl@0
|
47 |
// Logging path
|
sl@0
|
48 |
_LIT( Kcrypto_testLogPath, "\\logs\\testframework\\crypto_test\\" );
|
sl@0
|
49 |
// Log file
|
sl@0
|
50 |
_LIT( Kcrypto_testLogFile, "crypto_test.txt" );
|
sl@0
|
51 |
|
sl@0
|
52 |
// FUNCTION PROTOTYPES
|
sl@0
|
53 |
//?type ?function_name(?arg_list);
|
sl@0
|
54 |
|
sl@0
|
55 |
// FORWARD DECLARATIONS
|
sl@0
|
56 |
//class ?FORWARD_CLASSNAME;
|
sl@0
|
57 |
class Ccrypto_test;
|
sl@0
|
58 |
|
sl@0
|
59 |
// DATA TYPES
|
sl@0
|
60 |
//enum ?declaration
|
sl@0
|
61 |
//typedef ?declaration
|
sl@0
|
62 |
//extern ?data_type;
|
sl@0
|
63 |
|
sl@0
|
64 |
// CLASS DECLARATION
|
sl@0
|
65 |
|
sl@0
|
66 |
/**
|
sl@0
|
67 |
* Ccrypto_test test class for STIF Test Framework TestScripter.
|
sl@0
|
68 |
* ?other_description_lines
|
sl@0
|
69 |
*
|
sl@0
|
70 |
* @lib ?library
|
sl@0
|
71 |
* @since ?Series60_version
|
sl@0
|
72 |
*/
|
sl@0
|
73 |
NONSHARABLE_CLASS(Ccrypto_test) : public CScriptBase
|
sl@0
|
74 |
{
|
sl@0
|
75 |
public: // Constructors and destructor
|
sl@0
|
76 |
|
sl@0
|
77 |
/**
|
sl@0
|
78 |
* Two-phased constructor.
|
sl@0
|
79 |
*/
|
sl@0
|
80 |
static Ccrypto_test* NewL( CTestModuleIf& aTestModuleIf );
|
sl@0
|
81 |
|
sl@0
|
82 |
/**
|
sl@0
|
83 |
* Destructor.
|
sl@0
|
84 |
*/
|
sl@0
|
85 |
virtual ~Ccrypto_test();
|
sl@0
|
86 |
|
sl@0
|
87 |
public: // New functions
|
sl@0
|
88 |
|
sl@0
|
89 |
/**
|
sl@0
|
90 |
* ?member_description.
|
sl@0
|
91 |
* @since ?Series60_version
|
sl@0
|
92 |
* @param ?arg1 ?description
|
sl@0
|
93 |
* @return ?description
|
sl@0
|
94 |
*/
|
sl@0
|
95 |
//?type ?member_function( ?type ?arg1 );
|
sl@0
|
96 |
|
sl@0
|
97 |
public: // Functions from base classes
|
sl@0
|
98 |
|
sl@0
|
99 |
/**
|
sl@0
|
100 |
* From CScriptBase Runs a script line.
|
sl@0
|
101 |
* @since ?Series60_version
|
sl@0
|
102 |
* @param aItem Script line containing method name and parameters
|
sl@0
|
103 |
* @return Symbian OS error code
|
sl@0
|
104 |
*/
|
sl@0
|
105 |
virtual TInt RunMethodL( CStifItemParser& aItem );
|
sl@0
|
106 |
|
sl@0
|
107 |
protected: // New functions
|
sl@0
|
108 |
|
sl@0
|
109 |
/**
|
sl@0
|
110 |
* ?member_description.
|
sl@0
|
111 |
* @since ?Series60_version
|
sl@0
|
112 |
* @param ?arg1 ?description
|
sl@0
|
113 |
* @return ?description
|
sl@0
|
114 |
*/
|
sl@0
|
115 |
//?type ?member_function( ?type ?arg1 );
|
sl@0
|
116 |
|
sl@0
|
117 |
protected: // Functions from base classes
|
sl@0
|
118 |
|
sl@0
|
119 |
/**
|
sl@0
|
120 |
* From ?base_class ?member_description
|
sl@0
|
121 |
*/
|
sl@0
|
122 |
//?type ?member_function();
|
sl@0
|
123 |
|
sl@0
|
124 |
private:
|
sl@0
|
125 |
|
sl@0
|
126 |
/**
|
sl@0
|
127 |
* C++ default constructor.
|
sl@0
|
128 |
*/
|
sl@0
|
129 |
Ccrypto_test( CTestModuleIf& aTestModuleIf );
|
sl@0
|
130 |
|
sl@0
|
131 |
/**
|
sl@0
|
132 |
* By default Symbian 2nd phase constructor is private.
|
sl@0
|
133 |
*/
|
sl@0
|
134 |
void ConstructL();
|
sl@0
|
135 |
|
sl@0
|
136 |
// Prohibit copy constructor if not deriving from CBase.
|
sl@0
|
137 |
// ?classname( const ?classname& );
|
sl@0
|
138 |
// Prohibit assigment operator if not deriving from CBase.
|
sl@0
|
139 |
// ?classname& operator=( const ?classname& );
|
sl@0
|
140 |
|
sl@0
|
141 |
/**
|
sl@0
|
142 |
* Frees all resources allocated from test methods.
|
sl@0
|
143 |
* @since ?Series60_version
|
sl@0
|
144 |
*/
|
sl@0
|
145 |
void Delete();
|
sl@0
|
146 |
|
sl@0
|
147 |
/**
|
sl@0
|
148 |
* Test methods are listed below.
|
sl@0
|
149 |
*/
|
sl@0
|
150 |
|
sl@0
|
151 |
/**
|
sl@0
|
152 |
* Example test method.
|
sl@0
|
153 |
* @since ?Series60_version
|
sl@0
|
154 |
* @param aItem Script line containing parameters.
|
sl@0
|
155 |
* @return Symbian OS error code.
|
sl@0
|
156 |
*/
|
sl@0
|
157 |
virtual TInt BnTest( CStifItemParser& aItem );
|
sl@0
|
158 |
virtual TInt DesTest( CStifItemParser& aItem );
|
sl@0
|
159 |
virtual TInt DhTest( CStifItemParser& aItem );
|
sl@0
|
160 |
virtual TInt DsaTest( CStifItemParser& aItem );
|
sl@0
|
161 |
virtual TInt EngineTest( CStifItemParser& aItem );
|
sl@0
|
162 |
virtual TInt EvpTest( CStifItemParser& aItem );
|
sl@0
|
163 |
virtual TInt ExpTest( CStifItemParser& aItem );
|
sl@0
|
164 |
virtual TInt HmacTest( CStifItemParser& aItem );
|
sl@0
|
165 |
virtual TInt Md2Test( CStifItemParser& aItem );
|
sl@0
|
166 |
virtual TInt Md5Test( CStifItemParser& aItem );
|
sl@0
|
167 |
virtual TInt RandTest( CStifItemParser& aItem );
|
sl@0
|
168 |
virtual TInt Rc2Test( CStifItemParser& aItem );
|
sl@0
|
169 |
virtual TInt Rc4Test( CStifItemParser& aItem );
|
sl@0
|
170 |
virtual TInt RsaTest( CStifItemParser& aItem );
|
sl@0
|
171 |
virtual TInt ShaTest( CStifItemParser& aItem );
|
sl@0
|
172 |
virtual TInt Sha1Test( CStifItemParser& aItem );
|
sl@0
|
173 |
virtual TInt Sha256Test( CStifItemParser& aItem );
|
sl@0
|
174 |
virtual TInt Sha512Test( CStifItemParser& aItem );
|
sl@0
|
175 |
|
sl@0
|
176 |
public: // Data
|
sl@0
|
177 |
// ?one_line_short_description_of_data
|
sl@0
|
178 |
//?data_declaration;
|
sl@0
|
179 |
|
sl@0
|
180 |
protected: // Data
|
sl@0
|
181 |
// ?one_line_short_description_of_data
|
sl@0
|
182 |
//?data_declaration;
|
sl@0
|
183 |
|
sl@0
|
184 |
private: // Data
|
sl@0
|
185 |
|
sl@0
|
186 |
// ?one_line_short_description_of_data
|
sl@0
|
187 |
//?data_declaration;
|
sl@0
|
188 |
|
sl@0
|
189 |
// Reserved pointer for future extension
|
sl@0
|
190 |
//TAny* iReserved;
|
sl@0
|
191 |
|
sl@0
|
192 |
public: // Friend classes
|
sl@0
|
193 |
//?friend_class_declaration;
|
sl@0
|
194 |
protected: // Friend classes
|
sl@0
|
195 |
//?friend_class_declaration;
|
sl@0
|
196 |
private: // Friend classes
|
sl@0
|
197 |
//?friend_class_declaration;
|
sl@0
|
198 |
|
sl@0
|
199 |
};
|
sl@0
|
200 |
|
sl@0
|
201 |
#endif // CRYPTO_TEST_H
|
sl@0
|
202 |
|
sl@0
|
203 |
// End of File
|