os/textandloc/textrendering/texthandling/ttext/T_CUTPST.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 1997-2010 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18 
    19 #include "TSTCLIPB.H"
    20 #include <txtglobl.h>
    21 #include <s32mem.h>
    22 #include <s32file.h>
    23 #include "T_CUTPST.h"
    24 
    25 LOCAL_D CTestStep *pTestStep = NULL;
    26 #define test(cond)											\
    27 	{														\
    28 	TBool __bb = (cond);									\
    29 	pTestStep->TEST(__bb);									\
    30 	if (!__bb)												\
    31 		{													\
    32 		pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed"));	\
    33 		User::Leave(1);										\
    34 		}													\
    35 	}
    36 #undef INFO_PRINTF1
    37 #undef INFO_PRINTF2
    38 // copy from tefexportconst.h
    39 #define INFO_PRINTF1(p1)        pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1))
    40 #define INFO_PRINTF2(p1, p2)    pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1), (p2))
    41 
    42 #define UNUSED_VAR(a) a = a
    43 
    44 const TInt KTestCleanupStack=0x40;
    45 
    46 
    47 LOCAL_D CTrapCleanup* TheTrapCleanup=NULL;
    48 LOCAL_D CPlainText* TheTextObject=NULL;
    49 LOCAL_D CClipboard* TheWriteBoard=NULL;
    50 LOCAL_D CClipboard* TheReadBoard=NULL;
    51 LOCAL_D RFs TheSession;
    52 
    53 
    54 LOCAL_C void OpenWriteClipboardLC()
    55 // Initialize a new write clipboard, after
    56 // deleting any existing read clipboard.
    57 //
    58 	{
    59 	if (TheReadBoard)
    60 		{
    61 		CleanupStack::PopAndDestroy();
    62 		TheReadBoard=NULL;
    63 		TheSession.Close();
    64 		}
    65 	User::LeaveIfError(TheSession.Connect());
    66 	TheWriteBoard=CClipboard::NewForWritingLC(TheSession);
    67 	}
    68 
    69 
    70 LOCAL_C void OpenReadClipboardLC()
    71 // Initialize a new read clipboard, after
    72 // deleting any existing write clipboard.
    73 //
    74 	{
    75 	if (TheWriteBoard)
    76 		{
    77 		TheWriteBoard->CommitL();
    78 		CleanupStack::PopAndDestroy();
    79 		TheWriteBoard=NULL;
    80 		TheSession.Close();
    81 		}
    82 	User::LeaveIfError(TheSession.Connect());
    83 	TheReadBoard=CClipboard::NewForReadingLC(TheSession);
    84 	}
    85 
    86 
    87 LOCAL_C void testPlainTextCutPaste2()
    88 	{
    89 	TheTextObject=CPlainText::NewL();
    90 	CleanupStack::PushL(TheTextObject);
    91 	OpenWriteClipboardLC(); // delete the system clipboard file if it exists.
    92 
    93 	// Copy zero-length text to the clipboard.
    94 	INFO_PRINTF1(_L("Copy zero-length text to the clipboard"));
    95 	TheTextObject->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,0);
    96 
    97 	OpenReadClipboardLC();
    98 	test(TheTextObject->DocumentLength()==0);
    99 
   100 	// Paste zero-length text from the clipboard.
   101 	INFO_PRINTF1(_L("Paste zero-length text from the clipboard"));
   102 	TheTextObject->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0);
   103 
   104 	// Copy multiple paragraphs to the clipboard
   105 	INFO_PRINTF1(_L("PasteFromStoreL(aPos,aMaxPasteLength)"));
   106 	TBuf<512> buf(_L("Here is para one."));
   107 	buf.Append(CEditableText::EParagraphDelimiter);
   108 	buf.Append(_L("This is paragraph two."));
   109 	buf.Append(CEditableText::EParagraphDelimiter);
   110 	TheTextObject->InsertL(0,buf);
   111 	int text_length = TheTextObject->DocumentLength();
   112 
   113 	OpenWriteClipboardLC();
   114 	TheTextObject->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheTextObject->DocumentLength());
   115 	TheTextObject->Reset();
   116 	test(TheTextObject->DocumentLength()==0);
   117 
   118 	// Now paste the text.
   119 	OpenReadClipboardLC();
   120 	TheTextObject->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheTextObject->DocumentLength());
   121 	test(TheTextObject->DocumentLength()==text_length);
   122 	TInt fieldCount=TheTextObject->FieldCount();
   123 	test(fieldCount==0);
   124 
   125 	CleanupStack::PopAndDestroy();  // Last clipboard object
   126 	CleanupStack::PopAndDestroy();  // TheTextObject
   127 	TheWriteBoard=NULL;
   128 	TheReadBoard=NULL;
   129 	}
   130 
   131 LOCAL_C void testPlainTextCutPaste()
   132 // 
   133 //
   134     {
   135 	INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-ETEXT-LEGACY-CPLAIN-0001 Cut&Paste - with plainText "));
   136 	TheTextObject=CPlainText::NewL();
   137 	CleanupStack::PushL(TheTextObject);
   138 	OpenWriteClipboardLC(); // delete the system clipboard file if it exists.
   139 	test(TheTextObject->DocumentLength()==0);
   140 	//
   141 	INFO_PRINTF1(_L("Paste from empty store"));
   142 	OpenReadClipboardLC();
   143 	TInt charCount=0;
   144 	TRAPD(ret,
   145 	charCount=TheTextObject->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheTextObject->DocumentLength()));
   146     UNUSED_VAR(ret);
   147 	if (charCount<=0)
   148 	    INFO_PRINTF1(_L("        No recognised data to paste or clipboard empty\n\r"));
   149 	TInt fieldCount=TheTextObject->FieldCount();
   150 	test(fieldCount==0);
   151 	//
   152 //	INFO_PRINTF1(_L("Paste from clipboard with no recognised types"));
   153 //	WriteForeignDataToClipboardL();
   154 	//
   155 	INFO_PRINTF1(_L("Paste into empty PlainText"));
   156 	TheTextObject->InsertL(TheTextObject->DocumentLength(),_L("SomeData"));
   157 	OpenWriteClipboardLC();
   158 	TheTextObject->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheTextObject->DocumentLength());
   159 	TheTextObject->Reset();
   160 		test(TheTextObject->DocumentLength()==0);
   161 	OpenReadClipboardLC();
   162 	TheTextObject->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheTextObject->DocumentLength());
   163 		test(TheTextObject->DocumentLength()==_L("SomeData").Length());
   164 	fieldCount=TheTextObject->FieldCount();
   165 	test(fieldCount==0);
   166 	//
   167 	INFO_PRINTF1(_L("Paste @ start (pos=0)"));
   168 	TheTextObject->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0);
   169 		test(TheTextObject->DocumentLength()==_L("SomeDataSomeData").Length());
   170 	fieldCount=TheTextObject->FieldCount();
   171 	test(fieldCount==0);
   172 	//
   173 	INFO_PRINTF1(_L("Paste @ end   (DocumentLength())"));
   174 	TheTextObject->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheTextObject->DocumentLength());
   175 		test(TheTextObject->DocumentLength()==_L("SomeDataSomeDataSomeData").Length());
   176 	fieldCount=TheTextObject->FieldCount();
   177 	test(fieldCount==0);
   178 	//
   179 	INFO_PRINTF1(_L("Paste @ middle"));
   180 	TheTextObject->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),4);
   181 	fieldCount=TheTextObject->FieldCount();
   182 	test(fieldCount==0);
   183 	TBuf<33> buf(_L("SomeSomeDataDataSomeDataSomeData"));
   184 		test(TheTextObject->DocumentLength()==buf.Length());
   185 		buf.Append(CEditableText::EParagraphDelimiter);
   186 		test(TheTextObject->Read(0)==buf);
   187 	//
   188 	CleanupStack::PopAndDestroy();  // Last clipboard object
   189 	CleanupStack::PopAndDestroy();  // TheTextObject
   190 	TheWriteBoard=NULL;
   191 	TheReadBoard=NULL;
   192     }
   193 
   194 
   195 LOCAL_C void setupCleanup()
   196 //
   197 // Initialise the cleanup stack.
   198 //
   199     {
   200 
   201 	TheTrapCleanup=CTrapCleanup::New();
   202 	TRAPD(r,\
   203 		{\
   204 		for (TInt i=KTestCleanupStack;i>0;i--)\
   205 			CleanupStack::PushL((TAny*)1);\
   206 		test(r==KErrNone);\
   207 		CleanupStack::Pop(KTestCleanupStack);\
   208 		});
   209 	}
   210 
   211 CT_CUTPST::CT_CUTPST()
   212     {
   213     SetTestStepName(KTestStep_T_CUTPST);
   214     pTestStep = this;
   215     }
   216 
   217 TVerdict CT_CUTPST::doTestStepL()
   218     {
   219     SetTestStepResult(EFail);
   220 
   221     INFO_PRINTF1(_L("Cut & Paste"));
   222     __UHEAP_MARK;
   223     setupCleanup();
   224     TRAPD(r1,testPlainTextCutPaste());
   225     TRAPD(r2,testPlainTextCutPaste2());
   226 
   227     delete TheTrapCleanup;
   228     
   229     __UHEAP_MARKEND;
   230 
   231     if (r1 == KErrNone && r2 == KErrNone)
   232         {
   233         SetTestStepResult(EPass);
   234         }
   235 
   236     return TestStepResult();
   237     }