Update contrib.
1 // Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
20 RTest TheTest(_L("t_storswizzle"));
22 ///////////////////////////////////////////////////////////////////////////////////////
23 ///////////////////////////////////////////////////////////////////////////////////////
24 //Test macros and functions
25 void Check(TInt aValue, TInt aLine)
29 RDebug::Print(_L("*** Boolean expression evaluated to false.\r\n"));
30 TheTest(EFalse, aLine);
33 void Check(TInt aValue, TInt aExpected, TInt aLine)
35 if(aValue != aExpected)
37 RDebug::Print(_L("*** Expected error: %d, got: %d.\r\n"), aExpected, aValue);
38 TheTest(EFalse, aLine);
41 #define TEST(arg) ::Check((arg), __LINE__)
42 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
44 ///////////////////////////////////////////////////////////////////////////////////////
50 TRectangle(TInt aWidth, TInt aHeight);
52 void ExternalizeL(RWriteStream& aStream) const;
53 void InternalizeL(RReadStream& aStream);
60 TBool operator==(const TRectangle& aLeft, const TRectangle& aRight)
62 return aLeft.iWidth == aRight.iWidth && aLeft.iHeight == aRight.iHeight;
65 TRectangle::TRectangle() :
71 TRectangle::TRectangle(TInt aWidth, TInt aHeight) :
77 void TRectangle::ExternalizeL(RWriteStream& aStream) const
79 aStream << (TInt32)iWidth;
80 aStream << (TInt32)iHeight;
83 void TRectangle::InternalizeL(RReadStream& aStream)
92 ///////////////////////////////////////////////////////////////////////////////////////
95 @SYMTestCaseID PDS-STORE-CT-4060
96 @SYMTestCaseDesc TSwizzleC<T> tests.
97 @SYMTestActions TSwizzleC<T> functionality test.
99 @SYMTestExpectedResults Test must not fail
103 CBufStore* bufStore = CBufStore::NewLC(100);
105 const TInt KWidth = 10;
106 const TInt KHeight = 20;
107 TRectangle r1(KWidth, KHeight);
108 RStoreWriteStream wstrm1;
109 TStreamId strmId1 = wstrm1.CreateLC(*bufStore);
110 TSwizzleC<TRectangle> swizzle1(&r1);
111 TEST((const void*)swizzle1 == (const void*)&r1);
114 CleanupStack::PopAndDestroy(&wstrm1);
117 RStoreReadStream rstrm1;
118 rstrm1.OpenLC(*bufStore, strmId1);
120 CleanupStack::PopAndDestroy(&rstrm1);
124 CleanupStack::PopAndDestroy(bufStore);
126 TSwizzleC<TRectangle> swizzle2(swizzle1);
127 TEST(swizzle1->iWidth == swizzle2->iWidth);
128 TEST(swizzle1->iHeight == swizzle2->iHeight);
129 TEST(swizzle1.AsPtr()->iHeight == swizzle2.AsPtr()->iHeight);
132 TSwizzleC<TRectangle> swizzle3;
134 TEST(swizzle1->iWidth == swizzle3->iWidth);
135 TEST(swizzle1->iHeight == swizzle3->iHeight);
136 TEST(swizzle1.AsPtr()->iHeight == swizzle3.AsPtr()->iHeight);
140 @SYMTestCaseID PDS-STORE-CT-4061
141 @SYMTestCaseDesc TSwizzleC<TAny> tests.
142 @SYMTestActions TSwizzleC<TAny> functionality test.
143 @SYMTestPriority High
144 @SYMTestExpectedResults Test must not fail
146 void TestSwizzleCAny()
148 const TInt KWidth = 10;
149 const TInt KHeight = 20;
150 TRectangle r1(KWidth, KHeight);
152 TSwizzleC<TAny> swizzle1(&r1);
153 TSwizzleC<TAny> swizzle2(&r1);
154 TSwizzleC<TAny> swizzle3;
156 TEST((const void*)swizzle3 == (const void*)&r1);
158 TSwizzleCBase b1 = swizzle1;
159 TSwizzleCBase b2 = swizzle2;
165 TSwizzleC<TAny> swizzle4(b1);
166 TEST(swizzle4.AsPtr() == swizzle1.AsPtr());
168 const void* p1 = swizzle1.AsPtr();
169 const void* p2 = swizzle2.AsPtr();
170 const void* p3 = swizzle3.AsPtr();
172 TEST(((const TRectangle*)p1)->iWidth == ((const TRectangle*)p2)->iWidth);
173 TEST(((const TRectangle*)p1)->iHeight == ((const TRectangle*)p2)->iHeight);
174 TEST(((const TRectangle*)p3)->iWidth == ((const TRectangle*)p2)->iWidth);
175 TEST(((const TRectangle*)p3)->iHeight == ((const TRectangle*)p2)->iHeight);
179 @SYMTestCaseID PDS-STORE-CT-4062
180 @SYMTestCaseDesc TSwizzle<TAny> tests.
181 @SYMTestActions TSwizzle<TAny> functionality test.
182 @SYMTestPriority High
183 @SYMTestExpectedResults Test must not fail
185 void TestSwizzleAny()
187 const TInt KWidth = 10;
188 const TInt KHeight = 20;
189 TRectangle r1(KWidth, KHeight);
191 TSwizzle<TAny> swizzle1(&r1);
192 TSwizzle<TAny> swizzle2(&r1);
193 TSwizzle<TAny> swizzle3;
195 TEST((void*)swizzle3 == (void*)&r1);
197 TSwizzleBase b1 = swizzle1;
198 TSwizzleBase b2 = swizzle2;
204 TSwizzle<TAny> swizzle4(b1);
205 TEST(swizzle4.AsPtr() == swizzle1.AsPtr());
207 void* p1 = swizzle1.AsPtr();
208 void* p2 = swizzle2.AsPtr();
209 void* p3 = swizzle3.AsPtr();
211 TEST(((TRectangle*)p1)->iWidth == ((TRectangle*)p2)->iWidth);
212 TEST(((TRectangle*)p1)->iHeight == ((TRectangle*)p2)->iHeight);
213 TEST(((TRectangle*)p3)->iWidth == ((TRectangle*)p2)->iWidth);
214 TEST(((TRectangle*)p3)->iHeight == ((TRectangle*)p2)->iHeight);
216 ((TRectangle*)p3)->iWidth = 5;
217 ((TRectangle*)p3)->iHeight = 3;
220 TEST2(r1.iHeight, 3);
222 TSwizzle<TRectangle> swizzle5;
224 TEST2(swizzle5->iWidth, 5);
225 TEST2(swizzle5->iHeight, 3);
230 TheTest.Start(_L("@SYMTestCaseID:PDS-STORE-CT-4060: TSwizzleC<T> test"));
233 TheTest.Next(_L("@SYMTestCaseID:PDS-STORE-CT-4061: TSwizzleC<TAny> test"));
236 TheTest.Next(_L("@SYMTestCaseID:PDS-STORE-CT-4062: TSwizzle<TAny> test"));
244 CTrapCleanup* tc = CTrapCleanup::New();
249 TRAPD(err, DoTestsL());
250 TEST2(err, KErrNone);
259 User::Heap().Check();