os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/test_bed/Transition.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include <ecom/test_bed/transition.h>
sl@0
    17
#include <ecom/test_bed/datalogger.h>
sl@0
    18
#include <ecom/test_bed/testbeddefinitions.h>
sl@0
    19
sl@0
    20
EXPORT_C CTransition::CTransition(const TDesC&					aTransitionId, 
sl@0
    21
										CUnitTestContext&		aUTContext,
sl@0
    22
										TTransitionValidator&	aValidator) 
sl@0
    23
:	CActive(CActive::EPriorityStandard),
sl@0
    24
iTransitionId(aTransitionId),
sl@0
    25
iUTContext(aUTContext),
sl@0
    26
iValidator(aValidator),
sl@0
    27
iTransitionInfo(iTransitionId, iUTContext.DataLogger()) 
sl@0
    28
	{
sl@0
    29
	CActiveScheduler::Add(this);
sl@0
    30
	}
sl@0
    31
sl@0
    32
sl@0
    33
EXPORT_C CTransition::~CTransition()
sl@0
    34
	{
sl@0
    35
	Cancel();
sl@0
    36
	}
sl@0
    37
sl@0
    38
sl@0
    39
EXPORT_C void CTransition::SetStartStateL()
sl@0
    40
	{
sl@0
    41
	// Do nothing here
sl@0
    42
	}
sl@0
    43
sl@0
    44
sl@0
    45
EXPORT_C const TDesC& CTransition::TransitionId() const
sl@0
    46
	{
sl@0
    47
	return iTransitionId;
sl@0
    48
	}
sl@0
    49
sl@0
    50
EXPORT_C void CTransition::DoCancel()
sl@0
    51
	{
sl@0
    52
	// Complete the unit test so that this test will now finish
sl@0
    53
	// if the transition has not finished then we haven't even had to chance
sl@0
    54
	// to run yet so complete the UnitTest with a Cancel message
sl@0
    55
	// If the transition has finished then we must have an outstanding async
sl@0
    56
	// transition so Complete the observer to ensure it gets removed from the list
sl@0
    57
	// of outstanding transitions
sl@0
    58
	if(!iTransitionFinished)
sl@0
    59
		User::RequestComplete(iUnitTestStatus, KTestBedTestCancel);
sl@0
    60
	else
sl@0
    61
		iUTContext.TransitionObserver().Complete(*this, KTestBedTestCancel);
sl@0
    62
	}
sl@0
    63
sl@0
    64
sl@0
    65
EXPORT_C void CTransition::RunTransition(TRequestStatus* aUnitTestStatus)
sl@0
    66
	{
sl@0
    67
	iUnitTestStatus = aUnitTestStatus;
sl@0
    68
	iTransitionFinished = EFalse;
sl@0
    69
sl@0
    70
	// Reset the iRepeat flag - if this transition should be repeated it will be
sl@0
    71
	// set during the execution of TransitMethodL().
sl@0
    72
	iRepeatThis = EFalse;
sl@0
    73
sl@0
    74
	if(!iValidator.ValidatePreConditions())
sl@0
    75
		{
sl@0
    76
		User::RequestComplete(iUnitTestStatus, KTestBedFailedPreConditions);
sl@0
    77
		}
sl@0
    78
	else
sl@0
    79
		{
sl@0
    80
		SetActive();
sl@0
    81
		TRequestStatus* status = &iStatus;
sl@0
    82
		User::RequestComplete(status, KErrNone);
sl@0
    83
		}
sl@0
    84
	}
sl@0
    85
sl@0
    86
EXPORT_C void CTransition::RunL()
sl@0
    87
	{
sl@0
    88
	iUTContext.TransitionObserver().SetCurrentTransition(*this);
sl@0
    89
	if(!iTransitionFinished)
sl@0
    90
		{
sl@0
    91
		++iTransitionInfo.iIteration;
sl@0
    92
		TransitMethodL();
sl@0
    93
		iTransitionFinished = ETrue;
sl@0
    94
		PostTransitionCleanup();		// Allow the derived transition class to do something before
sl@0
    95
										// PostCondition validation.
sl@0
    96
sl@0
    97
		// If the user called an asynchronous function then SetActive so that we run again
sl@0
    98
		// when the async function completes
sl@0
    99
		iAsyncTransition = iStatus == KRequestPending;
sl@0
   100
		if(iAsyncTransition)
sl@0
   101
			{
sl@0
   102
			SetActive();
sl@0
   103
			}
sl@0
   104
sl@0
   105
		TTestBedAsyncState asyncState = iAsyncTransition ? EAsyncCalled : EAsyncCompleted;
sl@0
   106
		if(!iValidator.ValidatePostConditions(asyncState))
sl@0
   107
			{
sl@0
   108
			if(iAsyncTransition)
sl@0
   109
				{
sl@0
   110
				//Cancel the request
sl@0
   111
				Cancel();
sl@0
   112
				}
sl@0
   113
			User::RequestComplete(iUnitTestStatus, KTestBedFailedPostConditions);
sl@0
   114
			}
sl@0
   115
		else if(iAsyncTransition)
sl@0
   116
			User::RequestComplete(iUnitTestStatus, KTestBedAsynchronousTransition);
sl@0
   117
		else if(iRepeatThis)
sl@0
   118
			User::RequestComplete(iUnitTestStatus, KTestBedRepeatTest);
sl@0
   119
		else
sl@0
   120
			User::RequestComplete(iUnitTestStatus, KErrNone);
sl@0
   121
		}
sl@0
   122
	else
sl@0
   123
		{
sl@0
   124
		if(iAsyncTransition && !iValidator.ValidatePostConditions(EAsyncCompleted))
sl@0
   125
			iUTContext.TransitionObserver().Complete(*this, KTestBedFailedPostConditions);
sl@0
   126
		else
sl@0
   127
			iUTContext.TransitionObserver().Complete(*this, KErrNone);
sl@0
   128
		}
sl@0
   129
	}
sl@0
   130
sl@0
   131
EXPORT_C const TTransitionInfo& CTransition::TransitionInfo() const
sl@0
   132
	{
sl@0
   133
	return iTransitionInfo;
sl@0
   134
	}
sl@0
   135
sl@0
   136
EXPORT_C void CTransition::RepeatOnce()
sl@0
   137
	{
sl@0
   138
	iRepeatThis = ETrue;
sl@0
   139
	}
sl@0
   140
sl@0
   141
EXPORT_C TInt CTransition::RunError(TInt aErrorCode)
sl@0
   142
	{
sl@0
   143
	// Record the leave and signal completed with a leave code
sl@0
   144
	_LIT(KTransitionRunError, "CTransition::TransitMethodL() leaving error %d.");
sl@0
   145
	iUTContext.DataLogger().LogInformationWithParameters(KTransitionRunError, aErrorCode);
sl@0
   146
sl@0
   147
	iLeaveError = aErrorCode;
sl@0
   148
	// Check if the leave is associated with a repeat request
sl@0
   149
	// I.e. it was an execution path test from a stub.
sl@0
   150
	if(iLeaveError == KTestBedRepeatTest && iRepeatThis)
sl@0
   151
		User::RequestComplete(iUnitTestStatus, KTestBedRepeatTest);
sl@0
   152
	else
sl@0
   153
		User::RequestComplete(iUnitTestStatus, KTestBedTestLeft);
sl@0
   154
	return KErrNone;
sl@0
   155
	}
sl@0
   156
sl@0
   157
EXPORT_C TBool CTransition::IsBlockingTransition() const
sl@0
   158
	{
sl@0
   159
	return iBlockingTransition;
sl@0
   160
	}
sl@0
   161
sl@0
   162
EXPORT_C void CTransition::SetBlockingTransition(TBool aBlocking)
sl@0
   163
	{
sl@0
   164
	iBlockingTransition = aBlocking;
sl@0
   165
	}
sl@0
   166
sl@0
   167
EXPORT_C TInt CTransition::GetErrorCode() const
sl@0
   168
	{
sl@0
   169
	return iLeaveError;
sl@0
   170
	}
sl@0
   171
sl@0
   172
EXPORT_C void CTransition::PostTransitionCleanup()
sl@0
   173
	{
sl@0
   174
	// Default behaviour is to do nothing
sl@0
   175
	}