messagingfw/sendas/test/unit/src/T_ServerShutdown.CPP
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 18 Jan 2010 20:36:02 +0200
changeset 0 8e480a14352b
permissions -rw-r--r--
Revision: 201001 Kit: 201003

// Copyright (c) 2004-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 <mtmuids.h>
#include "sendas2test.h"

RTest test(_L("SendAs2 - Server shutdown testing"));

const TInt KSendAsServerCloseTime = 2000000;  // 2 seconds
const TInt KSendAsServerWaitTime = 500000;  // half a second
_LIT(KSendAsServerName, "!SendAsServer*");

//
TBool ServerRunning()
	{
	TFindServer findServer(KSendAsServerName);
	TFullName fullName;
	return (findServer.Next(fullName) == KErrNone);
	}

void TestServerShutdownL()
	{
	RSendAs sendAs;

	theUtils->WriteComment(_L("\nEstablishing a connection with the server..."));
	test(sendAs.Connect() == KErrNone); // Establish a connection
	theUtils->WriteComment(_L("\tsuccess."));

	theUtils->WriteComment(_L("\nChecking SendAs Server is running..."));
	test(ServerRunning()); // Check the server exe exists.
	theUtils->WriteComment(_L("\tsuccess."));

	theUtils->WriteComment(_L("\nClosing session."));
	sendAs.Close(); // Close session.

	theUtils->WriteComment(_L("\nWaiting less that the shutdown period for the server."));
	User::After(KSendAsServerWaitTime); // Wait for less than the shut down period.

	theUtils->WriteComment(_L("\nChecking SendAs Server is running..."));
	test(ServerRunning()); // Check the server exe exists.
	theUtils->WriteComment(_L("\tsuccess."));

	theUtils->WriteComment(_L("\nWaiting the shutdown period for the server."));
	User::After(KSendAsServerCloseTime); // Wait for server shutdown delay.

	theUtils->WriteComment(_L("\nChecking SendAs Server is not running..."));
	test(!ServerRunning()); // Check the server exe no longer exists.
	theUtils->WriteComment(_L("\tsuccess."));
	}

void doTestsL()
	{
	theUtils->Start(_L("Server delayed shutdown test"));
	TestServerShutdownL();		// Qualified: No leavescan error
	theUtils->Complete();
	}