Update contrib.
2 * Copyright (c) 1997-2010 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
25 LOCAL_D CTestStep *pTestStep = NULL;
28 TBool __bb = (cond); \
29 pTestStep->TEST(__bb); \
32 pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed")); \
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))
42 #define UNUSED_VAR(a) a = a
44 const TInt KTestCleanupStack=0x40;
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;
54 LOCAL_C void OpenWriteClipboardLC()
55 // Initialize a new write clipboard, after
56 // deleting any existing read clipboard.
61 CleanupStack::PopAndDestroy();
65 User::LeaveIfError(TheSession.Connect());
66 TheWriteBoard=CClipboard::NewForWritingLC(TheSession);
70 LOCAL_C void OpenReadClipboardLC()
71 // Initialize a new read clipboard, after
72 // deleting any existing write clipboard.
77 TheWriteBoard->CommitL();
78 CleanupStack::PopAndDestroy();
82 User::LeaveIfError(TheSession.Connect());
83 TheReadBoard=CClipboard::NewForReadingLC(TheSession);
87 LOCAL_C void testPlainTextCutPaste2()
89 TheTextObject=CPlainText::NewL();
90 CleanupStack::PushL(TheTextObject);
91 OpenWriteClipboardLC(); // delete the system clipboard file if it exists.
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);
97 OpenReadClipboardLC();
98 test(TheTextObject->DocumentLength()==0);
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);
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();
113 OpenWriteClipboardLC();
114 TheTextObject->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheTextObject->DocumentLength());
115 TheTextObject->Reset();
116 test(TheTextObject->DocumentLength()==0);
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();
125 CleanupStack::PopAndDestroy(); // Last clipboard object
126 CleanupStack::PopAndDestroy(); // TheTextObject
131 LOCAL_C void testPlainTextCutPaste()
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);
141 INFO_PRINTF1(_L("Paste from empty store"));
142 OpenReadClipboardLC();
145 charCount=TheTextObject->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheTextObject->DocumentLength()));
148 INFO_PRINTF1(_L(" No recognised data to paste or clipboard empty\n\r"));
149 TInt fieldCount=TheTextObject->FieldCount();
152 // INFO_PRINTF1(_L("Paste from clipboard with no recognised types"));
153 // WriteForeignDataToClipboardL();
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();
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();
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();
179 INFO_PRINTF1(_L("Paste @ middle"));
180 TheTextObject->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),4);
181 fieldCount=TheTextObject->FieldCount();
183 TBuf<33> buf(_L("SomeSomeDataDataSomeDataSomeData"));
184 test(TheTextObject->DocumentLength()==buf.Length());
185 buf.Append(CEditableText::EParagraphDelimiter);
186 test(TheTextObject->Read(0)==buf);
188 CleanupStack::PopAndDestroy(); // Last clipboard object
189 CleanupStack::PopAndDestroy(); // TheTextObject
195 LOCAL_C void setupCleanup()
197 // Initialise the cleanup stack.
201 TheTrapCleanup=CTrapCleanup::New();
204 for (TInt i=KTestCleanupStack;i>0;i--)\
205 CleanupStack::PushL((TAny*)1);\
207 CleanupStack::Pop(KTestCleanupStack);\
211 CT_CUTPST::CT_CUTPST()
213 SetTestStepName(KTestStep_T_CUTPST);
217 TVerdict CT_CUTPST::doTestStepL()
219 SetTestStepResult(EFail);
221 INFO_PRINTF1(_L("Cut & Paste"));
224 TRAPD(r1,testPlainTextCutPaste());
225 TRAPD(r2,testPlainTextCutPaste2());
227 delete TheTrapCleanup;
231 if (r1 == KErrNone && r2 == KErrNone)
233 SetTestStepResult(EPass);
236 return TestStepResult();