1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/textandloc/textrendering/texthandling/ttext/T_SCANDC.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,695 @@
1.4 +/*
1.5 +* Copyright (c) 1997-2010 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +#include <txtetext.h>
1.23 +#include "T_SCANDC.h"
1.24 +
1.25 +LOCAL_D CTestStep *pTestStep = NULL;
1.26 +#define test(cond) \
1.27 + { \
1.28 + TBool __bb = (cond); \
1.29 + pTestStep->TEST(__bb); \
1.30 + if (!__bb) \
1.31 + { \
1.32 + pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed")); \
1.33 + User::Leave(1); \
1.34 + } \
1.35 + }
1.36 +#undef INFO_PRINTF1
1.37 +#undef INFO_PRINTF2
1.38 +// copy from tefexportconst.h
1.39 +#define INFO_PRINTF1(p1) pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1))
1.40 +#define INFO_PRINTF2(p1, p2) pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1), (p2))
1.41 +
1.42 +
1.43 +#define UNUSED_VAR(a) a = a
1.44 +
1.45 +LOCAL_D CTrapCleanup* TheTrapCleanup;
1.46 +
1.47 +template<class S,CEditableText::TDocumentStorage D>
1.48 +class CTestScan : public CPlainText
1.49 + {
1.50 +public:
1.51 + static CTestScan* NewL();
1.52 + void Destruct();
1.53 + void Test1L(); // Tests all operations of the class.
1.54 + void Test2L(); // Test public methods of class.
1.55 + void Test2aL(); // Tests for CountWords
1.56 + void Test2bL(); // Tests for ScanWord
1.57 + void Test2cL(); // Tests for CountParagraphs
1.58 + void Test2dL(); // Tests for ScanParagraph
1.59 + void TestHeapSpace(); // Test for memory leakage
1.60 + void StoreTextL(TBuf<64>&);
1.61 + void DoCountWords(TInt);
1.62 + void DoCountParas(TInt);
1.63 + void DoScanWords(TInt aPos,TUint aFlags,TInt aEndPos,TInt aCharCheck);
1.64 + void DoScanParas(TInt aPos,TUint aFlags,TInt aEndPos,TInt aCharCheck);
1.65 + void InsertL(TInt aPos,const TDesC& aBuf);
1.66 +public:
1.67 + CPlainText *iDocument;
1.68 + TInt iUnitCount;
1.69 + TInt iCharsSkipped;
1.70 + TChar iDelimiter;
1.71 + TInt startAvail,endAvail,temp;
1.72 +private:
1.73 + CTestScan(); // Default constructor
1.74 + CTestScan(const CTestScan& aCTestScan);
1.75 + CTestScan& operator=(const CTestScan& aCTestScan);
1.76 + };
1.77 +
1.78 +
1.79 +template<class S,CEditableText::TDocumentStorage D>
1.80 +GLDEF_C CTestScan<S,D>* CTestScan<S,D>::NewL()
1.81 +//
1.82 +// constructs a new instance of this class.
1.83 +//
1.84 + {
1.85 + CTestScan<S,D>* tmp=new(ELeave) CTestScan<S,D>;
1.86 + tmp->ConstructL(D);
1.87 + return tmp;
1.88 + }
1.89 +
1.90 +
1.91 +template<class S,CEditableText::TDocumentStorage D>
1.92 +GLDEF_C CTestScan<S,D>::CTestScan()
1.93 +//
1.94 +// Default constructor
1.95 +//
1.96 + :iDelimiter(EParagraphDelimiter)
1.97 + {
1.98 + TRAPD(ret,iDocument=CPlainText::NewL(D));
1.99 + UNUSED_VAR(ret);
1.100 + }
1.101 +
1.102 +
1.103 +template<class S,CEditableText::TDocumentStorage D>
1.104 +void CTestScan<S,D>::Destruct()
1.105 +//
1.106 +//
1.107 +//
1.108 + {
1.109 + delete iDocument;
1.110 + }
1.111 +
1.112 +
1.113 +template<class S,CEditableText::TDocumentStorage D>
1.114 +GLDEF_C void CTestScan<S,D>::InsertL(TInt aPos,const TDesC& aBuf)
1.115 +//
1.116 + {CPlainText::InsertL(aPos,aBuf);}
1.117 +
1.118 +
1.119 +
1.120 +template<class S,CEditableText::TDocumentStorage D>
1.121 +GLDEF_C void CTestScan<S,D>::StoreTextL(TBuf<64>& aBuf)
1.122 +//
1.123 +// Insert from aBuf into document storage at position 0.
1.124 +//
1.125 + {
1.126 + TInt length=iDocument->DocumentLength();
1.127 + if (length>0)
1.128 + {
1.129 + iDocument->DeleteL(0,(length));
1.130 + }
1.131 + TPtrC buf(aBuf);
1.132 + iDocument->InsertL(0,buf);
1.133 + iUnitCount=0;
1.134 + }
1.135 +
1.136 +
1.137 +template<class S,CEditableText::TDocumentStorage D>
1.138 +GLDEF_C void CTestScan<S,D>::DoCountWords(TInt aCount)
1.139 +//
1.140 +// Calls CountWords, and checks that number of words
1.141 +// counted, matches the known good value 'count'.
1.142 +//
1.143 + {
1.144 + iUnitCount=iDocument->WordCount();
1.145 + test(aCount==iUnitCount);
1.146 + }
1.147 +
1.148 +
1.149 +template<class S,CEditableText::TDocumentStorage D>
1.150 +GLDEF_C void CTestScan<S,D>::DoCountParas(TInt aCount)
1.151 +//
1.152 +// Calls CountParagraphs, and checks that number
1.153 +// counted, matches the known good value 'count'.
1.154 +//
1.155 + {
1.156 + iUnitCount=iDocument->ParagraphCount();
1.157 + test(aCount==iUnitCount);
1.158 + }
1.159 +
1.160 +
1.161 +template<class S,CEditableText::TDocumentStorage D>
1.162 +GLDEF_C void CTestScan<S,D>::DoScanWords(TInt aPos,TUint aFlags,TInt aEndPos,TInt aCharCheck)
1.163 +//
1.164 +// Calls ScanWords and tests results are as expected.
1.165 +//
1.166 + {
1.167 + iCharsSkipped=iDocument->ScanWords(aPos,aFlags);
1.168 + test(iCharsSkipped==aCharCheck);
1.169 + test(aPos==aEndPos);
1.170 + iCharsSkipped=0;
1.171 + }
1.172 +
1.173 +
1.174 +template<class S,CEditableText::TDocumentStorage D>
1.175 +GLDEF_C void CTestScan<S,D>::DoScanParas(TInt aPos,TUint aFlags,TInt aEndPos,TInt aCharCheck)
1.176 +//
1.177 +// Calls ScanParas and checks results are as expected.
1.178 +//
1.179 + {
1.180 + iCharsSkipped=iDocument->ScanParas(aPos,aFlags);
1.181 + test(iCharsSkipped==aCharCheck);
1.182 + test(aPos==aEndPos);
1.183 + iCharsSkipped=0;
1.184 + }
1.185 +
1.186 +
1.187 +template<class S,CEditableText::TDocumentStorage D>
1.188 +GLDEF_C void CTestScan<S,D>::Test1L()
1.189 +//
1.190 +// Tests all operations of the class.
1.191 +//
1.192 + {
1.193 + TBuf<64> temp1;
1.194 + temp1.Append(_L("The world")); // Create a descriptor over some text
1.195 + temp1.Append(iDelimiter);
1.196 + temp1.Append(iDelimiter);
1.197 + temp1.Append(_L("is a"));
1.198 + StoreTextL(temp1);
1.199 + iDocument->WordCount();
1.200 + TInt pos=5;
1.201 + TUint flags=(CPlainText::EScanToUnitStart|CPlainText::EScanJoinDelimiters|CPlainText::EScanStayIfBoundary);
1.202 + ((CTestScan*)iDocument)->ScanWords(pos,flags);
1.203 + TBuf<64> temp2(_L("This is a paragraph"));
1.204 + temp2.Append(iDelimiter);
1.205 + iDocument->DeleteL(0,temp1.Length());
1.206 + StoreTextL(temp2);
1.207 + pos=0;
1.208 + flags=(CPlainText::EScanToUnitStart|CPlainText::EScanJoinDelimiters);
1.209 + ((CTestScan*)iDocument)->ScanParas(pos,flags);
1.210 + iDocument->ParagraphCount();
1.211 + }
1.212 +
1.213 +template<class S,CEditableText::TDocumentStorage D>
1.214 +GLDEF_C void CTestScan<S,D>::Test2aL()
1.215 +//
1.216 +// Tests the CountWords method with different cases
1.217 +//
1.218 + {
1.219 + TBuf<64> temp;
1.220 +
1.221 + //INFO_PRINTF1(_L("0 words"));
1.222 + //iDocument->InsertL(0,buf.Ptr(),buf.Size());
1.223 + //DoCountWords(0);
1.224 + // This test has been removed since it is no longer feasible.
1.225 + // The design currently inserts an end of document character
1.226 + // as soon as the document is created, hence, there can not
1.227 + // be 0 words.
1.228 +
1.229 + INFO_PRINTF1(_L("0 words, all delimiters"));
1.230 + temp.Append(_L(" "));
1.231 + temp.Append(iDelimiter);
1.232 + temp.Append(_L(" "));
1.233 + StoreTextL(temp);
1.234 + DoCountWords(0);
1.235 +
1.236 + INFO_PRINTF1(_L("1 word, no delimiter"));
1.237 + temp.Append(_L("This"));
1.238 + StoreTextL(temp);
1.239 + DoCountWords(1);
1.240 +
1.241 + INFO_PRINTF1(_L("1 word, at start, no delimiter"));
1.242 + temp.Delete(0,temp.Size());
1.243 + temp.Append(_L("THIS"));
1.244 + StoreTextL(temp);
1.245 + DoCountWords(1);
1.246 +
1.247 + INFO_PRINTF1(_L("1 word, with delimiter"));
1.248 + temp.Append(' ');
1.249 + StoreTextL(temp);
1.250 + DoCountWords(1);
1.251 +
1.252 + INFO_PRINTF1(_L("Many words, no delimiter"));
1.253 + temp.Append(_L(" is a wonderful world"));
1.254 + StoreTextL(temp);
1.255 + DoCountWords(5);
1.256 +
1.257 + INFO_PRINTF1(_L("Many words with delimiter"));
1.258 + temp.Append(' ');
1.259 + StoreTextL(temp);
1.260 + DoCountWords(5);
1.261 +
1.262 +
1.263 + }
1.264 +
1.265 +
1.266 +template<class S,CEditableText::TDocumentStorage D>
1.267 +GLDEF_C void CTestScan<S,D>::Test2bL()
1.268 +//
1.269 +// Tests the ScanWord method with different flag settings
1.270 +//
1.271 + {
1.272 + TBuf<64> buf;
1.273 + buf.Append(_L(" This tEsT TeXT"));
1.274 + StoreTextL(buf);
1.275 +
1.276 + iCharsSkipped=iUnitCount=0;
1.277 + INFO_PRINTF1(_L("Forward scan"));
1.278 +
1.279 + INFO_PRINTF1(_L("Stay at boundary:to unit start"));
1.280 + TUint flags=(CPlainText::EScanStayIfBoundary | CPlainText::EScanToUnitStart);
1.281 + DoScanWords(8,flags,12,4);
1.282 + DoScanWords(7,flags,7,0);
1.283 + DoScanWords(6,flags,6,0);
1.284 + DoScanWords(5,flags,6,1);
1.285 +
1.286 + INFO_PRINTF1(_L("Stay at boundary:to unit end"));
1.287 + flags |= CPlainText::EScanToUnitEnd;
1.288 + flags &=~CPlainText::EScanToUnitStart;
1.289 + DoScanWords(8,flags,11,3);
1.290 + DoScanWords(7,flags,11,4);
1.291 + DoScanWords(6,flags,6,0);
1.292 + DoScanWords(5,flags,5,0);
1.293 +
1.294 + INFO_PRINTF1(_L("Stay at boundary:to unit start:join delimiters"));
1.295 + flags=(CPlainText::EScanStayIfBoundary|CPlainText::EScanToUnitStart|CPlainText::EScanJoinDelimiters);
1.296 + DoScanWords(8,flags,13,5);
1.297 + DoScanWords(7,flags,7,0);
1.298 + DoScanWords(6,flags,7,1);
1.299 + DoScanWords(5,flags,7,2);
1.300 +
1.301 + INFO_PRINTF1(_L("Stay at boundary:to unit end:join delimiters"));
1.302 + flags |= CPlainText::EScanToUnitEnd;
1.303 + flags &=~CPlainText::EScanToUnitStart;
1.304 + DoScanWords(8,flags,11,3);
1.305 + DoScanWords(7,flags,11,4);
1.306 + DoScanWords(6,flags,11,5);
1.307 + DoScanWords(5,flags,5,0);
1.308 +
1.309 + INFO_PRINTF1(_L("To unit start"));
1.310 + flags=CPlainText::EScanToUnitStart;
1.311 + DoScanWords(8,flags,12,4);
1.312 + DoScanWords(7,flags,12,5);
1.313 + DoScanWords(6,flags,7,1);
1.314 + DoScanWords(5,flags,6,1);
1.315 +
1.316 + INFO_PRINTF1(_L("To unit end"));
1.317 + flags |= CPlainText::EScanToUnitEnd;
1.318 + flags &=~CPlainText::EScanToUnitStart;
1.319 + DoScanWords(8,flags,11,3);
1.320 + DoScanWords(7,flags,11,4);
1.321 + DoScanWords(6,flags,11,5);
1.322 + DoScanWords(5,flags,6,1);
1.323 +
1.324 + INFO_PRINTF1(_L("To unit start:join delimiters"));
1.325 + flags=(CPlainText::EScanToUnitStart|CPlainText::EScanJoinDelimiters);
1.326 + DoScanWords(8,flags,13,5);
1.327 + DoScanWords(7,flags,13,6);
1.328 + DoScanWords(6,flags,7,1);
1.329 + DoScanWords(5,flags,7,2);
1.330 +
1.331 + INFO_PRINTF1(_L("To unit end:join delimiters"));
1.332 + flags |= CPlainText::EScanToUnitEnd;
1.333 + flags &=~CPlainText::EScanToUnitStart;
1.334 + DoScanWords(8,flags,11,3);
1.335 + DoScanWords(7,flags,11,4);
1.336 + DoScanWords(6,flags,11,5);
1.337 + DoScanWords(5,flags,11,6);
1.338 +
1.339 + INFO_PRINTF1(_L("Backward scan"));
1.340 + INFO_PRINTF1(_L("Stay at boundary:to unit start"));
1.341 + flags=(CPlainText::EScanBackwards|CPlainText::EScanStayIfBoundary|CPlainText::EScanToUnitStart);
1.342 + DoScanWords(9,flags,7,2);
1.343 + DoScanWords(10,flags,7,3);
1.344 + DoScanWords(11,flags,7,4);
1.345 + DoScanWords(12,flags,12,0);
1.346 + DoScanWords(13,flags,13,0);
1.347 +
1.348 + INFO_PRINTF1(_L("Stay at boundary:to unit end"));
1.349 + flags |= CPlainText::EScanToUnitEnd;
1.350 + flags &=~CPlainText::EScanToUnitStart;
1.351 + DoScanWords(9,flags,6,3);
1.352 + DoScanWords(10,flags,6,4);
1.353 + DoScanWords(11,flags,11,0);
1.354 + DoScanWords(12,flags,12,0);
1.355 + DoScanWords(13,flags,12,1);
1.356 +
1.357 + INFO_PRINTF1(_L("Stay at boundary:to unit start:join delimiters"));
1.358 + flags=CPlainText::EScanBackwards|CPlainText::EScanStayIfBoundary|CPlainText::EScanToUnitStart|CPlainText::EScanJoinDelimiters;
1.359 + DoScanWords(9,flags,7,2);
1.360 + DoScanWords(10,flags,7,3);
1.361 + DoScanWords(11,flags,7,4);
1.362 + DoScanWords(12,flags,7,5);
1.363 + DoScanWords(13,flags,13,0);
1.364 +
1.365 + INFO_PRINTF1(_L("Stay at boundary:to unit end:join delimiters"));
1.366 + flags |= CPlainText::EScanToUnitEnd;
1.367 + flags &=~CPlainText::EScanToUnitStart;
1.368 + DoScanWords(9,flags,5,4);
1.369 + DoScanWords(10,flags,5,5);
1.370 + DoScanWords(11,flags,11,0);
1.371 + DoScanWords(12,flags,11,1);
1.372 + DoScanWords(13,flags,11,2);
1.373 +
1.374 + INFO_PRINTF1(_L("To unit start"));
1.375 + flags=CPlainText::EScanBackwards|CPlainText::EScanToUnitStart;
1.376 + DoScanWords(9,flags,7,2);
1.377 + DoScanWords(10,flags,7,3);
1.378 + DoScanWords(11,flags,7,4);
1.379 + DoScanWords(12,flags,7,5);
1.380 + DoScanWords(13,flags,12,1);
1.381 +
1.382 + INFO_PRINTF1(_L("To unit end"));
1.383 + flags |= CPlainText::EScanToUnitEnd;
1.384 + flags &=~CPlainText::EScanToUnitStart;
1.385 + DoScanWords(9,flags,6,3);
1.386 + DoScanWords(10,flags,6,4);
1.387 + DoScanWords(11,flags,6,5);
1.388 + DoScanWords(12,flags,11,1);
1.389 + DoScanWords(13,flags,12,1);
1.390 +
1.391 + INFO_PRINTF1(_L("To unit start:join delimiters"));
1.392 + flags=CPlainText::EScanBackwards|CPlainText::EScanToUnitStart|CPlainText::EScanJoinDelimiters;
1.393 + DoScanWords(9,flags,7,2);
1.394 + DoScanWords(10,flags,7,3);
1.395 + DoScanWords(11,flags,7,4);
1.396 + DoScanWords(12,flags,7,5);
1.397 + DoScanWords(13,flags,7,6);
1.398 +
1.399 + INFO_PRINTF1(_L("To unit end:join delimiters"));
1.400 + flags=CPlainText::EScanToUnitEnd|CPlainText::EScanJoinDelimiters|CPlainText::EScanBackwards;
1.401 + DoScanWords(9,flags,5,4);
1.402 + DoScanWords(10,flags,5,5);
1.403 + DoScanWords(11,flags,5,6);
1.404 + DoScanWords(12,flags,11,1);
1.405 + DoScanWords(13,flags,11,2);
1.406 +
1.407 + }
1.408 +
1.409 +
1.410 +template<class S,CEditableText::TDocumentStorage D>
1.411 +GLDEF_C void CTestScan<S,D>::Test2cL()
1.412 +//
1.413 +// Tests the CountParagraphs method with different cases
1.414 +//
1.415 + {
1.416 + TBuf<64> buf;
1.417 +
1.418 + //INFO_PRINTF1(_L("0 paras"));
1.419 + //iDocument->InsertL(0,buf.Ptr(),buf.Size());
1.420 + //DoCountParagraphs(0);
1.421 + // This test no longer applies, since documents are created with
1.422 + // an end of document character. ie, The document can not have
1.423 + // 0 words.
1.424 +
1.425 + INFO_PRINTF1(_L("Empty text source"));
1.426 +// buf.Append(iDelimiter);
1.427 +// buf.Append(iDelimiter);
1.428 + StoreTextL(buf);
1.429 + DoCountParas(1);
1.430 +
1.431 + INFO_PRINTF1(_L("1 para. no delimiter"));
1.432 + buf.Append(_L("This"));
1.433 + StoreTextL(buf);
1.434 + DoCountParas(1);
1.435 +
1.436 + INFO_PRINTF1(_L("1 para. at start, no delimiter"));
1.437 + buf.Delete(0,buf.Size());
1.438 + buf.Append(_L(" THIS "));
1.439 + StoreTextL(buf);
1.440 + DoCountParas(1);
1.441 +
1.442 + INFO_PRINTF1(_L("1 para, with delimiter"));
1.443 + buf.Append(iDelimiter);
1.444 + StoreTextL(buf);
1.445 + DoCountParas(2);
1.446 +
1.447 + INFO_PRINTF1(_L("2 paras, no delimiter"));
1.448 + buf.Append(' ');
1.449 + StoreTextL(buf);
1.450 + DoCountParas(2);
1.451 +
1.452 + INFO_PRINTF1(_L("2 paras with delimiter"));
1.453 + buf.Append(iDelimiter);
1.454 + StoreTextL(buf);
1.455 + DoCountParas(3);
1.456 +
1.457 +
1.458 + }
1.459 +
1.460 +
1.461 +template<class S,CEditableText::TDocumentStorage D>
1.462 +GLDEF_C void CTestScan<S,D>::Test2dL()
1.463 +//
1.464 +// Tests the ScanParagraph method with different flag settings
1.465 +//
1.466 + {
1.467 + TBuf<64> buf;
1.468 + buf.Append(_L(" This"));
1.469 + buf.Append(iDelimiter);
1.470 + buf.Append(iDelimiter);
1.471 + buf.Append(_L("tEsT"));
1.472 + buf.Append(iDelimiter);
1.473 + buf.Append(iDelimiter);
1.474 + buf.Append(_L("TeXT"));
1.475 + StoreTextL(buf);
1.476 +
1.477 + iCharsSkipped=iUnitCount=0;
1.478 + INFO_PRINTF1(_L("Forward scan"));
1.479 +
1.480 + INFO_PRINTF1(_L("Stay at boundary:to unit start"));
1.481 + TUint flags=(CPlainText::EScanStayIfBoundary|CPlainText::EScanToUnitStart);
1.482 + DoScanParas(8,flags,12,4);
1.483 + DoScanParas(7,flags,7,0);
1.484 + DoScanParas(6,flags,6,0);
1.485 + DoScanParas(5,flags,6,1);
1.486 +
1.487 + INFO_PRINTF1(_L("Stay at boundary:to unit end"));
1.488 + flags |= CPlainText::EScanToUnitEnd;
1.489 + flags &=~CPlainText::EScanToUnitStart;
1.490 + DoScanParas(8,flags,11,3);
1.491 + DoScanParas(7,flags,11,4);
1.492 + DoScanParas(6,flags,6,0);
1.493 + DoScanParas(5,flags,5,0);
1.494 +
1.495 + INFO_PRINTF1(_L("Stay at boundary:to unit start:join delimiters"));
1.496 + flags=(CPlainText::EScanStayIfBoundary | CPlainText::EScanToUnitStart | CPlainText::EScanJoinDelimiters);
1.497 + DoScanParas(8,flags,13,5);
1.498 + DoScanParas(7,flags,7,0);
1.499 + DoScanParas(6,flags,7,1);
1.500 + DoScanParas(5,flags,7,2);
1.501 +
1.502 + INFO_PRINTF1(_L("Stay at boundary:to unit end:join delimiters"));
1.503 + flags |= CPlainText::EScanToUnitEnd;
1.504 + flags &=~CPlainText::EScanToUnitStart;
1.505 + DoScanParas(8,flags,11,3);
1.506 + DoScanParas(7,flags,11,4);
1.507 + DoScanParas(6,flags,11,5);
1.508 + DoScanParas(5,flags,5,0);
1.509 +
1.510 + INFO_PRINTF1(_L("To unit start"));
1.511 + flags=CPlainText::EScanToUnitStart;
1.512 + DoScanParas(8,flags,12,4);
1.513 + DoScanParas(7,flags,12,5);
1.514 + DoScanParas(6,flags,7,1);
1.515 + DoScanParas(5,flags,6,1);
1.516 +
1.517 + INFO_PRINTF1(_L("To unit end"));
1.518 + flags |= CPlainText::EScanToUnitEnd;
1.519 + flags &=~CPlainText::EScanToUnitStart;
1.520 + DoScanParas(8,flags,11,3);
1.521 + DoScanParas(7,flags,11,4);
1.522 + DoScanParas(6,flags,11,5);
1.523 + DoScanParas(5,flags,6,1);
1.524 +
1.525 + INFO_PRINTF1(_L("To unit start:join delimiters"));
1.526 + flags=(CPlainText::EScanToUnitStart | CPlainText::EScanJoinDelimiters);
1.527 + DoScanParas(8,flags,13,5);
1.528 + DoScanParas(7,flags,13,6);
1.529 + DoScanParas(6,flags,7,1);
1.530 + DoScanParas(5,flags,7,2);
1.531 +
1.532 + INFO_PRINTF1(_L("To unit end:join delimiters"));
1.533 + flags |= CPlainText::EScanToUnitEnd;
1.534 + flags &=~CPlainText::EScanToUnitStart;
1.535 + DoScanParas(8,flags,11,3);
1.536 + DoScanParas(7,flags,11,4);
1.537 + DoScanParas(6,flags,11,5);
1.538 + DoScanParas(5,flags,11,6);
1.539 +
1.540 + INFO_PRINTF1(_L("Backward scan"));
1.541 + INFO_PRINTF1(_L("Stay at boundary:to unit start"));
1.542 + flags=(CPlainText::EScanBackwards|CPlainText::EScanStayIfBoundary|CPlainText::EScanToUnitStart);
1.543 + DoScanParas(9,flags,7,2);
1.544 + DoScanParas(10,flags,7,3);
1.545 + DoScanParas(11,flags,7,4);
1.546 + DoScanParas(12,flags,12,0);
1.547 + DoScanParas(13,flags,13,0);
1.548 + DoScanParas(7,flags,7,0);
1.549 + DoScanParas(1,flags,0,1);
1.550 + DoScanParas(5,flags,0,5);
1.551 + DoScanParas(4,flags,0,4);
1.552 + DoScanParas(3,flags,0,3);
1.553 + DoScanParas(2,flags,0,2);
1.554 + DoScanParas(1,flags,0,1);
1.555 + INFO_PRINTF1(_L("Testing at buffer boundaries."));
1.556 + DoScanParas(0,flags,0,0);
1.557 + DoScanParas(16,flags,13,3);
1.558 +
1.559 +
1.560 + INFO_PRINTF1(_L("Stay at boundary:to unit end"));
1.561 + flags |= CPlainText::EScanToUnitEnd;
1.562 + flags &=~CPlainText::EScanToUnitStart;
1.563 + DoScanParas(9,flags,6,3);
1.564 + DoScanParas(10,flags,6,4);
1.565 + DoScanParas(11,flags,11,0);
1.566 + DoScanParas(12,flags,12,0);
1.567 + DoScanParas(13,flags,12,1);
1.568 +
1.569 + INFO_PRINTF1(_L("Stay at boundary:to unit start:join delimiters"));
1.570 + flags=CPlainText::EScanBackwards|CPlainText::EScanStayIfBoundary|CPlainText::EScanToUnitStart|CPlainText::EScanJoinDelimiters;
1.571 + DoScanParas(9,flags,7,2);
1.572 + DoScanParas(10,flags,7,3);
1.573 + DoScanParas(11,flags,7,4);
1.574 + DoScanParas(12,flags,7,5);
1.575 + DoScanParas(13,flags,13,0);
1.576 +
1.577 + INFO_PRINTF1(_L("Stay at boundary:to unit end:join delimiters"));
1.578 + flags |= CPlainText::EScanToUnitEnd;
1.579 + flags &=~CPlainText::EScanToUnitStart;
1.580 + DoScanParas(9,flags,5,4);
1.581 + DoScanParas(10,flags,5,5);
1.582 + DoScanParas(11,flags,11,0);
1.583 + DoScanParas(12,flags,11,1);
1.584 + DoScanParas(13,flags,11,2);
1.585 +
1.586 + INFO_PRINTF1(_L("To unit start"));
1.587 + flags=CPlainText::EScanBackwards|CPlainText::EScanToUnitStart;
1.588 + DoScanParas(9,flags,7,2);
1.589 + DoScanParas(10,flags,7,3);
1.590 + DoScanParas(11,flags,7,4);
1.591 + DoScanParas(12,flags,7,5);
1.592 + DoScanParas(13,flags,12,1);
1.593 +
1.594 + INFO_PRINTF1(_L("To unit end"));
1.595 + flags |= CPlainText::EScanToUnitEnd;
1.596 + flags &=~CPlainText::EScanToUnitStart;
1.597 + DoScanParas(9,flags,6,3);
1.598 + DoScanParas(10,flags,6,4);
1.599 + DoScanParas(11,flags,6,5);
1.600 + DoScanParas(12,flags,11,1);
1.601 + DoScanParas(13,flags,12,1);
1.602 +
1.603 + INFO_PRINTF1(_L("To unit start:join delimiters"));
1.604 + flags=CPlainText::EScanBackwards|CPlainText::EScanToUnitStart|CPlainText::EScanJoinDelimiters;
1.605 + DoScanParas(9,flags,7,2);
1.606 + DoScanParas(10,flags,7,3);
1.607 + DoScanParas(11,flags,7,4);
1.608 + DoScanParas(12,flags,7,5);
1.609 + DoScanParas(13,flags,7,6);
1.610 +
1.611 + INFO_PRINTF1(_L("To unit end:join delimiters"));
1.612 + flags |= CPlainText::EScanToUnitEnd;
1.613 + flags &=~CPlainText::EScanToUnitStart;
1.614 + DoScanParas(9,flags,5,4);
1.615 + DoScanParas(10,flags,5,5);
1.616 + DoScanParas(11,flags,5,6);
1.617 + DoScanParas(12,flags,11,1);
1.618 + DoScanParas(13,flags,11,2);
1.619 +
1.620 +
1.621 + }
1.622 +
1.623 +
1.624 +template<class S,CEditableText::TDocumentStorage D>
1.625 +GLDEF_C void CTestScan<S,D>::Test2L()
1.626 +//
1.627 +// Test all the methods of the class
1.628 +//
1.629 + {
1.630 + INFO_PRINTF1(_L("CountWords"));
1.631 + Test2aL();
1.632 +
1.633 + INFO_PRINTF1(_L("ScanWord"));
1.634 + Test2bL();
1.635 +
1.636 + INFO_PRINTF1(_L("Count Paragraphs"));
1.637 + Test2cL();
1.638 +
1.639 + INFO_PRINTF1(_L("Scan Paragraph"));
1.640 + Test2dL();
1.641 +
1.642 +
1.643 + }
1.644 +
1.645 +CT_SCANDC::CT_SCANDC()
1.646 + {
1.647 + SetTestStepName(KTestStep_T_SCANDC);
1.648 + pTestStep = this;
1.649 + }
1.650 +
1.651 +TVerdict CT_SCANDC::doTestStepL()
1.652 + {
1.653 + SetTestStepResult(EFail);
1.654 +
1.655 + TheTrapCleanup=CTrapCleanup::New();
1.656 +
1.657 + INFO_PRINTF1(_L("SCANNING OF TEXT DOCUMENTS"));
1.658 + INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_SCANDC-0001 CPlainText - Flat "));
1.659 + typedef CTestScan<TText,CEditableText::EFlatStorage> instance1;
1.660 + typedef CTestScan<TText,CEditableText::ESegmentedStorage> instance2;
1.661 +
1.662 + instance1* aa=NULL;
1.663 + TRAPD(ret1, aa=instance1::NewL());
1.664 +
1.665 + INFO_PRINTF1(_L("Registering all methods"));
1.666 +
1.667 + TRAPD(ret2,aa->Test1L());
1.668 +
1.669 + INFO_PRINTF1(_L("Testing all methods"));
1.670 +
1.671 + TRAPD(ret3,aa->Test2L());
1.672 +
1.673 + __UHEAP_MARK;
1.674 + delete aa;
1.675 + __UHEAP_MARKEND;
1.676 +
1.677 + INFO_PRINTF1(_L("CPlainText - Segmented"));
1.678 +
1.679 + instance2* bb=NULL;
1.680 + TRAPD(ret4, bb=instance2::NewL());
1.681 +
1.682 + __UHEAP_MARK;
1.683 + INFO_PRINTF1(_L("Registering all methods"));
1.684 + TRAPD(ret5,bb->Test1L());
1.685 + INFO_PRINTF1(_L("Testing all methods"));
1.686 + TRAPD(ret6,bb->Test2L());
1.687 + delete bb;
1.688 + __UHEAP_MARKEND;
1.689 +
1.690 + delete TheTrapCleanup;
1.691 +
1.692 + if (ret1 == KErrNone && ret2 == KErrNone && ret3 == KErrNone && ret4 == KErrNone && ret5 == KErrNone && ret6 == KErrNone)
1.693 + {
1.694 + SetTestStepResult(EPass);
1.695 + }
1.696 +
1.697 + return TestStepResult();
1.698 + }