2 # The pgsql-devel (or equivalent) package will be need for Exim to build, and
3 # the postgresql-server (or equivalent) package for this test to run.
5 # first, populate a DB to test against
7 echo Starting DB server
9 system 'DIR/bin.sys/initdb -D DIR/pgsql/data';
13 DIR/bin.sys/postgres -D DIR/pgsql/data -p PORT_N -k DIR/pgsql
16 echo Waiting for DB server
18 system 'DIR/bin.sys/pg_ctl -w -D DIR/pgsql/data status';
19 system 'createdb -h localhost -p PORT_N test';
20 system 'psql -h localhost -p PORT_N -d test \
21 -c "CREATE TABLE them ( name text, id text ); \
22 INSERT INTO them VALUES ( \'Philip Hazel\', \'ph10\' ); \
23 INSERT INTO them VALUES ( \'Aristotle\', \'aaaa\' ); \
24 INSERT INTO them VALUES ( \'\', \'nothing\' ); \
25 INSERT INTO them VALUES ( \'\"stquot\', \'quote2\' ); \
26 INSERT INTO them VALUES ( \'before\' || CHR(13) || CHR(10) || \'after\', \'newline\' ); \
27 INSERT INTO them VALUES ( \'x\' || CHR(9) || \'x\', \'tab\' ); \
28 INSERT INTO them VALUES ( CHR(39) || \'stquot\', \'quote1\' );" \
31 echo Populated DB server
34 exim -d-all+lookup -be
35 ${lookup pgsql {select name from them where id='ph10';}}
36 ${lookup pgsql {select name from them where id='ph10';}}
37 ${lookup pgsql {select name from them where id='xxxx';}}
38 ${lookup pgsql {select name from them where id='nothing';}}
39 ${lookup pgsql {select id,name from them where id='nothing';}}
40 ${lookup pgsql {delete from them where id='nonexist';}}
41 ${lookup pgsql {select * from them where id='quote2';}}
42 ${lookup pgsql {select * from them where id='newline';}}
43 ${lookup pgsql {select * from them where id='tab';}}
44 ${lookup pgsql {select * from them where name='${quote_pgsql:'stquot}';}}
45 ${lookup pgsql {servers=x:localhost; select name from them where id='ph10';}}
46 ${lookup pgsql {servers=localhost::PORT_N:x; select name from them where id='ph10';}}
47 ${lookup pgsql {servers=localhost::PORT_N/test/CALLER/:x; select name from them where id='ph10';}}
48 ${lookup pgsql {servers=(DIR/pgsql/.s.PGSQL.PORT_N)/test/CALLER/:x; select name from them where id='ph10';}}
50 ${lookup pgsql {SELECT name FROM them WHERE id IN ('ph10', 'aaaa');}}
51 ${lookup pgsql {SELECT * FROM them WHERE id IN ('ph10', 'aaaa');}}
52 ${lookup pgsql {delete from them where id='aaaa'}}
64 exim -DSERVERS=\(DIR/pgsql/.s.PGSQL.PORT_N\)/test/CALLER/ -d-all+lookup -be
65 ${lookup pgsql {select name from them where id='ph10';}}
69 system 'DIR/bin.sys/pg_ctl stop -D DIR/pgsql/data -m immediate';