#5 fix test to use beakerlib role
Merged 5 years ago by jorton. Opened 5 years ago by bgoncalv.
rpms/ bgoncalv/httpd fix-tests  into  master

@@ -29,7 +29,7 @@ 

  

  BUILT_FILES=

  

- FILES=$(METADATA) runtest.sh Makefile PURPOSE mysql.php php_mysql_test.sql php_mysql_test.conf

+ FILES=$(METADATA) runtest.sh Makefile PURPOSE new_mysql.php old_mysql.php php_mysql_test.sql php_mysql_test.conf

  

  .PHONY: all install download clean

  

@@ -57,7 +57,7 @@ 

          rlRun "rm -rvf $httpROOTDIR/php_mysql_test"

          rlRun "mkdir -v $httpROOTDIR/php_mysql_test"

          rlRun "cp -v php_mysql_test.conf $httpCONFDIR/conf.d/"

-         rlRun "php_version=`rlCheckRpm php`"

+         php_version=`rlCheckRpm php`

          if [[ $php_version =~ php-7* ]] || [[ $php_version =~ php-5.[5-6]* ]]; then

              rlRun "cp -v new_mysql.php $httpROOTDIR/php_mysql_test/mysql.php"

          else

file modified
+1 -4
@@ -1,13 +1,10 @@ 

  ---

  # Tests that run in all contexts

  - hosts: localhost

-   vars:

-     use_beakerlib_libraries: true

    roles:

-   - role: standard-test-rhts

+   - role: standard-test-beakerlib

      tags:

      - classic

-     - container

      tests:

      - httpd-php-mysql-sanity-test

      required_packages:

  1. standard-test-roles dropped support to rhts role, so we need to replace with beakerlib role that now support beakerlib-libraries
  2. httpd requires services and this does not work on container, so it got removed from tests.yml

Pull-Request has been merged by jorton

5 years ago