diff -r 35c06c1d4fa6 -r 07656293a99c datacommsserver/esockserver/test/TE_EsockTestSteps/inc/Connections.TestSteps.h --- a/datacommsserver/esockserver/test/TE_EsockTestSteps/inc/Connections.TestSteps.h Wed Jun 09 11:00:38 2010 +0300 +++ b/datacommsserver/esockserver/test/TE_EsockTestSteps/inc/Connections.TestSteps.h Mon Jun 21 17:02:22 2010 +0300 @@ -173,12 +173,36 @@ TVerdict doSingleTestStep(); TInt ConfigureFromIni(); -private: +protected: TRConnectionParams iParams; //current params (.ini) }; _LIT(KStartRConnectionStep,"StartRConnectionStep"); +/** +Class implementing StartStopCrazyLoopRConnectionStep +The test does a loop, where every iteration: +(1) Starts the connection +(2) Snoozes for an +(3) Stops the connection injecting a cancel at that stage of the connection start +(4) Increases the a bit so that next time round the cancel is injected at a different stage. + +Note that since the test is normally executed by a thread of lower priority than ESock_IP, it relies on +ESock_IP yielding (otherwise it won't test different phases. +For instance DummyMCPR will artificially yield on TCFServiceProvider::TJoinRequest. +NetMCPR will not normally yield as is. + +@internalComponent +*/ +class CStartStopCrazyLoopRConnectionStep : public CStartRConnectionStep + { +public: + CStartStopCrazyLoopRConnectionStep(CCEsockTestBase*& aEsockTest); + TVerdict doSingleTestStep(); + TInt CalibrateStart(); + }; + +_LIT(KStartStopCrazyLoopRConnectionStep,"StartStopCrazyLoopRConnectionStep"); /** Class implementing openrconnectionStep @@ -444,6 +468,20 @@ _LIT(KGetParameters_IntStep,"GetParameters_IntStep"); + +class CWaitStep : public CTe_EsockStepBase + { +public: + CWaitStep(CCEsockTestBase*& aEsockTest); + TVerdict doSingleTestStep(); + TInt ConfigureFromIni(); +private: + TInt iTimeOutMs; + }; + +_LIT(KWaitStep,"WaitStep"); + + #endif // CONNECTIONS_TESTSTEPS_H