adding test scripts
[csql.git] / test / cache / Gateway / test011.ksh
blob977b630d62607fb792bab7c0bda3a4e18eff27c0
1 #!/bin/ksh
3 # 11.Table there in csql and mysql and not cached. select should return records in csql table.
5 #Run this test only under csql/test or on this directory.
6 #Otherwise, it may fail
7 input=${PWD}/cache/Gateway/mysqlinputtest1.sql
8 REL_PATH=.
9 if [ -s "$input" ]
10 then
11 REL_PATH=${PWD}/cache/Gateway
13 rm -f /tmp/csql.conf
15 cp $REL_PATH/csql.conf /tmp/csql.conf
16 export CSQL_CONFIG_FILE=/tmp/csql.conf
18 echo DSN=$DSN >>$CSQL_CONFIG_FILE
19 DS="$DSN $DBUSER $PASSWORD"
20 rm -f /tmp/csql/csqlds.conf
21 touch /tmp/csql/csqlds.conf
22 $CSQL_INSTALL_ROOT/bin/csqlds -U $DBUSER -P $PASSWORD -D $DSN -N $TDB -a
23 if [ $? -ne 0 ]
24 then
25 exit 1;
28 if [ $DSN = "oracle" ]
29 then
30 isql $DS < $REL_PATH/orainputt1.oracle >/dev/null 2>&1
31 elif [ $DSN = "sybase" ]
32 then
33 isql $DS < $REL_PATH/sybaseinputtest1.sql >/dev/null 2>&1
34 elif [ $DSN = "db2" ]
35 then
36 isql $DS < $REL_PATH/db2inputtest1.sql >/dev/null 2>&1
37 else
38 isql $DS < $REL_PATH/mysqlinputtest1.sql >/dev/null 2>&1
41 if [ $? -ne 0 ]
42 then
43 echo "DSN is not set for target db"
44 exit 1
47 isql $DS < $REL_PATH/selectstar.sql
48 if [ $? -ne 0 ]
49 then
50 cp /tmp/csql.conf $CSQL_CONFIG_FILE
51 exit 1;
54 $CSQL_INSTALL_ROOT/bin/csqlserver >/dev/null 2>&1 &
55 pid=$!
56 sleep 5
58 if [ $DSN = "oracle" ]
59 then
60 $CSQL_INSTALL_ROOT/bin/csql -s $REL_PATH/orainputt1.oracle >/dev/null 2>&1
61 else
62 $CSQL_INSTALL_ROOT/bin/csql -s $REL_PATH/csqlinputtest10.sql >/dev/null 2>&1
65 $CSQL_INSTALL_ROOT/bin/csql -g -s $REL_PATH/selectstar.sql
66 isql $DSN < $REL_PATH/dropt1t2t3.sql > /dev/null 2>&1
67 rm -f /tmp/csql/csqltable.conf
68 touch /tmp/csql/csqltable.conf
69 kill -9 $pid
70 ipcrm -M 1199 -M 2277
71 exit 0;