Skip to content
Snippets Groups Projects
common.bash 12.8 KiB
Newer Older
  • Learn to ignore specific revisions
  • 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 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546
    # author: Tomasz Pylak, 2007-09-27
    # Integration tests functions
    
    # ----------------------------- global constants
    
    TRUE=1
    FALSE=0
    
    # all paths are relative to the template directory
    TEMPLATE=templates
    TARGETS=targets
    TEST_DATA=testData
    WORK=$TARGETS/playground
    INSTALL=$TARGETS/install
    LOCAL_PROJECTS=..
    
    OPENBIS_SERVER_NAME=openBIS-server
    OPENBIS_SERVER=$WORK/$OPENBIS_SERVER_NAME
    
    ERR_LOG=$WORK/all_err_log.txt
    
    # ----------------------------- global state
    
    TEST_FAILED=false # working variable, if true then some tests failed
    
    # ----------------------------- assertions to check the tests results
    
    function init_log {
        rm -fr $ERR_LOG
    }
    
    function report_error {
        local msg=$@
    
        echo [ERROR] $msg | tee -a $ERR_LOG >&2
        TEST_FAILED="true"
    }
    
    function exit_if_assertion_failed {
        if [ "$TEST_FAILED" = "true" ]; then
    	report_error Test failed.
    	exit 1;
        else
    	echo [OK] Test was successful!
        fi
    }
    
    function assert_file_exists {
        local file=$1
        if [ ! -f "$file" ]; then
    	report_error File $file does not exist!  
        else
    	echo [OK] File $file exists
        fi
    }
    
    function assert_file_not_exists {
        local file=$1
        if [ -f "$file" ]; then
    	report_error File $file does exist although it should not!  
        else
    	echo [OK] File $file does not exists
        fi
    }
    
    function assert_same_inode {
        local file1=$1
        local file2=$2
        
        if [ $file1 -ef $file2 ]; then
            echo [OK] $file1 and $file2 have the same inode number.
        else
            report_error "$file1 and $file2 do not have the same inode number."
        fi
    }
    
    function assert_dir_exists {
        local DIR=$1
        if [ ! -d "$DIR" ]; then
    	report_error Directory \"$DIR\" does not exist!  
        else
    	echo [OK] Directory \"$DIR\" exists
        fi
    }
    
    function fatal_error {
        local MSG=$@
        report_error $MSG
        exit_if_assertion_failed
    }
    
    # remember to pass the parameter in quote marks
    function assert_file_exists_or_die {
        local F="$1"
        local files_num=`ls -1 $F 2> /dev/null | wc -l`
        if [ $files_num -gt 1 ]; then
    	fatal_error "One file expected for pattern $F, but more found: " $F
        else 
    	if [ ! -f $F ]; then
    	    fatal_error "No file matching pattern $F exists"
    	fi
        fi
    }
    
    function assert_dir_exists_or_die {
        local DIR=$1
        if [ ! -d $DIR ]; then
    	fatal_error "Directory $DIR does not exist!"
        fi
    }
    
    function assert_dir_empty {
        dir=$1
        is_empty_dir $dir
        empty=$?
        if [ $empty == 0 ]; then
    	report_error Directory \'$dir\' should be empty!
        fi
    }
    
    function assert_same_content {
        local expected_file=$1
        local actual_file=$2
        cmd="diff --exclude=\.svn -r $expected_file $actual_file"
        supress=`eval $cmd`
        is_different=$?
        if [ $is_different == 1 ]; then
            report_error "Different content in $expected_file (marked by '<') and $actual_file (marked by '>')"
            eval $cmd
        else
            echo "[OK] Same content in $expected_file and $actual_file"
        fi
    }
    
    function assert_equals {
        local message=$1
        local expected_text=$2
        local actual_text=$3
        if [ "$expected_text" != "$actual_text" ]; then
            report_error "$message: expected: <$expected_text> but was: <$actual_text>"
        fi
    }
    
    function assert_equals_as_in_file {
        local expected_text=$1
        local file_with_actual_text=$2
        
        assert_file_exists $file_with_actual_text
        assert_equals "Content of file $file_with_actual_text" "$expected_text" "`cat $file_with_actual_text`"
    }
    
    function assert_pattern_present {
      local file=$1
      local occurences=$2
      local pattern=$3
    
      assert_file_exists $file
      echo Matched lines: 
      cat $file | grep "$pattern"  
      local lines=`cat $file | grep "$pattern" | wc -l`
      if [ $lines != $occurences ]; then
    	report_error $lines instead of $occurences occurences of pattern $pattern found!
      else
    	echo [OK] $occurences occurences of pattern $pattern found
      fi 
    }
    
    function assert_files_number {
    	local dir=$1
    	local expected_files_count=$2
    	
    	local files_count=`ls -1 $dir | wc -l`
    	assert_equals "Wrong number of files in $dir directory" $expected_files_count $files_count
    }
    
    
    # -----------------------------
    # Scripts to build and install components needed in integration tests.
    #
    # Implementation assumptions:
    # - the current directory after calling a function does not change
    # -----------------------------
    
    # ----------------------------- configuration
    
    BIN_PATHS="/opt/local/bin /usr/bin /usr/sbin"
    USER=`whoami`
    DATABASE=openbis_integration_test
    
    # --------------------------- build distributions from sources
    
    # Replaces the ':' in $PATH with ' '.
    function get_env_path {
        echo $PATH | tr ":" " "
    }
    
    # Looks for a specified executable in environment paths and
    # paths given as a parameter (space separated).
    function locate_file {
        local file=$1
        shift
        local additional_paths=$@
        for dir in `get_env_path` $additional_paths; do 
    	local full_path=$dir/$file
    	if [ -x $full_path ]; then
        	    echo $full_path;
    	    return
    	fi 
        done
    }
    
    function run_svn {
        `locate_file svn $BIN_PATHS` $@
    }
    
    function run_lsof {
        `locate_file lsof $BIN_PATHS` $@
    }
    
    # Tries to find PostgreSQL executable and returns its absolute path.
    # If not found, then exits the script with an appropriate error message.
    function run_psql {
    	for prg in psql psql84 psql83; do
    		exe=`locate_file $prg $BIN_PATHS`
    		if [ $exe ]; then
    			echo $exe
    			return
    		fi
    	done
    	echo "Cannot find PostgreSQL"
    	echo "This executable is needed to run the integration tests"
    	exit 1
    }
    
    function build_zips {
        build_dss=$1
        build_dmv=$2
        build_openbis=$3
        use_local_source=$4
    
        if [ $build_dss == "true" -o $build_dmv == "true" -o $build_openbis == "true" ]; then
            mkdir -p $INSTALL
    		if [ "$use_local_source" = "true" ]; then
        		build_zips_from_local $build_dss $build_dmv $build_openbis
        	else
    	    	build_zips_from_svn $build_dss $build_dmv $build_openbis
    		fi
        else
    		echo "No components to build were specified (--help explains how to do this)."
    		echo "Build process skipped."
        fi
        assert_file_exists_or_die "$INSTALL/openBIS*.zip"
        assert_file_exists_or_die "$INSTALL/datastore_server*.zip"
        assert_file_exists_or_die "$INSTALL/datamover*.zip"
    
    }
    
    function build_zips_from_local {
        build_dss=$1
        build_dmv=$2
        build_openbis=$3
    
        build_components build_local $build_dss $build_dmv $build_openbis
    }
    
    function build_local {
        local PROJECT_NAME=$1
        $LOCAL_PROJECTS/$PROJECT_NAME/build/antrun.sh
        local dir=$LOCAL_PROJECTS/$PROJECT_NAME/targets/dist/
        mv $dir/*.zip $INSTALL
        mv $dir/*.jar $INSTALL
    }
    
    function build_components {
        build_cmd=$1
        build_dss=$2
        build_dmv=$3
        build_openbis=$4
    
        if [ $build_dss == "true" ]; then
    	rm -f $INSTALL/datastore_server*.zip
    	rm -f $INSTALL/datastore_server*.jar
            $build_cmd datastore_server
            $build_cmd rtd_yeastx
        fi
        if [ $build_dmv == "true" ]; then
    	rm -f $INSTALL/datamover*.zip
    	$build_cmd datamover
        fi
        if [ $build_openbis == "true" ]; then
    	rm -f $INSTALL/openBIS*.zip
            $build_cmd openbis
        fi
    }
    
    function build_remote {
        local RSC=$1
        local PROJECT_NAME=$2
        
        cd $RSC
        ./build.sh $PROJECT_NAME
        cd ..
    }
    
    function build_zips_from_svn {
        build_dss=$1
        build_dmv=$2
        build_openbis=$3
    
        RSC=build_resources
        rm -fr $RSC
        run_svn checkout svn+ssh://svncisd.ethz.ch/repos/cisd/build_resources/trunk $RSC
        build_components "build_remote $RSC" $build_dss $build_dmv $build_openbis
        mv $RSC/*.zip $INSTALL
        rm -fr $RSC 
    }
    
    # -------------------------- installation
    
    # Recursively removes '.svn' directory in passed directory.
    function clean_svn {
        local DIR=$1
        for file in `find $DIR -name ".svn"`; do 
    	rm -fr $file; 
        done
    }
    
    function copy_templates {
        local template_dir=$1
        cp -fR $TEMPLATE/$template_dir $WORK
        clean_svn $WORK/$template_dir
    }
    
    function prepare {
        src=$1
        dest=$2
        rm -fr $WORK/$dest
        cp -R $WORK/$src $WORK/$dest
        copy_templates $dest
    }
    
    function unpack { # from ZIPS to BUILD
        local file_pattern=$1
        unzip -d $WORK $INSTALL/$file_pattern*.zip
    }
    
    function remove_unpacked {
        rm -fR $WORK/$1
    }
    
    function check_server_port {
        run_lsof -i -n -P | grep 8443
    }
    
    function wait_for_server {
        echo -n "Server starting"
        i=0; 
        while [ "`check_server_port`" == "" -a $i -lt 20 ]; do 
    	sleep 2; 
    	echo -n "."; 
    	let i=$i+1; 
        done
        if [ "`check_server_port`" == "" ]; then
    	report_error "Server could not be started!"
    	exit 1
        else
    	echo "...[Done]"
        fi
    }
    
    function install_openbis_server {
        local install_openbis=$1
        psql_cmd=`run_psql`
        $psql_cmd -U postgres -c "drop database $DATABASE"
        $psql_cmd -U postgres -c "create database $DATABASE with owner $USER template = template0 encoding = 'UNICODE'"
        $psql_cmd -U $USER -d $DATABASE -f $TEMPLATE/$OPENBIS_SERVER_NAME/test_database.sql
    
        if [ $install_openbis == "true" ]; then
            rm -fr $OPENBIS_SERVER
    	copy_templates $OPENBIS_SERVER_NAME
        
            unzip -d $OPENBIS_SERVER $INSTALL/openBIS*.zip
    	$OPENBIS_SERVER/openBIS-server/install.sh $PWD/$OPENBIS_SERVER $OPENBIS_SERVER/service.properties $OPENBIS_SERVER/openbis.conf
    	wait_for_server
        else
            copy_templates $OPENBIS_SERVER_NAME
            restart_openbis
        fi
    }
    
    
    function startup_openbis_server {
        call_in_dir bin/startup.sh $OPENBIS_SERVER/apache-tomcat
        wait_for_server
    }
    
    function shutdown_openbis_server {
        if [ "`check_server_port`" != "" ]; then
            $OPENBIS_SERVER/apache-tomcat/bin/shutdown.sh
        fi
    }
    
    # unpack everything, override default configuration with test configuation	
    function install_dsss {
        local install_dss=$1
        local dss_dirs="datastore_server1 datastore_server2 datastore_server_yeastx"
        if [ $install_dss == "true" ]; then
            unpack datastore_server
    	for dss_dir in $dss_dirs; do
        	    prepare datastore_server $dss_dir
    	done
    	remove_unpacked datastore_server
        else
    	for dss_dir in $dss_dirs; do
        	    copy_templates $dss_dir
    	done
        fi
    }
    
    function install_datamovers {
        local install_dmv=$1
        if [ $install_dmv == "true" ]; then
            unpack datamover
    		prepare datamover datamover-raw
        	prepare datamover datamover-analysis
    		remove_unpacked datamover
    		cp -fR $TEMPLATE/dummy-img-analyser $WORK
    		copy_templates datamover-raw
    		copy_templates datamover-analysis
        else 
    		copy_templates datamover-raw
    		copy_templates datamover-analysis
        fi
    }
    
    function restart_openbis {
        assert_dir_exists_or_die $OPENBIS_SERVER
        shutdown_openbis_server
        sleep 1
        startup_openbis_server
        sleep 4
    }
    
    function install {
        local install_dss=$1
        local install_dmv=$2
        local install_openbis=$3
        local reinstall_all=$4
    
        mkdir -p $WORK
        if [ $reinstall_all == "true" ];then
    	    install_dsss "true"
    	    install_datamovers "true"
    	    install_openbis_server "true"
        else
    	    install_dsss $install_dss
    	    install_datamovers $install_dmv
    	    install_openbis_server $install_openbis
        fi
    }
    
    
    # ----------------------------- general
    
    # calls $cmd script, changing directory to $dir
    function call_in_dir {
        cmd=$1
        dir=$2
        
        prev=$PWD
        cd $dir
        sh $cmd
        cd $prev
    }
    
    function is_empty_dir {
        dir=$1
        if [ "`ls $dir`" = "" ]; then
    	return 1;
        else
    	return 0;
        fi
    }
    
    # ----------------------- Launching 
    
    function chmod_exec {
        for file in $@; do
            if [ -f $file ]; then
    	    chmod u+x $file
    	fi
        done 
    }
    
    
    function switch_sth {
        switch_on=$1 # on/off
        dir=$WORK/$2
        cmd_start=$3
        cmd_stop=$4
        report_error=$5
    
        assert_dir_exists_or_die $dir
        chmod_exec $dir/$cmd_start
        chmod_exec $dir/$cmd_stop
    
        if [ "$switch_on" == "on" ]; then
    	echo "Launching $dir..."
    	rm -fr $dir/log/*
    	call_in_dir "$cmd_start" $dir
        else
    	echo "Stopping $dir, displaying errors from the log"
    	if [ "`cat $dir/log/* | grep ERROR | tee -a $ERR_LOG`" != "" ]; then
    	    if [ $report_error -eq $TRUE ]; then
    	        report_error $dir reported errors.
    	        cat $dir/log/* | grep ERROR >&2    
    	    fi
    	fi
    	call_in_dir "$cmd_stop" $dir
        fi
    }
    
    
    function switch_dss {
        switch_sth $1 $2 "datastore_server.sh start" "datastore_server.sh stop" $FALSE
    }
    
    function switch_dmv {
        switch_sth $1 $2 "datamover.sh start" "datamover.sh stop" $TRUE
    }
    
    function assert_dss_registration {
        local dss=$1
        echo ==== assert registration of DSS $dss ====
        assert_pattern_present $WORK/$dss/log/datastore_server_log.txt 1 getVersion
    }
    
    function build_and_install {
        install_dss=$1
        install_dmv=$2
        install_openbis=$3
        use_local_source=$4
        reinstall_all=$5
        
        init_log
        # NOTE: Comment this line if you want to use different libraries.
    
    tpylak's avatar
    tpylak committed
        build_zips $install_dss $install_dmv $install_openbis $use_local_source
    
        
        # Prepare empty incoming data
        DATA=$WORK/data
        rm -fr $DATA
        mkdir -p $DATA
        cp -R $TEMPLATE/data $WORK
        clean_svn $DATA
    
        install $install_dss $install_dmv $install_openbis $reinstall_all
    }
    
    function clean_after_tests {
        echo "Cleaning $INSTALL..."
        rm -fr $INSTALL
        echo "Cleaning $WORK..."
        rm -fr $WORK
    }