os/textandloc/textrendering/texthandling/ttext/T_CUTPST.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/textandloc/textrendering/texthandling/ttext/T_CUTPST.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,237 @@
     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 "TSTCLIPB.H"
    1.23 +#include <txtglobl.h>
    1.24 +#include <s32mem.h>
    1.25 +#include <s32file.h>
    1.26 +#include "T_CUTPST.h"
    1.27 +
    1.28 +LOCAL_D CTestStep *pTestStep = NULL;
    1.29 +#define test(cond)											\
    1.30 +	{														\
    1.31 +	TBool __bb = (cond);									\
    1.32 +	pTestStep->TEST(__bb);									\
    1.33 +	if (!__bb)												\
    1.34 +		{													\
    1.35 +		pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed"));	\
    1.36 +		User::Leave(1);										\
    1.37 +		}													\
    1.38 +	}
    1.39 +#undef INFO_PRINTF1
    1.40 +#undef INFO_PRINTF2
    1.41 +// copy from tefexportconst.h
    1.42 +#define INFO_PRINTF1(p1)        pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1))
    1.43 +#define INFO_PRINTF2(p1, p2)    pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1), (p2))
    1.44 +
    1.45 +#define UNUSED_VAR(a) a = a
    1.46 +
    1.47 +const TInt KTestCleanupStack=0x40;
    1.48 +
    1.49 +
    1.50 +LOCAL_D CTrapCleanup* TheTrapCleanup=NULL;
    1.51 +LOCAL_D CPlainText* TheTextObject=NULL;
    1.52 +LOCAL_D CClipboard* TheWriteBoard=NULL;
    1.53 +LOCAL_D CClipboard* TheReadBoard=NULL;
    1.54 +LOCAL_D RFs TheSession;
    1.55 +
    1.56 +
    1.57 +LOCAL_C void OpenWriteClipboardLC()
    1.58 +// Initialize a new write clipboard, after
    1.59 +// deleting any existing read clipboard.
    1.60 +//
    1.61 +	{
    1.62 +	if (TheReadBoard)
    1.63 +		{
    1.64 +		CleanupStack::PopAndDestroy();
    1.65 +		TheReadBoard=NULL;
    1.66 +		TheSession.Close();
    1.67 +		}
    1.68 +	User::LeaveIfError(TheSession.Connect());
    1.69 +	TheWriteBoard=CClipboard::NewForWritingLC(TheSession);
    1.70 +	}
    1.71 +
    1.72 +
    1.73 +LOCAL_C void OpenReadClipboardLC()
    1.74 +// Initialize a new read clipboard, after
    1.75 +// deleting any existing write clipboard.
    1.76 +//
    1.77 +	{
    1.78 +	if (TheWriteBoard)
    1.79 +		{
    1.80 +		TheWriteBoard->CommitL();
    1.81 +		CleanupStack::PopAndDestroy();
    1.82 +		TheWriteBoard=NULL;
    1.83 +		TheSession.Close();
    1.84 +		}
    1.85 +	User::LeaveIfError(TheSession.Connect());
    1.86 +	TheReadBoard=CClipboard::NewForReadingLC(TheSession);
    1.87 +	}
    1.88 +
    1.89 +
    1.90 +LOCAL_C void testPlainTextCutPaste2()
    1.91 +	{
    1.92 +	TheTextObject=CPlainText::NewL();
    1.93 +	CleanupStack::PushL(TheTextObject);
    1.94 +	OpenWriteClipboardLC(); // delete the system clipboard file if it exists.
    1.95 +
    1.96 +	// Copy zero-length text to the clipboard.
    1.97 +	INFO_PRINTF1(_L("Copy zero-length text to the clipboard"));
    1.98 +	TheTextObject->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,0);
    1.99 +
   1.100 +	OpenReadClipboardLC();
   1.101 +	test(TheTextObject->DocumentLength()==0);
   1.102 +
   1.103 +	// Paste zero-length text from the clipboard.
   1.104 +	INFO_PRINTF1(_L("Paste zero-length text from the clipboard"));
   1.105 +	TheTextObject->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0);
   1.106 +
   1.107 +	// Copy multiple paragraphs to the clipboard
   1.108 +	INFO_PRINTF1(_L("PasteFromStoreL(aPos,aMaxPasteLength)"));
   1.109 +	TBuf<512> buf(_L("Here is para one."));
   1.110 +	buf.Append(CEditableText::EParagraphDelimiter);
   1.111 +	buf.Append(_L("This is paragraph two."));
   1.112 +	buf.Append(CEditableText::EParagraphDelimiter);
   1.113 +	TheTextObject->InsertL(0,buf);
   1.114 +	int text_length = TheTextObject->DocumentLength();
   1.115 +
   1.116 +	OpenWriteClipboardLC();
   1.117 +	TheTextObject->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheTextObject->DocumentLength());
   1.118 +	TheTextObject->Reset();
   1.119 +	test(TheTextObject->DocumentLength()==0);
   1.120 +
   1.121 +	// Now paste the text.
   1.122 +	OpenReadClipboardLC();
   1.123 +	TheTextObject->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheTextObject->DocumentLength());
   1.124 +	test(TheTextObject->DocumentLength()==text_length);
   1.125 +	TInt fieldCount=TheTextObject->FieldCount();
   1.126 +	test(fieldCount==0);
   1.127 +
   1.128 +	CleanupStack::PopAndDestroy();  // Last clipboard object
   1.129 +	CleanupStack::PopAndDestroy();  // TheTextObject
   1.130 +	TheWriteBoard=NULL;
   1.131 +	TheReadBoard=NULL;
   1.132 +	}
   1.133 +
   1.134 +LOCAL_C void testPlainTextCutPaste()
   1.135 +// 
   1.136 +//
   1.137 +    {
   1.138 +	INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-ETEXT-LEGACY-CPLAIN-0001 Cut&Paste - with plainText "));
   1.139 +	TheTextObject=CPlainText::NewL();
   1.140 +	CleanupStack::PushL(TheTextObject);
   1.141 +	OpenWriteClipboardLC(); // delete the system clipboard file if it exists.
   1.142 +	test(TheTextObject->DocumentLength()==0);
   1.143 +	//
   1.144 +	INFO_PRINTF1(_L("Paste from empty store"));
   1.145 +	OpenReadClipboardLC();
   1.146 +	TInt charCount=0;
   1.147 +	TRAPD(ret,
   1.148 +	charCount=TheTextObject->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheTextObject->DocumentLength()));
   1.149 +    UNUSED_VAR(ret);
   1.150 +	if (charCount<=0)
   1.151 +	    INFO_PRINTF1(_L("        No recognised data to paste or clipboard empty\n\r"));
   1.152 +	TInt fieldCount=TheTextObject->FieldCount();
   1.153 +	test(fieldCount==0);
   1.154 +	//
   1.155 +//	INFO_PRINTF1(_L("Paste from clipboard with no recognised types"));
   1.156 +//	WriteForeignDataToClipboardL();
   1.157 +	//
   1.158 +	INFO_PRINTF1(_L("Paste into empty PlainText"));
   1.159 +	TheTextObject->InsertL(TheTextObject->DocumentLength(),_L("SomeData"));
   1.160 +	OpenWriteClipboardLC();
   1.161 +	TheTextObject->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheTextObject->DocumentLength());
   1.162 +	TheTextObject->Reset();
   1.163 +		test(TheTextObject->DocumentLength()==0);
   1.164 +	OpenReadClipboardLC();
   1.165 +	TheTextObject->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheTextObject->DocumentLength());
   1.166 +		test(TheTextObject->DocumentLength()==_L("SomeData").Length());
   1.167 +	fieldCount=TheTextObject->FieldCount();
   1.168 +	test(fieldCount==0);
   1.169 +	//
   1.170 +	INFO_PRINTF1(_L("Paste @ start (pos=0)"));
   1.171 +	TheTextObject->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0);
   1.172 +		test(TheTextObject->DocumentLength()==_L("SomeDataSomeData").Length());
   1.173 +	fieldCount=TheTextObject->FieldCount();
   1.174 +	test(fieldCount==0);
   1.175 +	//
   1.176 +	INFO_PRINTF1(_L("Paste @ end   (DocumentLength())"));
   1.177 +	TheTextObject->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheTextObject->DocumentLength());
   1.178 +		test(TheTextObject->DocumentLength()==_L("SomeDataSomeDataSomeData").Length());
   1.179 +	fieldCount=TheTextObject->FieldCount();
   1.180 +	test(fieldCount==0);
   1.181 +	//
   1.182 +	INFO_PRINTF1(_L("Paste @ middle"));
   1.183 +	TheTextObject->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),4);
   1.184 +	fieldCount=TheTextObject->FieldCount();
   1.185 +	test(fieldCount==0);
   1.186 +	TBuf<33> buf(_L("SomeSomeDataDataSomeDataSomeData"));
   1.187 +		test(TheTextObject->DocumentLength()==buf.Length());
   1.188 +		buf.Append(CEditableText::EParagraphDelimiter);
   1.189 +		test(TheTextObject->Read(0)==buf);
   1.190 +	//
   1.191 +	CleanupStack::PopAndDestroy();  // Last clipboard object
   1.192 +	CleanupStack::PopAndDestroy();  // TheTextObject
   1.193 +	TheWriteBoard=NULL;
   1.194 +	TheReadBoard=NULL;
   1.195 +    }
   1.196 +
   1.197 +
   1.198 +LOCAL_C void setupCleanup()
   1.199 +//
   1.200 +// Initialise the cleanup stack.
   1.201 +//
   1.202 +    {
   1.203 +
   1.204 +	TheTrapCleanup=CTrapCleanup::New();
   1.205 +	TRAPD(r,\
   1.206 +		{\
   1.207 +		for (TInt i=KTestCleanupStack;i>0;i--)\
   1.208 +			CleanupStack::PushL((TAny*)1);\
   1.209 +		test(r==KErrNone);\
   1.210 +		CleanupStack::Pop(KTestCleanupStack);\
   1.211 +		});
   1.212 +	}
   1.213 +
   1.214 +CT_CUTPST::CT_CUTPST()
   1.215 +    {
   1.216 +    SetTestStepName(KTestStep_T_CUTPST);
   1.217 +    pTestStep = this;
   1.218 +    }
   1.219 +
   1.220 +TVerdict CT_CUTPST::doTestStepL()
   1.221 +    {
   1.222 +    SetTestStepResult(EFail);
   1.223 +
   1.224 +    INFO_PRINTF1(_L("Cut & Paste"));
   1.225 +    __UHEAP_MARK;
   1.226 +    setupCleanup();
   1.227 +    TRAPD(r1,testPlainTextCutPaste());
   1.228 +    TRAPD(r2,testPlainTextCutPaste2());
   1.229 +
   1.230 +    delete TheTrapCleanup;
   1.231 +    
   1.232 +    __UHEAP_MARKEND;
   1.233 +
   1.234 +    if (r1 == KErrNone && r2 == KErrNone)
   1.235 +        {
   1.236 +        SetTestStepResult(EPass);
   1.237 +        }
   1.238 +
   1.239 +    return TestStepResult();
   1.240 +    }