<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#!/usr/bin/env python
###############################################################################
# $Id$
#
# Project:  GDAL/OGR Test Suite
# Purpose:  rasdaman Testing.
# Author:   Even Rouault, &lt;even dot rouault at mines dash paris dot org&gt;
#
###############################################################################
# Copyright (c) 2010, Even Rouault &lt;even dot rouault at mines-paris dot org&gt;
# 
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
# 
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
###############################################################################

import os
import sys
from osgeo import gdal

sys.path.append( '../pymod' )

import gdaltest

#
# The rasdaman DB must be created like this :
# cd $RASDAMAN_INSTALL_DIR/bin
# ./create_db.sh  (Note that the current user should have rights for creating a postgres database)
# ./start_rasdaman.sh
# ./insertdemo.sh localhost 7001 $RASDAMAN_INSTALL_DIR/share/rasdaman/examples/images rasadmin rasadmin

###############################################################################
# 
def rasdaman_1():
    try:
        gdaltest.rasdamanDriver = gdal.GetDriverByName('RASDAMAN')
    except:
        gdaltest.rasdamanDriver = None

    if gdaltest.rasdamanDriver is None:
        return 'skip'

    try:
        ds = gdal.Open( "rasdaman:query='select a[$x_lo:$x_hi,$y_lo:$y_hi] from rgb as a'" )
    except:
        gdaltest.rasdamanDriver = None

    if ds is None:
        gdaltest.rasdamanDriver = None

    if gdaltest.rasdamanDriver is None:
        return 'skip'

    cs = ds.GetRasterBand(1).Checksum()
    if cs != 61774:
        gdaltest.post_reason('did not get expected checksum')
        return 'fail'

    return 'success'
    

###############################################################################
# Test opening a non existing collection
def rasdaman_2():
    if gdaltest.rasdamanDriver is None:
        return 'skip'

    ds = gdal.Open(  "rasdaman:query='select a[$x_lo:$x_hi,$y_lo:$y_hi] from notexisting as a'" )
    if ds is None:
        return 'success'
    else:
        return 'fail'

###############################################################################
# Test syntax error
def rasdaman_3():
    if gdaltest.rasdamanDriver is None:
        return 'skip'

    ds = gdal.Open(  "rasdaman:query='select'" )
    if ds is None:
        return 'success'
    else:
        return 'fail'

gdaltest_list = [
    rasdaman_1,
    rasdaman_2,
    rasdaman_3 ]

if __name__ == '__main__':

    gdaltest.setup_run( 'RASDAMAN' )

    gdaltest.run_tests( gdaltest_list )

    gdaltest.summarize()
</pre></body></html>