mirror of https://gerrit.osmocom.org/pysim
Fix automated tests
- The .ok files currently dictate in which pysical reader device the card must be placed. Lets remove this dependncy to make the setup more reliable. Testing in which reade a card is placed is not in the scope of our tests. - Fix bug in pysim-test.sh (test runner), so that the veriable $ADM_HEX gets reset after the execution of the tests. Change-Id: I12e6b46787efb39c5745f4e7f3cdcca9209881b8changes/64/16564/12
parent
76db7d7295
commit
4e724391e0
|
@ -1,4 +1,4 @@
|
|||
Using PC/SC reader (dev=4) interface
|
||||
Using PC/SC reader (dev=0) interface
|
||||
Reading ...
|
||||
ICCID: 8988219000000117833
|
||||
IMSI: 001010000000111
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Using PC/SC reader (dev=3) interface
|
||||
Using PC/SC reader (dev=4) interface
|
||||
Reading ...
|
||||
ICCID: 89445310150011013678
|
||||
IMSI: 001010000000102
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Using PC/SC reader (dev=1) interface
|
||||
Using PC/SC reader (dev=2) interface
|
||||
Reading ...
|
||||
ICCID: 1122334455667788990
|
||||
IMSI: 001010000000102
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Using PC/SC reader (dev=0) interface
|
||||
Using PC/SC reader (dev=1) interface
|
||||
Reading ...
|
||||
ICCID: 1122334455667788990
|
||||
IMSI: 001010000000102
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Using PC/SC reader (dev=2) interface
|
||||
Using PC/SC reader (dev=3) interface
|
||||
Reading ...
|
||||
ICCID: 1122334455667788990
|
||||
IMSI: 001010000000102
|
||||
|
|
|
@ -78,7 +78,11 @@ function check_card {
|
|||
stat ./$CARD_NAME.ok > /dev/null
|
||||
python $PYSIM_READ -p $TERMINAL > $TEMPFILE
|
||||
set +e
|
||||
CARD_DIFF=$(diff $TEMPFILE ./$CARD_NAME.ok)
|
||||
# Note: We ignore the first line of output in the diff because here
|
||||
# pysim would print the device number of the reader and we do not
|
||||
# want the test to fail just because the card is put into a different
|
||||
# reader device.
|
||||
CARD_DIFF=$(diff + 1 $TEMPFILE ./$CARD_NAME.ok)
|
||||
set -e
|
||||
|
||||
if [ "$CARD_DIFF" != "" ]; then
|
||||
|
@ -156,6 +160,7 @@ function run_test {
|
|||
OPC=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
|
||||
IMSI=001010000000001
|
||||
ADM=00000000
|
||||
ADM_HEX=""
|
||||
ADM_OPT="-a"
|
||||
|
||||
source "$CARD_NAME.data"
|
||||
|
|
Loading…
Reference in New Issue