1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
#!/bin/sh
print_usage () {
echo "usage: $0 [MODEM INDEX] [all|ucs2|gsm7|data] [NUMBER]"
echo " if no [NUMBER] is given, a placeholder one will be used and no SMS will be sent"
}
test () {
TITLE=$1
TEXT=$2
DATAFILE=$3
echo
echo
echo "============================================================="
echo "$TITLE"
echo "============================================================="
echo
# Build SMS properties
PROPERTIES="number='$NUMBER'"
if [ "x$TEXT" != "x" ]; then
PROPERTIES=$PROPERTIES",text='$TEXT'"
fi
# Create the SMS first, get DBus path returned
echo "Creating SMS..."
CMD="mmcli -m $MODEM_INDEX --messaging-create-sms=\"$PROPERTIES\""
if [ "x$DATAFILE" != "x" ]; then
CMD=$CMD" --messaging-create-sms-with-data=$DATAFILE"
fi
echo "$> $CMD"
OUT=`eval $CMD`
SMS_PATH=`echo "$OUT" | grep "/org/freedesktop/ModemManager1/SMS" | awk 'BEGIN { FS = " " } ; { print $1 }'`
if [ "x$SMS_PATH" = "x" ]; then
echo "error: couldn't create SMS" 1>&2
exit 2
else
echo "SMS created:"
mmcli -s $SMS_PATH
echo
fi
echo "Storing SMS..."
CMD="mmcli -s $SMS_PATH --store"
echo "$> $CMD"
OUT=`eval $CMD`
STORED=`echo "$OUT" | grep "success"`
if [ "x$STORED" = "x" ]; then
echo "error: couldn't store the SMS" 1>&2
exit 2
else
echo "SMS stored:"
mmcli -s $SMS_PATH
echo
fi
if [ "x$DONOTSEND" = "x" ]; then
echo "Sending SMS..."
CMD="mmcli -s $SMS_PATH --send"
echo "$> $CMD"
OUT=`eval $CMD`
SENT=`echo "$OUT" | grep "success"`
if [ "x$SENT" = "x" ]; then
echo "error: couldn't send the SMS" 1>&2
exit 2
else
echo "SMS sent:"
mmcli -s $SMS_PATH
echo
fi
fi
# Delete the SMS now
echo "Deleting SMS..."
CMD="mmcli -m $MODEM_INDEX --messaging-delete-sms=$SMS_PATH"
echo "$> $CMD"
OUT=`eval $CMD`
DELETED=`echo "$OUT" | grep "success"`
if [ "x$DELETED" = "x" ]; then
echo "error: couldn't delete the SMS" 1>&2
exit 2
else
echo "SMS deleted"
fi
}
if [ $# -ge 2 ]; then
MODEM_INDEX=$1
COMMAND=$2
fi
if [ $# -eq 2 ]; then
DONOTSEND=1
NUMBER=123456
elif [ $# -eq 3 ]; then
NUMBER=$3
else
echo "error: missing arguments" 1>&2
print_usage
exit 255
fi
# Process commands
case $COMMAND in
"all")
RUN_UCS2=1
RUN_GSM7=1
RUN_DATA=1
;;
"ucs2")
RUN_UCS2=1
;;
"gsm7")
RUN_GSM7=1
;;
"data")
RUN_DATA=1
;;
*)
echo "error: unexpected command '$COMMAND'" 1>&2
print_usage
exit 255
;;
esac
#
# UCS2 tests
#
if [ "x$RUN_UCS2" != "x" ]; then
test "Testing singlepart SMS with UCS2 text..." "你好你好你好你" ""
test "Testing multipart SMS with UCS2 text..." "你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好好" ""
fi
#
# GSM7 tests
#
if [ "x$RUN_GSM7" != "x" ]; then
test "Testing singlepart SMS with GSM7 text..." "Hello world" ""
test "Testing multipart SMS with GSM7 text..." "01234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890" ""
fi
#
# Data tests
#
if [ "x$RUN_DATA" != "x" ]; then
TESTFILE_SHORT=/tmp/`basename $0`-140
TESTFILE_LONG=/tmp/`basename $0`-200
echo
if [ -f $TESTFILE_SHORT ]; then
echo "Re-using previously created 140-byte testfile at $TESTFILE_SHORT"
else
echo "Creating testfile at $TESTFILE_SHORT"
dd if=/dev/random of=$TESTFILE_SHORT bs=1 count=140
fi
if [ -f $TESTFILE_LONG ]; then
echo "Re-using previously created 200-byte testfile at $TESTFILE_LONG"
else
echo "Creating testfile at $TESTFILE_LONG"
dd if=/dev/random of=$TESTFILE_LONG bs=1 count=200
fi
test "Testing singlepart SMS with data..." "" "$TESTFILE_SHORT"
test "Testing multipart SMS with data..." "" "$TESTFILE_LONG"
fi
|