Vodafone Test Suite

Dependencies:   mbed-rtos mbed HTTPClient VodafoneUSBModem

Committer:
ashleymills
Date:
Thu Sep 13 10:05:31 2012 +0000
Revision:
33:16126e029d58
Parent:
31:9231acdde9ff
Child:
34:d9e45aad85f2
Changed test framework.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
nherriot 28:c630a04a7198 1 #pragma once
nherriot 28:c630a04a7198 2 #include "VodafoneTestCase.h"
nherriot 28:c630a04a7198 3
nherriot 30:dd2beda340c6 4 #define TEST_PHONE_NUMBER "+447717275049"
nherriot 28:c630a04a7198 5
nherriot 28:c630a04a7198 6 // this test case will wait to receive an SMS from the modem.
nherriot 28:c630a04a7198 7 // if the method that reports a message waiting returns an error it will fail.
nherriot 28:c630a04a7198 8 // if the method that returns the message from the mailbox returns an error it will fai.
nherriot 28:c630a04a7198 9 // it will report the test as failed if any of the above happens.
nherriot 28:c630a04a7198 10 // it waits forever for an SMS.
nherriot 28:c630a04a7198 11 // TODO: this should wait for a set time before failing.
nherriot 28:c630a04a7198 12
nherriot 31:9231acdde9ff 13 static const char *gTest13Description = "Waiting for an SMS message with irregular characters and numbers";
nherriot 31:9231acdde9ff 14
nherriot 28:c630a04a7198 15 class Test13 : public VodafoneTestCase {
nherriot 28:c630a04a7198 16 public:
nherriot 28:c630a04a7198 17
nherriot 28:c630a04a7198 18 char num[17];
nherriot 31:9231acdde9ff 19 char msg[160];
nherriot 28:c630a04a7198 20 size_t count;
nherriot 28:c630a04a7198 21
nherriot 28:c630a04a7198 22
ashleymills 33:16126e029d58 23 Test13(VodafoneUSBModem *m) : VodafoneTestCase(m) {
ashleymills 33:16126e029d58 24 _description = gTest13Description;
ashleymills 33:16126e029d58 25 _testCaseNumber = 13;
nherriot 28:c630a04a7198 26 }
nherriot 28:c630a04a7198 27
nherriot 28:c630a04a7198 28 virtual bool runTest() {
nherriot 28:c630a04a7198 29 LOG("Test %d waiting for an SMS message...", _testCaseNumber);
nherriot 28:c630a04a7198 30 LOG("Receiving SMS from test phone, waiting for response.");
nherriot 28:c630a04a7198 31
nherriot 28:c630a04a7198 32 while(true)
nherriot 28:c630a04a7198 33 {
nherriot 28:c630a04a7198 34 LOG("Waiting for an SMS message...");
nherriot 28:c630a04a7198 35 int ret = _modem->getSMCount(&count);
nherriot 28:c630a04a7198 36 if(ret)
nherriot 28:c630a04a7198 37 {
nherriot 28:c630a04a7198 38 LOG("getSMCount returned %d", ret);
nherriot 28:c630a04a7198 39 Thread::wait(3000);
nherriot 28:c630a04a7198 40 continue;
nherriot 28:c630a04a7198 41 }
nherriot 28:c630a04a7198 42
nherriot 28:c630a04a7198 43 if( count > 0)
nherriot 28:c630a04a7198 44 {
nherriot 28:c630a04a7198 45 LOG("%d SMS to read", count);
nherriot 28:c630a04a7198 46 ret = _modem->getSM(num, msg, 64);
nherriot 31:9231acdde9ff 47
nherriot 31:9231acdde9ff 48 if(ret)
nherriot 31:9231acdde9ff 49 {
nherriot 31:9231acdde9ff 50 LOG("Error receiving sms. The method getSMS returned %d", ret);
nherriot 31:9231acdde9ff 51 return false;
nherriot 31:9231acdde9ff 52 }
nherriot 31:9231acdde9ff 53 LOG("The message is from number: %s and the message is: \"%s\"", num, msg);
nherriot 31:9231acdde9ff 54 if (strcmp (msg, irregularMessage) ==0)
nherriot 31:9231acdde9ff 55 {
nherriot 31:9231acdde9ff 56 LOG("Success receiving alphabet message matches the sent message");
nherriot 31:9231acdde9ff 57 return true;
nherriot 31:9231acdde9ff 58 }
nherriot 31:9231acdde9ff 59
nherriot 31:9231acdde9ff 60 return true;
nherriot 28:c630a04a7198 61 }
nherriot 28:c630a04a7198 62 Thread::wait(500);
nherriot 28:c630a04a7198 63 }
nherriot 28:c630a04a7198 64
nherriot 28:c630a04a7198 65 }
nherriot 28:c630a04a7198 66
nherriot 28:c630a04a7198 67 private:
nherriot 28:c630a04a7198 68
nherriot 16:c89d426c6175 69 };