--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/email/imap4mtm/imapsession/test/src/ctestimapsearch.cpp Wed Nov 03 22:55:44 2010 +0530
@@ -0,0 +1,170 @@
+// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
+// All rights reserved.
+// This component and the accompanying materials are made available
+// under the terms of "Eclipse Public License v1.0"
+// which accompanies this distribution, and is available
+// at the URL "http://www.eclipse.org/legal/epl-v10.html".
+//
+// Initial Contributors:
+// Nokia Corporation - initial contribution.
+//
+// Contributors:
+//
+// Description:
+//
+
+#include "ctestimapsearch.h"
+
+#include "cfakeinputstream.h"
+#include "cfakeoutputstream.h"
+#include "cactivewaiter.h"
+
+#include "moutputstream.h"
+#include "cimapsession.h"
+#include "cimaputils.h"
+#include "cimapfolderinfo.h"
+
+CTestImapSearch::CTestImapSearch()
+ : iInputStream(NULL)
+ , iOutputStream(NULL)
+ , iActiveWaiter(NULL)
+ , iImapSession(NULL)
+ {}
+
+CTestImapSearch::~CTestImapSearch()
+ {
+ delete iImapSession;
+ delete iActiveWaiter;
+ delete iOutputStream;
+ delete iInputStream;
+ CImapUtils::Delete();
+ }
+
+void CTestImapSearch::SetupL()
+ {
+ ASSERT(iInputStream == NULL);
+ ASSERT(iOutputStream == NULL);
+ ASSERT(iActiveWaiter == NULL);
+ ASSERT(iImapSession == NULL);
+
+ CImapUtils::CreateL();
+ iInputStream = CFakeInputStream::NewL(Logger());
+ iOutputStream = CFakeOutputStream::NewL(Logger());
+ iActiveWaiter = new(ELeave)CActiveWaiter(Logger());
+
+ CImapSettings* imapSettings=NULL;
+ CImapMailStore* imapMailStore=NULL;
+
+ iImapSession = CImapSession::NewL(*imapSettings,*imapMailStore,*iInputStream, *iOutputStream);
+ INFO_PRINTF1(_L("Setup: ServerGreeting"));
+ iInputStream->ResetInputStrings();
+ iInputStream->AppendInputStringL(_L8("* OK Microsoft Exchange 2000 IMAP4rev1 server version 6.0.6249.0 (lon-cn-exchng2k.msexchange2k.closedtest.intra) ready.\r\n"));
+
+ ASSERT_EQUALS(CImapSession::EServerStateNone, iImapSession->ServerState());
+
+ iImapSession->ReadServerGreetingL(iActiveWaiter->iStatus);
+ iActiveWaiter->WaitActive();
+
+ INFO_PRINTF1(_L("...Login"));
+ iInputStream->ResetInputStrings();
+ iInputStream->AppendInputStringL(_L8("1 OK LOGIN completed\r\n"));
+
+ iImapSession->LoginL(iActiveWaiter->iStatus, _L8("username"), _L8("password"));
+ iActiveWaiter->WaitActive();
+
+ ASSERT_EQUALS(CImapSession::EServerStateAuthenticated, iImapSession->ServerState());
+
+
+ INFO_PRINTF1(_L("...Select inbox"));
+ iInputStream->ResetInputStrings();
+ iInputStream->AppendInputStringL(_L8("2 OK [READ-WRITE] SELECT completed\r\n"));
+
+ CImapFolderInfo* folderInfo = CImapFolderInfo::NewL();
+ CleanupStack::PushL(folderInfo);
+
+ folderInfo->SetNameL(_L16("inbox"));
+ CleanupStack::Pop(folderInfo);
+ iImapSession->SelectL(iActiveWaiter->iStatus, folderInfo);
+ iActiveWaiter->WaitActive();
+
+ ASSERT_EQUALS(CImapSession::EServerStateSelected, iImapSession->ServerState());
+ ASSERT_EQUALS(folderInfo, iImapSession->SelectedFolderInfo());
+ folderInfo = NULL;
+
+
+ INFO_PRINTF1(_L("Setup: Complete"));
+ }
+
+void CTestImapSearch::TearDownL()
+ {
+ delete iImapSession;
+ iImapSession = NULL;
+
+ delete iActiveWaiter;
+ iActiveWaiter = NULL;
+
+ delete iOutputStream;
+ iOutputStream = NULL;
+
+ delete iInputStream;
+ iInputStream = NULL;
+
+ CImapUtils::Delete();
+ }
+
+// Tests
+void CTestImapSearch::TestSimpleSearchL()
+ {
+ INFO_PRINTF1(_L("TestSimpleSearchL"));
+
+ iInputStream->ResetInputStrings();
+ iInputStream->AppendInputStringL(_L8("* SEARCH\r\n"));
+ iInputStream->AppendInputStringL(_L8("3 OK Search completed\r\n"));
+
+ TBufC16<100> searchstring;
+ RArray<TUint> matchingMessageIds;
+ CleanupClosePushL(matchingMessageIds);
+
+ iImapSession->SearchL(iActiveWaiter->iStatus,_L8(" TEXT \" string not in mailbox \" ") ,matchingMessageIds);
+ iActiveWaiter->WaitActive();
+
+ ASSERT_EQUALS(matchingMessageIds.Count(), 0);
+
+ CleanupStack::PopAndDestroy(&matchingMessageIds);
+ INFO_PRINTF1(_L("Complete"));
+ }
+
+void CTestImapSearch::TestSearchWithMessageL()
+ {
+ INFO_PRINTF1(_L("TestSearchWithFlagsL"));
+ iInputStream->ResetInputStrings();
+ iInputStream->AppendInputStringL(_L8("* SEARCH 2 84 882\r\n"));
+ iInputStream->AppendInputStringL(_L8("3 OK Search completed\r\n"));
+
+ RArray<TUint> matchingMessageIds;
+ CleanupClosePushL(matchingMessageIds);
+
+ iImapSession->SearchL(iActiveWaiter->iStatus,_L8("TEXT \" string not in mailbox \" "), matchingMessageIds);
+ iActiveWaiter->WaitActive();
+ for(TInt i=0; i <matchingMessageIds.Count(); ++i )
+ {
+ INFO_PRINTF2(_L("Messages Found are %d"),matchingMessageIds[i]);
+ }
+
+ ASSERT_EQUALS(matchingMessageIds.Count(), 3);
+ ASSERT_EQUALS(matchingMessageIds[0], (TUint)2);
+ ASSERT_EQUALS(matchingMessageIds[1], (TUint)84);
+ ASSERT_EQUALS(matchingMessageIds[2], (TUint)882);
+
+ CleanupStack::PopAndDestroy(&matchingMessageIds);
+ INFO_PRINTF1(_L("Complete"));
+ }
+
+CTestSuite* CTestImapSearch::CreateSuiteL(const TDesC& aName)
+// static
+ {
+ SUB_SUITE;
+ ADD_ASYNC_TEST_STEP(TestSimpleSearchL);
+ ADD_ASYNC_TEST_STEP(TestSearchWithMessageL);
+ END_SUITE;
+ }