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