void tst_QSimToolkit::testDeliverSendDTMF() { QFETCH( QByteArray, data ); QFETCH( QByteArray, resp ); QFETCH( int, resptype ); QFETCH( QString, text ); QFETCH( QString, number ); QFETCH( int, iconId ); QFETCH( bool, iconSelfExplanatory ); QFETCH( QByteArray, textAttribute ); QFETCH( QString, html ); QFETCH( int, options ); Q_UNUSED(resptype); Q_UNUSED(html); // Output a dummy line to give some indication of which test we are currently running. qDebug() << ""; // Clear the client/server state. server->clear(); deliveredCommand = QSimCommand(); // Compose and send the command. QSimCommand cmd; cmd.setType( QSimCommand::SendDTMF ); cmd.setDestinationDevice( QSimCommand::Network ); cmd.setText( text ); cmd.setNumber( number ); cmd.setIconId( (uint)iconId ); cmd.setIconSelfExplanatory( iconSelfExplanatory ); cmd.setTextAttribute( textAttribute ); server->emitCommand( cmd ); // Wait for the command to arrive in the client. QVERIFY( QFutureSignal::wait( this, SIGNAL(commandSeen()), 100 ) ); // Verify that the command was delivered exactly as we asked. QVERIFY( deliveredCommand.type() == cmd.type() ); QVERIFY( deliveredCommand.text() == cmd.text() ); QVERIFY( deliveredCommand.number() == cmd.number() ); QVERIFY( deliveredCommand.iconId() == cmd.iconId() ); QVERIFY( deliveredCommand.iconSelfExplanatory() == cmd.iconSelfExplanatory() ); QVERIFY( deliveredCommand.textAttribute() == cmd.textAttribute() ); QCOMPARE( deliveredCommand.toPdu( (QSimCommand::ToPduOptions)options ), data ); // The terminal response should have been sent immediately to ack reception of the command. // We cannot check the return data explicitly because that will be handled in the modem // and will typically be invisible to Qtopia. We therefore compare against what the // response would be without the return data. QCOMPARE( server->responseCount(), 1 ); QCOMPARE( server->envelopeCount(), 0 ); QSimTerminalResponse resp2; resp2.setCommand( deliveredCommand ); resp2.setResult( QSimTerminalResponse::Success ); QCOMPARE( server->lastResponse(), resp2.toPdu() ); }
void DemoSimApplication::mainMenuSelection( int id ) { QSimCommand cmd; switch ( id ) { case MainMenu_News: { QTimer::singleShot( 0, this, SLOT(sendDisplayText()) ); } break; case MainMenu_Sports: { sendSportsMenu(); } break; case MainMenu_Time: { cmd.setType( QSimCommand::SetupCall ); cmd.setNumber( "1194" ); cmd.setText( "Dialing the Time Guy ..." ); command( cmd, this, SLOT(mainMenu()) ); } break; case MainMenu_SticksGame: { startSticksGame(); } break; case MainMenu_Tones: { sendToneMenu(); } break; case MainMenu_Icons: { sendIconMenu(); } break; case MainMenu_IconsSE: { sendIconSEMenu(); } break; case MainMenu_Finance: { cmd.setType( QSimCommand::GetInput ); cmd.setText( "Enter code" ); cmd.setWantDigits( true ); cmd.setMinimumLength( 3 ); cmd.setHasHelp( true ); command( cmd, this, SLOT(getInputLoop(QSimTerminalResponse)) ); } break; case MainMenu_Browser: { sendBrowserMenu(); } break; default: { // Don't know what this item is, so just re-display the main menu. mainMenu(); } break; } }
void tst_QSimToolkit::testUISendSMS() { QFETCH( QByteArray, data ); QFETCH( QByteArray, resp ); QFETCH( QByteArray, tpdu ); QFETCH( int, resptype ); QFETCH( QString, text ); QFETCH( QString, number ); QFETCH( bool, smsPacking ); QFETCH( int, iconId ); QFETCH( bool, iconSelfExplanatory ); QFETCH( QByteArray, textAttribute ); QFETCH( QString, html ); QFETCH( int, options ); Q_UNUSED(html); Q_UNUSED(options); // Skip tests that we cannot test using the "simapp" UI. if ( resptype == 0x0004 ) { // Icon not displayed QSKIP( "", SkipSingle ); } // Output a dummy line to give some indication of which test we are currently running. qDebug() << ""; // Create the command to be tested. QSimCommand cmd; cmd.setType( QSimCommand::SendSMS ); cmd.setDestinationDevice( QSimCommand::Network ); cmd.setText( text ); if ( text.isEmpty() && ( options & QSimCommand::EncodeEmptyStrings ) != 0 ) cmd.setSuppressUserFeedback( true ); cmd.setNumber( number ); cmd.setSmsPacking( smsPacking ); cmd.setIconId( (uint)iconId ); cmd.setIconSelfExplanatory( iconSelfExplanatory ); cmd.setTextAttribute( textAttribute ); QByteArray newtpdu = tpdu; if ( smsPacking ) { // To prevent truncation of the 1.4.1 test data during 7-bit to 8-bit conversion, // we extract the TPDU from "data" rather than use "tpdu". newtpdu = QSimCommand::fromPdu( data ).extensionField(0x8B); } newtpdu[1] = (char)0; cmd.addExtensionField( 0x8B, newtpdu ); // Set up the server with the command, ready to be selected // from the "Run Test" menu item on the test menu. server->startUsingTestMenu( cmd ); QVERIFY( waitForView( SimMenu::staticMetaObject ) ); // Clear the server state just before we request the actual command under test. server->clear(); // Select the first menu item. select(); // Wait for the text to display. If user feedback is suppressed, then // the command is supposed to be performed silently. if ( cmd.suppressUserFeedback() ) QVERIFY( !waitForView( SimText::staticMetaObject ) ); else QVERIFY( waitForView( SimText::staticMetaObject ) ); // Check that the response is what we expected. The response is // sent automatically by the back-end and is always "success". QCOMPARE( server->responseCount(), 1 ); QCOMPARE( server->envelopeCount(), 0 ); QCOMPARE( server->lastResponse(), resp ); }
void tst_QSimToolkit::testDeliverSendSMS() { QFETCH( QByteArray, data ); QFETCH( QByteArray, resp ); QFETCH( QByteArray, tpdu ); QFETCH( int, resptype ); QFETCH( QString, text ); QFETCH( QString, number ); QFETCH( bool, smsPacking ); QFETCH( int, iconId ); QFETCH( bool, iconSelfExplanatory ); QFETCH( QByteArray, textAttribute ); QFETCH( QString, html ); QFETCH( int, options ); Q_UNUSED(html); // Output a dummy line to give some indication of which test we are currently running. qDebug() << ""; // Clear the client/server state. server->clear(); deliveredCommand = QSimCommand(); // Compose and send the command. QSimCommand cmd; cmd.setType( QSimCommand::SendSMS ); cmd.setDestinationDevice( QSimCommand::Network ); cmd.setText( text ); if ( text.isEmpty() && ( options & QSimCommand::EncodeEmptyStrings ) != 0 ) cmd.setSuppressUserFeedback( true ); cmd.setNumber( number ); cmd.setSmsPacking( smsPacking ); cmd.setIconId( (uint)iconId ); cmd.setIconSelfExplanatory( iconSelfExplanatory ); cmd.setTextAttribute( textAttribute ); QByteArray newtpdu = tpdu; if ( smsPacking ) { // To prevent truncation of the 1.4.1 test data during 7-bit to 8-bit conversion, // we extract the TPDU from "data" rather than use "tpdu". newtpdu = QSimCommand::fromPdu( data ).extensionField(0x8B); } newtpdu[1] = (char)0; cmd.addExtensionField( 0x8B, newtpdu ); server->emitCommand( cmd ); // Wait for the command to arrive in the client. QVERIFY( QFutureSignal::wait( this, SIGNAL(commandSeen()), 100 ) ); // Verify that the command was delivered exactly as we asked. QVERIFY( deliveredCommand.type() == cmd.type() ); QVERIFY( deliveredCommand.text() == cmd.text() ); QVERIFY( deliveredCommand.suppressUserFeedback() == cmd.suppressUserFeedback() ); QVERIFY( deliveredCommand.number() == cmd.number() ); QVERIFY( deliveredCommand.smsPacking() == cmd.smsPacking() ); QVERIFY( deliveredCommand.iconId() == cmd.iconId() ); QVERIFY( deliveredCommand.iconSelfExplanatory() == cmd.iconSelfExplanatory() ); QVERIFY( deliveredCommand.extensionData() == cmd.extensionData() ); QVERIFY( deliveredCommand.textAttribute() == cmd.textAttribute() ); QCOMPARE( deliveredCommand.toPdu( (QSimCommand::ToPduOptions)options ), data ); // The terminal response should have been sent immediately to ack reception of the command. QCOMPARE( server->responseCount(), 1 ); QCOMPARE( server->envelopeCount(), 0 ); if ( resptype != 0x0004 ) { QCOMPARE( server->lastResponse(), resp ); } else { // We cannot test the "icon not displayed" case because the qtopiaphone // library will always respond with "command performed successfully". // Presumably the Qtopia user interface can always display icons. QByteArray resp2 = resp; resp2[resp2.size() - 1] = 0x00; QCOMPARE( server->lastResponse(), resp2 ); } }