Vodafone Test Suite

Dependencies:   mbed-rtos mbed HTTPClient VodafoneUSBModem

Committer:
ashleymills
Date:
Thu Sep 13 12:17:18 2012 +0000
Revision:
35:6867af70c51c
Parent:
34:d9e45aad85f2
Child:
37:847f5f86e9ff
Refactoring.

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
ashleymills 33:16126e029d58 22 Test13(VodafoneUSBModem *m) : VodafoneTestCase(m) {
ashleymills 33:16126e029d58 23 _description = gTest13Description;
ashleymills 33:16126e029d58 24 _testCaseNumber = 13;
nherriot 28:c630a04a7198 25 }
nherriot 28:c630a04a7198 26
ashleymills 34:d9e45aad85f2 27 virtual bool execute() {
nherriot 28:c630a04a7198 28 LOG("Test %d waiting for an SMS message...", _testCaseNumber);
nherriot 28:c630a04a7198 29 LOG("Receiving SMS from test phone, waiting for response.");
nherriot 28:c630a04a7198 30
nherriot 28:c630a04a7198 31 while(true)
nherriot 28:c630a04a7198 32 {
nherriot 28:c630a04a7198 33 LOG("Waiting for an SMS message...");
nherriot 28:c630a04a7198 34 int ret = _modem->getSMCount(&count);
nherriot 28:c630a04a7198 35 if(ret)
nherriot 28:c630a04a7198 36 {
nherriot 28:c630a04a7198 37 LOG("getSMCount returned %d", ret);
nherriot 28:c630a04a7198 38 Thread::wait(3000);
nherriot 28:c630a04a7198 39 continue;
nherriot 28:c630a04a7198 40 }
nherriot 28:c630a04a7198 41
nherriot 28:c630a04a7198 42 if( count > 0)
nherriot 28:c630a04a7198 43 {
nherriot 28:c630a04a7198 44 LOG("%d SMS to read", count);
nherriot 28:c630a04a7198 45 ret = _modem->getSM(num, msg, 64);
nherriot 31:9231acdde9ff 46
nherriot 31:9231acdde9ff 47 if(ret)
nherriot 31:9231acdde9ff 48 {
nherriot 31:9231acdde9ff 49 LOG("Error receiving sms. The method getSMS returned %d", ret);
nherriot 31:9231acdde9ff 50 return false;
nherriot 31:9231acdde9ff 51 }
nherriot 31:9231acdde9ff 52 LOG("The message is from number: %s and the message is: \"%s\"", num, msg);
nherriot 31:9231acdde9ff 53 if (strcmp (msg, irregularMessage) ==0)
nherriot 31:9231acdde9ff 54 {
nherriot 31:9231acdde9ff 55 LOG("Success receiving alphabet message matches the sent message");
nherriot 31:9231acdde9ff 56 return true;
nherriot 31:9231acdde9ff 57 }
nherriot 31:9231acdde9ff 58
nherriot 31:9231acdde9ff 59 return true;
nherriot 28:c630a04a7198 60 }
nherriot 28:c630a04a7198 61 Thread::wait(500);
nherriot 28:c630a04a7198 62 }
nherriot 28:c630a04a7198 63
nherriot 28:c630a04a7198 64 }
nherriot 28:c630a04a7198 65
nherriot 28:c630a04a7198 66 private:
nherriot 28:c630a04a7198 67
nherriot 16:c89d426c6175 68 };