adding DSN to csql.conf based on the cache test mode
[csql.git] / test / cache / Bidirectional / test003.ksh
blobb5fa007372f897496adda68c58356c0f4db98669
1 #!/bin/sh
2 # Test Case
4 # Bi-directional cache test
5 # Create two table t1,t1 that has no primary key
6 # Set bidirectional flag in csql.conf to true,Create log table in the cache and run Trigger
8 input=${PWD}/cache/Bidirectional/mysqlcreatelogtable.sql
10 REL_PATH=.
11 if [ -s "$input" ]
12 then
13 REL_PATH=${PWD}/cache/Bidirectional
16 #cp $CSQL_CONFIG_FILE /tmp/csql.conf
17 #echo DSN=$DSN >>$CSQL_CONFIG_FILE
18 isql $DSN < $REL_PATH/mysqlcreatelogtable.sql >/dev/null 2>&1 &
19 echo log table created in target db.
21 isql $DSN < $REL_PATH/create1.sql >/dev/null 2>&1
22 rm -f /tmp/csql/csqltable.conf /tmp/csql/csql.db
23 touch /tmp/csql/csqltable.conf /tmp/csql/csql.db
24 isql $DSN <$REL_PATH/trigger.sql >/dev/null
25 isql $DSN <$REL_PATH/trigger1.sql >/dev/null
27 export CSQL_CONFIG_FILE=$REL_PATH/csql.conf
28 echo DSN=$DSN >>$CSQL_CONFIG_FILE
29 for (( a=1; a<3; a++ ))
31 echo "1:t$a NULL NULL NULL"
32 done >> /tmp/csql/csqltable.conf
34 $CSQL_INSTALL_ROOT/bin/csqlserver -c 2>/dev/null &
35 pid=$!
36 sleep 5
37 echo "server started"
38 $CSQL_INSTALL_ROOT/bin/csql -s $REL_PATH/select.sql >/dev/null 2>&1
39 if [ $? -eq 0 ]
40 then
41 # cp /tmp/csql.conf $CSQL_CONFIG_FILE
42 exit 1
45 isql $DSN < ${REL_PATH}/insert.sql >/dev/null 2>&1
46 sleep 15
47 $CSQL_INSTALL_ROOT/bin/csql -s $REL_PATH/select.sql >/dev/null 2>&1
49 $CSQL_INSTALL_ROOT/bin/csql -s $REL_PATH/drop.sql > /dev/null 2>&1
50 isql $DSN < ${REL_PATH}/drop.sql >/dev/null 2>&1
51 rm -f /tmp/csql/csqltable.conf /tmp/csql/csql.db
52 touch /tmp/csql/csqltable.conf /tmp/csql/csql.db
54 kill -2 $pid
55 ipcrm -M 4000 -M 4500
56 # cp /tmp/csql.conf $CSQL_CONFIG_FILE
57 exit 0;