summaryrefslogtreecommitdiffstats
path: root/systemtest/rmantest/Conversion_Test.sh
blob: 25bd766e9d5a1e52dd977e4ab19fa9d064527e16 (plain)
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
#!/bin/bash
#!/bin/ksh
#
# This file is part of rasdaman community.
#
# Rasdaman community is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Rasdaman community is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with rasdaman community.  If not, see <http://www.gnu.org/licenses/>.
#
# Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009 Peter Baumann /
# rasdaman GmbH.
#
# For more information please see <http://www.rasdaman.org>
# or contact Peter Baumann via <baumann@rasdaman.com>.
#
# SYNOPSIS
#	Conversion_Test.sh
# Description
#	Command-line utility for testing rasdaman.
#	1)creating collection
# 	2)insert images into collection
# 	3)extract images 
# 	4)compare
# 	5)cleanup 
#
# PRECONDITIONS
# 	1)Postgres Server must be running
# 	2)Rasdaman Server must be running
# 	3)database RASBASE must exists
# 	4)rasql utility must be fully running
#	5)images needed for testing shall be put in directory of images 	
# Usage: ./Conversion_Test.sh 
#        
# CHANGE HISTORY
#       2009-Sep-16     J.Yu       created
#

# further tests will be done on dem, inv_dem, tor and inv_tor, after their implementations.

# Variables
PROGNAME=`basename $0`
DIR_NAME=$(dirname $0)
REPORT=$DIR_NAME/Repository/$PROGNAME.report`date "+%Y%m%d"`
OLDREPORT=$REPORT.old
USERNAME=rasdaman	
PASSWORD=rasdaman
DATABASE=RASBASE
IMAGEDIR=$DIR_NAME/images
RASQL="rasql --quiet"

# NUM_TOTAL: the number of the conversions
# NUM_FAIL: the number of fail conversions
# NUM_SUC: the number of success conversions
  NUM_TOTAL=0
  NUM_FAIL=0
  NUM_SUC=0 



# --------------- check if old logfile exists ----------------------------------
if [ -f $REPORT ]; then
	echo Old logfile found, copying it to $OLDREPORT
	mv $REPORT $OLDREPORT
fi


# drop collection if they already exists

echo  "Test by:"$PROGNAME" at "`date`|tee $REPORT

$RASQL -q "select r from RAS_COLLECTIONNAMES as r" --out string|grep tmp

if  [ $? = "0" ]
then
	echo dropping collection ... | tee -a $REPORT
	$RASQL -q "drop collection tmp" --user $USERNAME --passwd $PASSWORD | tee -a $REPORT
fi
################## jpeg() and inv_jpeg() #######################
echo -----jpeg and inv_jpeg conversion------ | tee -a $REPORT
echo creating collection ... | tee -a $REPORT
$RASQL -q "create collection tmp  GreySet" --user $USERNAME --passwd $PASSWORD || echo Error creating collection  tmp| tee -a $REPORT

echo inserting collection ... | tee -a $REPORT
$RASQL -q 'insert into tmp  values inv_jpeg($1)' -f $IMAGEDIR/mr_1.jpeg --user $USERNAME --passwd $PASSWORD || echo Error inserting jpeg image | tee -a $REPORT

echo extracting collection ... | tee -a $REPORT
$RASQL -q "select jpeg(a) from tmp as a" --out file --outfile mr_1.jpeg  --user $USERNAME --passwd $PASSWORD || 
		echo Error extracting jpeg image | tee -a $REPORT

echo  comparing images | tee -a $REPORT
cmp $IMAGEDIR/mr_1.jpeg mr_1.jpeg.unknown 

if [ $? != "0" ]
then
	echo input and output does not match | tee -a $REPORT
	NUM_FAIL=$(($NUM_FAIL + 1))
else
	echo input and output match | tee -a $REPORT
	NUM_SUC=$(($NUM_SUC + 1))
fi

$RASQL -q "drop collection tmp" --user $USERNAME --passwd $PASSWORD | tee -a $REPORT
rm mr_1.jpeg.unknown
################## tiff() and inv_tiff() #######################
echo ------tiff and inv_tiff conversion------ | tee -a $REPORT
echo creating collection ... | tee -a $REPORT
$RASQL -q "create collection tmp  GreySet" --user $USERNAME --passwd $PASSWORD || echo Error creating collection tmp | tee -a $REPORT

echo inserting collection ... | tee -a $REPORT
$RASQL -q 'insert into tmp  values inv_tiff($1)' -f $IMAGEDIR/mr_1.tif --user $USERNAME --passwd $PASSWORD || echo Error inserting tiff image | tee -a $REPORT

echo extracting collection ... | tee -a $REPORT
$RASQL -q "select tiff(a) from tmp as a" --out file --outfile mr_1.tif --user $USERNAME --passwd $PASSWORD || 
		echo Error extracting tiff image | tee -a $REPORT

echo  comparing images | tee -a $REPORT
cmp $IMAGEDIR/mr_1.tif mr_1.tif.unknown 

if [ $? != "0" ]
then
	echo input and output does not match | tee -a $REPORT
	NUM_FAIL=$(($NUM_FAIL + 1))
else
	echo input and output match | tee -a $REPORT
	NUM_SUC=$(($NUM_SUC + 1))
fi

echo dropping collections ... | tee -a $REPORT
$RASQL -q "drop collection tmp" --user $USERNAME --passwd $PASSWORD | tee -a $REPORT
rm mr_1.tif.unknown
################## png() and inv_png() #######################

echo ------png and inv_png conversion------ | tee -a $REPORT
echo creating collection ... | tee -a $REPORT
$RASQL -q "create collection tmp  GreySet" --user $USERNAME --passwd $PASSWORD || echo Error creating collection tmp | tee -a $REPORT

echo inserting collection ... | tee -a $REPORT
$RASQL -q 'insert into tmp  values inv_png($1)' -f $IMAGEDIR/mr_1.png --user $USERNAME --passwd $PASSWORD || echo Error inserting png image | tee -a $REPORT

echo extracting collection ... | tee -a $REPORT
$RASQL -q "select png(a) from tmp as a" --out file --outfile mr_1.png --user $USERNAME --passwd $PASSWORD || 
		echo Error extracting png image | tee -a $REPORT

echo  comparing images | tee -a $REPORT
cmp $IMAGEDIR/mr_1.png mr_1.png.unknown 

if [ $? != "0" ]
then
	echo input and output does not match | tee -a $REPORT
	NUM_FAIL=$(($NUM_FAIL + 1))
else
	echo input and output match | tee -a $REPORT
	NUM_SUC=$(($NUM_SUC + 1))
fi

echo dropping collections ... | tee -a $REPORT
$RASQL -q "drop collection tmp" --user $USERNAME --passwd $PASSWORD | tee -a $REPORT
rm mr_1.png.unknown
################## bmp() and inv_bmp() #######################

echo ------bmp and inv_bmp conversion------ | tee -a $REPORT
echo creating collection ... | tee -a $REPORT
$RASQL -q "create collection tmp  GreySet" --user $USERNAME --passwd $PASSWORD || echo Error creating collection tmp | tee -a $REPORT

echo inserting collection ... | tee -a $REPORT
$RASQL -q 'insert into tmp  values inv_bmp($1)' -f $IMAGEDIR/mr_1.bmp --user $USERNAME --passwd $PASSWORD || echo Error inserting bmp image | tee -a $REPORT

echo extracting collection ... | tee -a $REPORT
$RASQL -q "select bmp(a) from tmp as a" --out file --outfile mr_1.bmp --user $USERNAME --passwd $PASSWORD || 
		echo Error extracting bmp image | tee -a $REPORT

echo  comparing images | tee -a $REPORT
cmp $IMAGEDIR/mr_1.bmp mr_1.bmp.unknown 

if [ $? != "0" ]
then
	echo input and output does not match | tee -a $REPORT
	NUM_FAIL=$(($NUM_FAIL + 1))
else
	echo input and output match | tee -a $REPORT
	NUM_SUC=$(($NUM_SUC + 1))
fi

echo dropping collections ... | tee -a $REPORT
$RASQL -q "drop collection tmp" --user $USERNAME --passwd $PASSWORD | tee -a $REPORT
rm mr_1.bmp.unknown 

################## vff() and inv_vff() #######################


echo ------vff and inv_vff conversion------ | tee -a $REPORT
echo creating collection ... | tee -a $REPORT
$RASQL -q "create collection tmp  GreySet" --user $USERNAME --passwd $PASSWORD || echo Error creating collection tmp | tee -a $REPORT

echo inserting collection ... | tee -a $REPORT
$RASQL -q 'insert into tmp  values inv_vff($1)' -f $IMAGEDIR/mr_1.vff --user $USERNAME --passwd $PASSWORD || echo Error inserting vff image | tee -a $REPORT

echo extracting collection ... | tee -a $REPORT
$RASQL -q 'select vff(a) from tmp as a' --out file --outfile mr_1.vff  --user $USERNAME --passwd $PASSWORD || 
		echo Error extracting vff image | tee -a $REPORT

echo  comparing images | tee -a $REPORT
cmp $IMAGEDIR/mr_1.vff  mr_1.vff.unknown 

if [ $? != "0" ]
then
	echo input and output does not match | tee -a $REPORT
	NUM_FAIL=$(($NUM_FAIL + 1))
else
	echo input and output match | tee -a $REPORT
	NUM_SUC=$(($NUM_SUC + 1))
fi

echo dropping collections ... | tee -a $REPORT
$RASQL -q "drop collection tmp" --user $USERNAME --passwd $PASSWORD | tee -a $REPORT
rm mr_1.vff.unknown
################## hdf() and inv_hdf() #######################


echo ------hdf and inv_hdf conversion------ | tee -a $REPORT
echo creating collection ... | tee -a $REPORT
$RASQL -q "create collection tmp  GreySet" --user $USERNAME --passwd $PASSWORD || echo Error creating collection tmp | tee -a $REPORT

echo inserting collection ... | tee -a $REPORT
$RASQL -q 'insert into tmp  values inv_hdf($1)' -f $IMAGEDIR/mr_1.hdf --user $USERNAME --passwd $PASSWORD || echo Error inserting hdf4 image | tee -a $REPORT

echo extracting collection ... | tee -a $REPORT
$RASQL -q "select hdf(a) from tmp as a" --out file --outfile mr_1.hdf --user $USERNAME --passwd $PASSWORD || 
		echo Error extracting hdf4 image | tee -a $REPORT

echo  comparing images | tee -a $REPORT
cmp $IMAGEDIR/mr_1.hdf mr_1.hdf.unknown 

if [ $? != "0" ]
then
	echo input and output does not match | tee -a $REPORT
	NUM_FAIL=$(($NUM_FAIL + 1))
else
	echo input and output match | tee -a $REPORT
	NUM_SUC=$(($NUM_SUC + 1))
fi

echo dropping collections ... | tee -a $REPORT
$RASQL -q "drop collection tmp" --user $USERNAME --passwd $PASSWORD | tee -a $REPORT
rm mr_1.hdf.unknown
################## Dem() and inv_dem() #######################


# echo ------dem and inv_dem conversion------ | tee -a $REPORT
# echo creating collection ... | tee -a $REPORT
# $RASQL -q "create collection tmp  GreySet" --user $USERNAME --passwd $PASSWORD || echo Error creating collection tmp | tee -a $REPORT

# echo inserting collection ... | tee -a $REPORT
# $RASQL -q 'insert into tmp  values inv_dem($1)' -f $IMAGEDIR/mr_1.dem --user $USERNAME --passwd $PASSWORD || echo Error inserting dem image | tee -a $REPORT

# echo extracting collection ... | tee -a $REPORT
# $RASQL -q "select dem(a) from tmp as a" --out file --outfile mr_1.dem --user $USERNAME --passwd $PASSWORD || 
#		echo Error extracting dem image | tee -a $REPORT

# echo  comparing images | tee -a $REPORT
# cmp $IMAGEDIR/mr_1.dem mr_1.dem.unknown 

# if [ $? != "0" ]
# then
#	echo input and output does not match | tee -a $REPORT
# 	NUM_FAIL=$(($NUM_FAIL + 1))
# else
# 	echo input and output match | tee -a $REPORT
#	NUM_SUC=$(($NUM_SUC + 1))
# fi

# echo dropping collections ... | tee -a $REPORT
# $RASQL -q "drop collection tmp" --user $USERNAME --passwd $PASSWORD | tee -a $REPORT
rm mr_1.dem.unknown
################## tor() and inv_tor() #######################


# echo ------tor and inv_tor conversion------ | tee -a $REPORT
# echo creating collection ... | tee -a $REPORT
# $RASQL -q "create collection tmp  GreySet" --user $USERNAME --passwd $PASSWORD || echo Error creating collection tmp | tee -a $REPORT

# echo inserting collection ... | tee -a $REPORT
# $RASQL -q 'insert into tmp  values inv_tor($1)' -f $IMAGEDIR/mr_1.tor --user $USERNAME --passwd $PASSWORD || echo Error inserting tor image | tee -a $REPORT

# echo extracting collection ... | tee -a $REPORT
# $RASQL -q 'select tor(a) from tmp as a' --out file --outfile mr_1.tor  --user $USERNAME --passwd $PASSWORD || 
#		echo Error extracting tor image | tee -a $REPORT

# echo  comparing images | tee -a $REPORT
# cmp $IMAGEDIR/mr_1.tor  mr_1.tor.unknown 

# if [ $? != "0" ]
# then
#	echo input and output does not match | tee -a $REPORT
#	NUM_FAIL=$(($NUM_FAIL + 1))
# else
#	echo input and output match | tee -a $REPORT
#	NUM_SUC=$(($NUM_SUC + 1))
# fi

# echo dropping collections ... | tee -a $REPORT
# $RASQL -q "drop collection tmp" --user $USERNAME --passwd $PASSWORD | tee -a $REPORT
rm mr_1.tor.unknown

################# summary #######################
  NUM_TOTAL=$(($NUM_SUC + $NUM_FAIL))
# Print the summary
  echo "test done at "`date`|tee -a $REPORT
  echo "Total conversions: "$NUM_TOTAL|tee -a $REPORT
  echo "Successful conversion number: "$NUM_SUC|tee -a $REPORT
  echo "Failed conversion number: "$NUM_FAIL|tee -a $REPORT
  echo "Detail test report is in "$REPORT