--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/telephonyserverplugins/multimodetsy/test/Te_LoopBack/Te_LoopBackCDataCallRemoteHangupDial.h Tue Feb 02 01:41:59 2010 +0200
@@ -0,0 +1,324 @@
+// Copyright (c) 1997-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:
+// This file has the class definitions and scripts for the "Data Call answer and
+// remote hang-up closely followed by a dial" Test in the ETel Regression test harness.
+// The call scripts are processed and handled by the emulator side of the test via the
+// scripting engine. Each line in the script represents an action that the emulator must
+// take, either a receive action (which defines an expected string) or a transmit action with the
+// ASCII data to be sent. See the description of the scripting language for more information.
+//
+//
+
+/**
+ @file
+ @internalComponent
+*/
+
+#ifndef __CDATACALLREMOTEHANGUP_H__
+#define __CDATACALLREMOTEHANGUP_H__
+
+#include "Te_LoopbackTestStepBase.h"
+#include "Te_LoopBackScriptEng.h"
+
+_LIT8(KWriteTestRemoteHangupData,"ABCD\r\n");
+_LIT8(KWriteTestRemoteHangupData2,"EFGH\r\n");
+
+// KHangupDialDefVarDelay is the default Variable Delay value when the user did NOT enter a variable
+// delay value to be used as a timeout by script processing when the iParam value is set -1 in a
+// TScript script whose iCommand is an EWait.
+const TInt KHangupDialDefVarDelay=15;
+
+// KHangupDialMinVarDelay is Minimum Variable Delay value that can be input by the user as the timeout
+// by script processing when iParam value is set -1 in a TScript script whose iCommand is an EWait.
+const TInt KHangupDialMinVarDelay=1;
+
+// KHangupDialMaxVarDelay is Maximum Variable Delay value that can be input by the user as the timeout
+// by script processing when iParam value is set -1 in a TScript script whose iCommand is an EWait.
+const TInt KHangupDialMaxVarDelay=45;
+
+// KHangupDialMaxDigits is Maximum number of digits allowed to be entered by the operator when
+// Variable Delay value that can be input by the user as the timeout by script
+// processing when the iParam value is set -1 in a TScript script whose iCommand is an EWait.
+const TInt KHangupDialMaxDigits=3;
+
+//
+// First a Script where everything is in order
+//
+const struct TScript KDataCallRemoteHangDialScript[]= {
+ { ERxString, (TText8*)"AT\r", 0, ERxEvent },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { EIfRxStringJmp, (TText8*)"AT\r", 1, 0 },
+
+ { ERxString, (TText8*)"AT+FCLASS=?", 0, ERxEvent },
+ { ETxString, (TText8*)"0,1,2\r", 0, ETxEvent|EFailIfTimeOut },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+//
+// The initialisation string - we don't care what it is
+//
+ { ERxString, (TText8*)"AT", 0, ERxEvent },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CNMI=,0", 0, ERxEvent },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"ATS7?", 0, ERxEvent },
+ { ETxString, (TText8*)"050\r", 0, ETxEvent|EFailIfTimeOut },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"ATS0=0", 0, ERxEvent },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CGMI", 0, ERxEvent },
+ { ETxString, (TText8*)"ERICSSON\r", 0, ETxEvent|EFailIfTimeOut },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CGMM", 0, ERxEvent },
+ { ETxString, (TText8*)"1100801\r", 0, ETxEvent|EFailIfTimeOut },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CGMR", 0, ERxEvent },
+ { ETxString, (TText8*)"9808261341\r", 0, ETxEvent|EFailIfTimeOut },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CGSN", 0, ERxEvent },
+ { ETxString, (TText8*)"520002512954000\r", 0, ETxEvent|EFailIfTimeOut },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CIMI", 0, ERxEvent },
+ { ETxString, (TText8*)"ERROR\r", 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CMGF=?", 0, ERxEvent },
+ { ETxString, (TText8*)"+CMGF: (0)\r", 0, ETxEvent|EFailIfTimeOut },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CMGF=0", 0, ERxEvent },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CPMS=?", 0, ERxEvent },
+ { ETxString, (TText8*)"+CPMS: (\"ME\",\"SM\"),(\"ME\",\"SM\")\r", 0, ETxEvent|EFailIfTimeOut },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CPMS?", 0, ERxEvent },
+ { ETxString, (TText8*)"+CPMS: \"SM\",0,15,\"SM\",0,15\r", 0, ETxEvent|EFailIfTimeOut },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CPBS=?", 0, ERxEvent },
+ { ETxString, (TText8*)"+CPBS: (\"ME\",\"SM\")\r", 0, ETxEvent|EFailIfTimeOut },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CREG=0", 0, ERxEvent },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CREG=2", 0, ERxEvent },
+ { ETxString, (TText8*)"ERROR\r", 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CREG=1", 0, ERxEvent },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CREG?", 0, ERxEvent },
+ { ETxString, (TText8*)"ERROR\r", 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CRC=1", 0, ERxEvent },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+COPS?", 0, ERxEvent },
+ { ETxString, (TText8*)"+COPS: 0,0,\"UK VODAFONE\"\r", 0, ETxEvent|EFailIfTimeOut },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CBC", 0, ERxEvent },
+ { ETxString, (TText8*)"ERROR\r", 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CSQ", 0, ERxEvent },
+ { ETxString, (TText8*)"+CSQ: 31,99\r", 0, ETxEvent|EFailIfTimeOut },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CGCLASS", 0, ERxEvent },
+ { ETxString, (TText8*)"ERROR\r", 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CGCLASS", 0, ERxEvent },
+ { ETxString, (TText8*)"ERROR\r", 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CGQREQ", 0, ERxEvent },
+ { ETxString, (TText8*)"ERROR\r", 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CGATT", 0, ERxEvent },
+ { ETxString, (TText8*)"ERROR\r", 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CNMI=?", 0, ERxEvent },
+ { ETxString, (TText8*)"+CNMI: (0-2),(0,1,3),(0),(0),(0,1)\r", 0, ETxEvent|EFailIfTimeOut },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CBST=?", 0, ERxEvent },
+ { ETxString, (TText8*)"+CBST: (0-7,12,14-16,34,36,38,39,43,47-51,65,66,68,70,71,75,79-81),(0,2),(1)\r", 0, ETxEvent|EFailIfTimeOut },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CSCA?", 0, ERxEvent },
+ { ETxString, (TText8*)"+CSCA: \"441632960000\",145", 0, ETxEvent|EFailIfTimeOut },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+CGREG=1", 0, ERxEvent },
+ { ETxString, (TText8*)"ERROR\r", 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT*ECAM=1", 0, ERxEvent },
+ { ETxString, (TText8*)"ERROR\r", 0, ETxEvent|EFailIfTimeOut },
+
+//
+// Initialisation complete.
+//
+// Now we simulate an incoming data call
+//
+ { EWait, NULL, 1, ETimeOutEvent },
+ { ETxString, (TText8*)"\r\n+CRING: REL ASYNC\r\n", 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT+FCLASS=0", 0, ERxEvent },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"ATM0L0X3S8=0", 0, ERxEvent },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+// This is the Data Init String
+ { ERxString, (TText8*)"AT345678901234567890123456789012345678901234567890", 0, ERxEvent },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+ { ERxString, (TText8*)"AT", 0, ERxEvent },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"ATA", 0, ERxEvent },
+
+// Set signal for connection
+ { ESignalMark, NULL, KSignalDCD, 0 },
+ { ETxString, (TText8*)"\r\nCONNECT 28800/ARQ/V34/LAPM/V42BIS\r\n", 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"ABCD\r\n", 0, ERxEvent },
+ { ERxString, (TText8*)"ABCD\r\n", 0, ERxEvent },
+
+ { ERxString, (TText8*)"AT", 0, ERxEvent },
+ { ERxString, (TText8*)"+++", 0, ERxEvent },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { ERxString, (TText8*)"AT", 0, ERxEvent },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+// Simulate Remote hangup
+// Deassert signal for no-connection
+ { ESignalSpace, NULL, KSignalDCD, 0 },
+ { ETxString, (TText8*)"NO CARRIER", 0, ETxEvent },
+
+//
+// A delay is performed at this point by the CTestDriveRemoteHangupDial::DriveETelApiL() method,
+// ...and not by the scripts.
+//
+
+//
+// Perform the Dial request
+//
+ { ERxString, (TText8*)"AT+FCLASS=0", 0, ERxEvent },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+// Note: Run another test where we ERROR this request
+ { ERxString, (TText8*)"ATM0L0X3S8=0", 0, ERxEvent },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+// This is the Data Init String
+ { ERxString, (TText8*)"AT345678901234567890123456789012345678901234567890", 0, ERxEvent },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+// This is just another quick "AT", "OK" sequence to check we're still alright
+ { ERxString, (TText8*)"AT", 0, ERxEvent },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+// Issue the dial command and wait for connection
+ { ERxString, (TText8*)"ATD+1234", 0, ERxEvent },
+// Set signal for connection
+ { ESignalMark, NULL, KSignalDCD, 0 },
+ { ETxString, (TText8*)"\r\nCONNECT 28800/ARQ/V34/LAPM/V42BIS\r\n", 0, ETxEvent|EFailIfTimeOut },
+
+// This is the Data Xfer String
+ { ERxString, (TText8*)"EFGH\r\n", 0, ERxEvent },
+ { ERxString, (TText8*)"EFGH\r\n", 0, ERxEvent },
+
+ { ERxString, (TText8*)"AT", 0, ERxEvent },
+ { ERxString, (TText8*)"+++", 0, ERxEvent },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+// Simulate Remote hangup
+// Deassert signal for no-connection
+ { ESignalSpace, NULL, KSignalDCD, 0 },
+ { ETxString, (TText8*)"NO CARRIER", 0, ETxEvent },
+
+// Request for GSM Phone Signal Strength
+ { ERxString, (TText8*)"AT+CSQ", 0, ERxEvent },
+ { ETxString, (TText8*)"+CSQ:31,99", 0, ETxEvent|EFailIfTimeOut },
+ { ETxStringOK, NULL, 0, ETxEvent|EFailIfTimeOut },
+
+ { EWait, NULL, 2, ETimeOutEvent },
+ { EComplete, NULL, 0, 0 }
+ };
+
+/**
+ * This class is used by the client side of the test. It contains the method DriveETelApi
+ * which is the primary client side method. This class inherits from the CTestBase class.
+ * All client side test classes must contain these entries.
+ */
+class CTestDriveRemoteHangupDial : public CTestBase
+ {
+public:
+ static CTestDriveRemoteHangupDial* NewL(const TScriptList aScriptListEntry, TInt aVarDelay);
+ // Called by the user interface from the C function PerformTestL.
+ virtual TInt RunTestL();
+
+protected:
+ // Called by the CTestBase::StartEmulator method to drive the ETel API.
+ virtual TInt DriveETelApiL();
+
+private:
+ CTestDriveRemoteHangupDial(const TScriptList aScriptListEntry, TInt aVarDelay);
+
+ TScriptList iScriptListEntry; //< Initialized by the constructor, it records the enumerated
+ //< script entry number.
+ TInt iVarDelay; //< Variable delay value to be used as the timeout by the
+ //< ...script processing when the iParam value is set -1 in
+ //< ...a TScript script whose iCommand is an EWait.
+ };
+
+/**
+ * This class is used by the emulator side of the test. It implements several virtual functions
+ * which are test specific and referenced by other classes. This class inherits from the
+ * CATScriptEng class. All Emulator side test classes should have this structure.
+ */
+class CTestRemoteHangupDial : public CATScriptEng
+ {
+public:
+ static CTestRemoteHangupDial* NewL(const TScript* aScript);
+ static CTestRemoteHangupDial* NewL(const TScript* aScript, const TInt aVarDelay);
+
+ // Called by the scripting engine to implement the EExecuteSpecial Command.
+ virtual void SpecificAlgorithmL(TInt aParam);
+
+ // Called by the scripting engine to end the execution of the script.
+ virtual void Complete(TInt aError);
+
+ // Called by the scripting engine to start the execution of the script.
+ virtual TInt Start();
+
+private:
+ CTestRemoteHangupDial(const TScript* aScript);
+ CTestRemoteHangupDial(const TScript* aScript, const TInt aVarDelay);
+ void ConstructL();
+
+ const TScript* iScript; //< Pointer to the first line in the associated script.
+ };
+
+#endif