From 4f87cb519bb89dcfe019da18a099f23be8f6c136 Mon Sep 17 00:00:00 2001 From: Abhijit Rakas Date: Mon, 3 Dec 2018 16:50:26 +0530 Subject: [PATCH 01/14] Add more behat test suits --- features/site.feature | 107 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 105 insertions(+), 2 deletions(-) diff --git a/features/site.feature b/features/site.feature index f996305..3e4bece 100644 --- a/features/site.feature +++ b/features/site.feature @@ -17,6 +17,13 @@ Feature: Site Command usage: ee site """ + Scenario: Check site create sub command is present + When I run 'bin/ee site create' + Then STDOUT should return exactly + """ + usage: ee site create [--ssl=] [--wildcard] [--type=] [--skip-status-check] + """ + Scenario: Create wp site successfully When I run 'bin/ee site create wp.test --type=wp' Then After delay of 5 seconds @@ -26,7 +33,7 @@ Feature: Site Command | header | | HTTP/1.1 200 OK | - Scenario: Create wp site successfully + Scenario: Create wp cache site successfully When I run 'bin/ee site create wpcache.test --type=wp --cache' Then After delay of 5 seconds And The site 'wpcache.test' should have webroot @@ -34,7 +41,7 @@ Feature: Site Command And Request on 'wpcache.test' should contain following headers: | header | | HTTP/1.1 200 OK | - + Scenario: Create wpsubdir site successfully When I run 'bin/ee site create wpsubdir.test --type=wp --mu=subdir' And I create subsite '1' in 'wpsubdir.test' @@ -67,6 +74,102 @@ Feature: Site Command wpsubdom.test """ + Scenario: Check site disable sub command is present + When I run 'bin/ee site disable' + Then STDERR should return something like + """ + Error: Could not find the site you wish to run site disable command on. + Either pass it as an argument: `ee site disable ` + or run `ee site disable` from inside the site folder. + """ + + Scenario: Disable the site + When I run 'bin/ee site disable wp.test' + Then STDOUT should return exactly + """ + Disabling site wp.test. + Success: Site wp.test disabled. + """ + And Request on 'wp.test' should contain following headers: + | header | + | HTTP/1.1 503 Service Temporarily Unavailable | + + Scenario: Check site reload sub command is present + When I run 'bin/ee site reload' + Then STDERR should return something like + """ + Error: Could not find the site you wish to run site reload command on. + Either pass it as an argument: `ee site reload ` + or run `ee site reload` from inside the site folder. + """ + + Scenario: Reload site services + When I run 'bin/ee site reload wp.test' + Then STDERR should return something like + """ + Error: Site wp.test is not enabled. Use `ee site enable wp.test` to enable it. + """ + + Scenario: Check site enable sub command is present + When I run 'bin/ee site enable' + Then STDERR should return something like + """ + Error: Could not find the site you wish to run site enable command on. + Either pass it as an argument: `ee site enable ` + or run `ee site enable` from inside the site folder. + """ + + Scenario: Enable the site + When I run 'bin/ee site enable wp.test' + Then STDOUT should return exactly + """ + Enabling site wp.test. + Success: Site wp.test enabled. + Running post enable configurations. + Starting site's services. + Success: Post enable configurations complete. + """ + And Request on 'wp.test' should contain following headers: + | header | + | HTTP/1.1 200 OK | + + Scenario: Check site info sub command is present + When I run 'bin/ee site info' + Then STDERR should return something like + """ + Error: Could not find the site you wish to run site info command on. + Either pass it as an argument: `ee site info ` + or run `ee site info` from inside the site folder. + """ + + Scenario: Details of the site uing site info command + When I run 'bin/ee site info wp.test' + Then STDOUT should return something like + """ + | Site | http://wp.test + """ + + Scenario: Reload site services + When I run 'bin/ee site reload wp.test' + Then STDOUT should return something like + """ + Reloading nginx + """ + + Scenario: Reload site nginx services + When I run 'bin/ee site reload wp.test --nginx' + Then STDOUT should return something like + """ + Reloading nginx + """ + + Scenario: Check site delete sub command is present + When I run 'bin/ee site delete' + Then STDOUT should return exactly + """ + usage: ee site delete [--yes] + """ + Scenario: Delete the sites When I run 'bin/ee site delete wp.test --yes' Then STDOUT should return something like From 602359c4364e13428280499ed251ff5109d6376a Mon Sep 17 00:00:00 2001 From: Abhijit Rakas Date: Mon, 3 Dec 2018 16:57:40 +0530 Subject: [PATCH 02/14] Remove file as we don't testing ssl sites --- ci/add-test-certs.sh | 106 ------------------------------------------- 1 file changed, 106 deletions(-) delete mode 100755 ci/add-test-certs.sh diff --git a/ci/add-test-certs.sh b/ci/add-test-certs.sh deleted file mode 100755 index 54c4bd0..0000000 --- a/ci/add-test-certs.sh +++ /dev/null @@ -1,106 +0,0 @@ -#!/usr/bin/env bash -sudo mkdir -p /opt/easyengine/nginx/certs - -cat < Date: Mon, 3 Dec 2018 17:04:19 +0530 Subject: [PATCH 03/14] Remove file require from travis config file --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b32f5a1..314fa3f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,7 +17,6 @@ before_script: echo "xdebug.ini does not exist" fi - ./ci/prepare.sh - - ./ci/add-test-certs.sh script: - cd "$TRAVIS_BUILD_DIR/../easyengine" From a4e6b1f14dfba9564e49afa4e28ca8ddc6f5cd5b Mon Sep 17 00:00:00 2001 From: Abhijit Rakas Date: Mon, 10 Dec 2018 18:21:33 +0530 Subject: [PATCH 04/14] Add behat tests for redis and database for both local and global options --- features/bootstrap/FeatureContext.php | 30 +++++++++++++++++++++++++++ features/site.feature | 30 +++++++++++++++++++++++++++ 2 files changed, 60 insertions(+) diff --git a/features/bootstrap/FeatureContext.php b/features/bootstrap/FeatureContext.php index cb07d22..0d25f8d 100644 --- a/features/bootstrap/FeatureContext.php +++ b/features/bootstrap/FeatureContext.php @@ -405,6 +405,9 @@ public static function cleanup(AfterFeatureScope $scope) 'www.example3.test', 'labels.test', 'wpcache.test', + 'wp-local-db.test', + 'wp-local-redis.test', + 'wp-local-db-redis.test' ]; $result = EE::launch( 'sudo bin/ee site list --format=text',false, true ); @@ -422,4 +425,31 @@ public static function cleanup(AfterFeatureScope $scope) unlink('ee-old.phar'); } } + + /** + * @Then Check global redis cache for :site + */ + public function checkGlobalRedisCacheOfSite($site) + { + exec("docker exec -it ee-global-redis redis-cli set 'easyengine' 'rock'"); + $output = exec("docker exec -it ee-global-redis redis-cli get 'easyengine'"); + if ( '"rock"' !== $output ) { + throw new Exception("Global redis not working for $site site. Getting '$output' instead of 'rock'"); + } + exec("docker exec -it ee-global-redis redis-cli del 'easyengine'"); + } + + /** + * @Then Check local redis cache for :site + */ + public function checkLocalRedisCacheOfSite($site) + { + $site_root_folder = EE_SITE_ROOT . '/' . $site; + exec("cd $site_root_folder && docker-compose exec redis redis-cli set 'easyengine' 'rock'"); + $output = exec("cd $site_root_folder && docker-compose exec redis redis-cli get 'easyengine'"); + if ( '"rock"' !== $output ) { + throw new Exception("Local redis not working for $site site. Getting '$output' instead of 'rock'."); + } + exec("cd $site_root_folder && docker-compose exec redis redis-cli del 'easyengine'"); + } } diff --git a/features/site.feature b/features/site.feature index 3e4bece..4294709 100644 --- a/features/site.feature +++ b/features/site.feature @@ -188,3 +188,33 @@ Feature: Site Command | db | | redis | | phpmyadmin | + + Scenario: Create WordPress site with local DB and global redis + When I run 'bin/ee site create wp-local-db.test --cache --type=wp --local-db' + Then After delay of 5 seconds + And The site 'wp-local-db.test' should have webroot + And The site 'wp-local-db.test' should have WordPress + And Request on 'wp-local-db.test' should contain following headers: + | header | + | HTTP/1.1 200 OK | + And Check global redis cache for 'wp-local-db.test' + + Scenario: Create WordPress site with local redis and global db + When I run 'bin/ee site create wp-local-redis.test --cache --type=wp --with-local-redis' + Then After delay of 5 seconds + And The site 'wp-local-redis.test' should have webroot + And The site 'wp-local-redis.test' should have WordPress + And Request on 'wp-local-redis.test' should contain following headers: + | header | + | HTTP/1.1 200 OK | + And Check local redis cache for 'wp-local-redis.test' + + Scenario: Create WordPress site with local DB and local redis + When I run 'bin/ee site create wp-local-db-redis.test --cache --type=wp --local-db --with-local-redis' + Then After delay of 5 seconds + And The site 'wp-local-db-redis.test' should have webroot + And The site 'wp-local-db-redis.test' should have WordPress + And Request on 'wp-local-db-redis.test' should contain following headers: + | header | + | HTTP/1.1 200 OK | + And Check local redis cache for 'wp-local-db-redis.test' From cb6540946bb82bb7451fc274d1b8d63e003b0ccd Mon Sep 17 00:00:00 2001 From: Abhijit Rakas Date: Fri, 14 Dec 2018 16:08:11 +0530 Subject: [PATCH 05/14] Add remote DB behat test --- .travis.yml | 3 +++ features/bootstrap/FeatureContext.php | 13 ++++++++----- features/site.feature | 26 +++++++++++++++++++++++--- 3 files changed, 34 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 314fa3f..60d9b8d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -38,3 +38,6 @@ addons: apt: packages: - docker-ce + +services: + - mysql diff --git a/features/bootstrap/FeatureContext.php b/features/bootstrap/FeatureContext.php index 0d25f8d..32ed58f 100644 --- a/features/bootstrap/FeatureContext.php +++ b/features/bootstrap/FeatureContext.php @@ -407,7 +407,9 @@ public static function cleanup(AfterFeatureScope $scope) 'wpcache.test', 'wp-local-db.test', 'wp-local-redis.test', - 'wp-local-db-redis.test' + 'wp-local-db-redis.test', + 'wp-remote-db-local-redis.test', + ]; $result = EE::launch( 'sudo bin/ee site list --format=text',false, true ); @@ -431,9 +433,9 @@ public static function cleanup(AfterFeatureScope $scope) */ public function checkGlobalRedisCacheOfSite($site) { - exec("docker exec -it ee-global-redis redis-cli set 'easyengine' 'rock'"); + exec("docker exec -it ee-global-redis redis-cli set 'easyengine' 'rocks'"); $output = exec("docker exec -it ee-global-redis redis-cli get 'easyengine'"); - if ( '"rock"' !== $output ) { + if ( '"rocks"' !== $output ) { throw new Exception("Global redis not working for $site site. Getting '$output' instead of 'rock'"); } exec("docker exec -it ee-global-redis redis-cli del 'easyengine'"); @@ -445,11 +447,12 @@ public function checkGlobalRedisCacheOfSite($site) public function checkLocalRedisCacheOfSite($site) { $site_root_folder = EE_SITE_ROOT . '/' . $site; - exec("cd $site_root_folder && docker-compose exec redis redis-cli set 'easyengine' 'rock'"); + exec("cd $site_root_folder && docker-compose exec redis redis-cli set 'easyengine' 'rocks'"); $output = exec("cd $site_root_folder && docker-compose exec redis redis-cli get 'easyengine'"); - if ( '"rock"' !== $output ) { + if ( '"rocks"' !== $output ) { throw new Exception("Local redis not working for $site site. Getting '$output' instead of 'rock'."); } exec("cd $site_root_folder && docker-compose exec redis redis-cli del 'easyengine'"); } + } diff --git a/features/site.feature b/features/site.feature index 4294709..cafa547 100644 --- a/features/site.feature +++ b/features/site.feature @@ -191,7 +191,7 @@ Feature: Site Command Scenario: Create WordPress site with local DB and global redis When I run 'bin/ee site create wp-local-db.test --cache --type=wp --local-db' - Then After delay of 5 seconds + Then After delay of 2 seconds And The site 'wp-local-db.test' should have webroot And The site 'wp-local-db.test' should have WordPress And Request on 'wp-local-db.test' should contain following headers: @@ -201,7 +201,7 @@ Feature: Site Command Scenario: Create WordPress site with local redis and global db When I run 'bin/ee site create wp-local-redis.test --cache --type=wp --with-local-redis' - Then After delay of 5 seconds + Then After delay of 2 seconds And The site 'wp-local-redis.test' should have webroot And The site 'wp-local-redis.test' should have WordPress And Request on 'wp-local-redis.test' should contain following headers: @@ -211,10 +211,30 @@ Feature: Site Command Scenario: Create WordPress site with local DB and local redis When I run 'bin/ee site create wp-local-db-redis.test --cache --type=wp --local-db --with-local-redis' - Then After delay of 5 seconds + Then After delay of 2 seconds And The site 'wp-local-db-redis.test' should have webroot And The site 'wp-local-db-redis.test' should have WordPress And Request on 'wp-local-db-redis.test' should contain following headers: | header | | HTTP/1.1 200 OK | And Check local redis cache for 'wp-local-db-redis.test' + + Scenario: Create WordPress site with remote DB and local redis + When I run 'bin/ee site create wp-remote-db-local-redis.test --cache --type=wp --dbuser="root" --dbpass="" --dbhost="localhost" --with-local-redis' + Then After delay of 2 seconds + And The site 'wp-remote-db-local-redis.test' should have webroot + And The site 'wp-remote-db-local-redis.test' should have WordPress + And Request on 'wp-remote-db-local-redis.test' should contain following headers: + | header | + | HTTP/1.1 200 OK | + And Check local redis cache for 'wp-remote-db-local-redis.test' + + Scenario: Create WordPress site with remote DB and global redis + When I run 'bin/ee site create wp-remote-db-global-redis.test --cache --type=wp --dbuser="travis" --dbpass="" --dbhost="127.0.01"' + Then After delay of 2 seconds + And The site 'wp-remote-db-global-redis.test' should have webroot + And The site 'wp-remote-db-global-redis.test' should have WordPress + And Request on 'wp-remote-db-global-redis.test' should contain following headers: + | header | + | HTTP/1.1 200 OK | + And Check local redis cache for 'wp-remote-db-global-redis.test' From 2ae808a75bbd8b9703505778ee2d9c2dbbd592eb Mon Sep 17 00:00:00 2001 From: Abhijit Rakas Date: Fri, 14 Dec 2018 16:23:00 +0530 Subject: [PATCH 06/14] Modify db host --- features/bootstrap/FeatureContext.php | 1 + features/labels.feature | 20 ++++++++++++++++++++ features/site.feature | 20 -------------------- 3 files changed, 21 insertions(+), 20 deletions(-) diff --git a/features/bootstrap/FeatureContext.php b/features/bootstrap/FeatureContext.php index 32ed58f..b8470a0 100644 --- a/features/bootstrap/FeatureContext.php +++ b/features/bootstrap/FeatureContext.php @@ -409,6 +409,7 @@ public static function cleanup(AfterFeatureScope $scope) 'wp-local-redis.test', 'wp-local-db-redis.test', 'wp-remote-db-local-redis.test', + 'wp-remote-db-global-redis.test', ]; diff --git a/features/labels.feature b/features/labels.feature index f4cacf9..544e2f7 100644 --- a/features/labels.feature +++ b/features/labels.feature @@ -7,3 +7,23 @@ Feature: Container Labels """ io.easyengine.site=labels.test """ + + Scenario: Create WordPress site with remote DB and local redis + When I run 'bin/ee site create wp-remote-db-local-redis.test --cache --type=wp --dbuser="root" --dbpass="" --dbhost="localhost" --with-local-redis' + Then After delay of 2 seconds + And The site 'wp-remote-db-local-redis.test' should have webroot + And The site 'wp-remote-db-local-redis.test' should have WordPress + And Request on 'wp-remote-db-local-redis.test' should contain following headers: + | header | + | HTTP/1.1 200 OK | + And Check local redis cache for 'wp-remote-db-local-redis.test' + + Scenario: Create WordPress site with remote DB and global redis + When I run 'bin/ee site create wp-remote-db-global-redis.test --cache --type=wp --dbuser="travis" --dbpass="" --dbhost="127.0.0.1"' + Then After delay of 2 seconds + And The site 'wp-remote-db-global-redis.test' should have webroot + And The site 'wp-remote-db-global-redis.test' should have WordPress + And Request on 'wp-remote-db-global-redis.test' should contain following headers: + | header | + | HTTP/1.1 200 OK | + And Check local redis cache for 'wp-remote-db-global-redis.test' diff --git a/features/site.feature b/features/site.feature index cafa547..b4c31b7 100644 --- a/features/site.feature +++ b/features/site.feature @@ -218,23 +218,3 @@ Feature: Site Command | header | | HTTP/1.1 200 OK | And Check local redis cache for 'wp-local-db-redis.test' - - Scenario: Create WordPress site with remote DB and local redis - When I run 'bin/ee site create wp-remote-db-local-redis.test --cache --type=wp --dbuser="root" --dbpass="" --dbhost="localhost" --with-local-redis' - Then After delay of 2 seconds - And The site 'wp-remote-db-local-redis.test' should have webroot - And The site 'wp-remote-db-local-redis.test' should have WordPress - And Request on 'wp-remote-db-local-redis.test' should contain following headers: - | header | - | HTTP/1.1 200 OK | - And Check local redis cache for 'wp-remote-db-local-redis.test' - - Scenario: Create WordPress site with remote DB and global redis - When I run 'bin/ee site create wp-remote-db-global-redis.test --cache --type=wp --dbuser="travis" --dbpass="" --dbhost="127.0.01"' - Then After delay of 2 seconds - And The site 'wp-remote-db-global-redis.test' should have webroot - And The site 'wp-remote-db-global-redis.test' should have WordPress - And Request on 'wp-remote-db-global-redis.test' should contain following headers: - | header | - | HTTP/1.1 200 OK | - And Check local redis cache for 'wp-remote-db-global-redis.test' From f9dc92a8a97862335b6043a6c0e5fbcd04f0cf04 Mon Sep 17 00:00:00 2001 From: Abhijit Rakas Date: Fri, 14 Dec 2018 16:23:00 +0530 Subject: [PATCH 07/14] Modify db host --- .travis.yml | 2 ++ features/bootstrap/FeatureContext.php | 1 + features/labels.feature | 20 ++++++++++++++++++++ features/site.feature | 20 -------------------- 4 files changed, 23 insertions(+), 20 deletions(-) diff --git a/.travis.yml b/.travis.yml index 60d9b8d..17b8002 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,6 +17,8 @@ before_script: echo "xdebug.ini does not exist" fi - ./ci/prepare.sh + - ls -al /ets/mysql + - ls -al /ets/mysql/conf.d script: - cd "$TRAVIS_BUILD_DIR/../easyengine" diff --git a/features/bootstrap/FeatureContext.php b/features/bootstrap/FeatureContext.php index 32ed58f..b8470a0 100644 --- a/features/bootstrap/FeatureContext.php +++ b/features/bootstrap/FeatureContext.php @@ -409,6 +409,7 @@ public static function cleanup(AfterFeatureScope $scope) 'wp-local-redis.test', 'wp-local-db-redis.test', 'wp-remote-db-local-redis.test', + 'wp-remote-db-global-redis.test', ]; diff --git a/features/labels.feature b/features/labels.feature index f4cacf9..544e2f7 100644 --- a/features/labels.feature +++ b/features/labels.feature @@ -7,3 +7,23 @@ Feature: Container Labels """ io.easyengine.site=labels.test """ + + Scenario: Create WordPress site with remote DB and local redis + When I run 'bin/ee site create wp-remote-db-local-redis.test --cache --type=wp --dbuser="root" --dbpass="" --dbhost="localhost" --with-local-redis' + Then After delay of 2 seconds + And The site 'wp-remote-db-local-redis.test' should have webroot + And The site 'wp-remote-db-local-redis.test' should have WordPress + And Request on 'wp-remote-db-local-redis.test' should contain following headers: + | header | + | HTTP/1.1 200 OK | + And Check local redis cache for 'wp-remote-db-local-redis.test' + + Scenario: Create WordPress site with remote DB and global redis + When I run 'bin/ee site create wp-remote-db-global-redis.test --cache --type=wp --dbuser="travis" --dbpass="" --dbhost="127.0.0.1"' + Then After delay of 2 seconds + And The site 'wp-remote-db-global-redis.test' should have webroot + And The site 'wp-remote-db-global-redis.test' should have WordPress + And Request on 'wp-remote-db-global-redis.test' should contain following headers: + | header | + | HTTP/1.1 200 OK | + And Check local redis cache for 'wp-remote-db-global-redis.test' diff --git a/features/site.feature b/features/site.feature index cafa547..b4c31b7 100644 --- a/features/site.feature +++ b/features/site.feature @@ -218,23 +218,3 @@ Feature: Site Command | header | | HTTP/1.1 200 OK | And Check local redis cache for 'wp-local-db-redis.test' - - Scenario: Create WordPress site with remote DB and local redis - When I run 'bin/ee site create wp-remote-db-local-redis.test --cache --type=wp --dbuser="root" --dbpass="" --dbhost="localhost" --with-local-redis' - Then After delay of 2 seconds - And The site 'wp-remote-db-local-redis.test' should have webroot - And The site 'wp-remote-db-local-redis.test' should have WordPress - And Request on 'wp-remote-db-local-redis.test' should contain following headers: - | header | - | HTTP/1.1 200 OK | - And Check local redis cache for 'wp-remote-db-local-redis.test' - - Scenario: Create WordPress site with remote DB and global redis - When I run 'bin/ee site create wp-remote-db-global-redis.test --cache --type=wp --dbuser="travis" --dbpass="" --dbhost="127.0.01"' - Then After delay of 2 seconds - And The site 'wp-remote-db-global-redis.test' should have webroot - And The site 'wp-remote-db-global-redis.test' should have WordPress - And Request on 'wp-remote-db-global-redis.test' should contain following headers: - | header | - | HTTP/1.1 200 OK | - And Check local redis cache for 'wp-remote-db-global-redis.test' From 7318b249b5bcb2b3ab5466ddbb34b580c39323c0 Mon Sep 17 00:00:00 2001 From: Abhijit Rakas Date: Fri, 14 Dec 2018 17:23:32 +0530 Subject: [PATCH 08/14] Fix typo of mysql path --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 17b8002..c792190 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,8 @@ env: - TEST_COMMAND=$(echo $TRAVIS_REPO_SLUG | cut -d/ -f 2) # Get command name to be tested before_script: + - ls -al /etc/mysql + - ls -al /etc/mysql/conf.d - sudo curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose - | # Remove Xdebug for a huge performance increase: @@ -17,8 +19,6 @@ before_script: echo "xdebug.ini does not exist" fi - ./ci/prepare.sh - - ls -al /ets/mysql - - ls -al /ets/mysql/conf.d script: - cd "$TRAVIS_BUILD_DIR/../easyengine" From b897b819b91b6102ef6d36b50ae4ed08326c689b Mon Sep 17 00:00:00 2001 From: Abhijit Rakas Date: Fri, 14 Dec 2018 17:36:46 +0530 Subject: [PATCH 09/14] Add cat command to show mysql config --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index c792190..bd74003 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,8 +8,7 @@ env: - TEST_COMMAND=$(echo $TRAVIS_REPO_SLUG | cut -d/ -f 2) # Get command name to be tested before_script: - - ls -al /etc/mysql - - ls -al /etc/mysql/conf.d + - cat /etc/mysql/my.cnf - sudo curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose - | # Remove Xdebug for a huge performance increase: From 870c9b8982499daebf67516a78708166175b7351 Mon Sep 17 00:00:00 2001 From: Abhijit Rakas Date: Fri, 14 Dec 2018 18:01:36 +0530 Subject: [PATCH 10/14] Add bind address in travis ci mysql config --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index bd74003..7e01a11 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,8 @@ env: - TEST_COMMAND=$(echo $TRAVIS_REPO_SLUG | cut -d/ -f 2) # Get command name to be tested before_script: + - cat /etc/mysql/my.cnf + - sudo sed '/\/bind-address = 127.0.0.1\/i/bind-address = 0.0.0.0/’ /etc/mysql/my.cnf - cat /etc/mysql/my.cnf - sudo curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose - | From f1b17f937c8babac22f90fadaae3c5d9575e5750 Mon Sep 17 00:00:00 2001 From: Abhijit Rakas Date: Fri, 14 Dec 2018 18:06:05 +0530 Subject: [PATCH 11/14] Fix sed command --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7e01a11..3781176 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,9 +8,9 @@ env: - TEST_COMMAND=$(echo $TRAVIS_REPO_SLUG | cut -d/ -f 2) # Get command name to be tested before_script: - - cat /etc/mysql/my.cnf - - sudo sed '/\/bind-address = 127.0.0.1\/i/bind-address = 0.0.0.0/’ /etc/mysql/my.cnf - - cat /etc/mysql/my.cnf + - cat /etc/mysql/my.cnf | grep -i 'bind-address' + - sudo sed 's/^bind-address.*\/bind-address = 0.0.0.0/’ /etc/mysql/my.cnf + - cat /etc/mysql/my.cnf | grep -i 'bind-address' - sudo curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose - | # Remove Xdebug for a huge performance increase: From 20c69f20e97bb3bb62a5efd000cf9e9318ecf108 Mon Sep 17 00:00:00 2001 From: Abhijit Rakas Date: Fri, 14 Dec 2018 18:08:51 +0530 Subject: [PATCH 12/14] Fix sed command in travis ci --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3781176..46631f8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,7 @@ env: before_script: - cat /etc/mysql/my.cnf | grep -i 'bind-address' - - sudo sed 's/^bind-address.*\/bind-address = 0.0.0.0/’ /etc/mysql/my.cnf + - sudo sed -i 's/^bind-address.*/bind-address = "0.0.0.0"/' /etc/mysql/my.cnf - cat /etc/mysql/my.cnf | grep -i 'bind-address' - sudo curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose - | From c93bd8f2f65a0a680a8308a2ad0f2d6e7fb8f065 Mon Sep 17 00:00:00 2001 From: Abhijit Rakas Date: Fri, 14 Dec 2018 18:55:31 +0530 Subject: [PATCH 13/14] Add command to restart mysql after config edit --- .travis.yml | 1 + features/labels.feature | 20 -------------------- features/site.feature | 20 ++++++++++++++++++++ 3 files changed, 21 insertions(+), 20 deletions(-) diff --git a/.travis.yml b/.travis.yml index 46631f8..2d74957 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,6 +11,7 @@ before_script: - cat /etc/mysql/my.cnf | grep -i 'bind-address' - sudo sed -i 's/^bind-address.*/bind-address = "0.0.0.0"/' /etc/mysql/my.cnf - cat /etc/mysql/my.cnf | grep -i 'bind-address' + - sudo service mysql restart - sudo curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose - | # Remove Xdebug for a huge performance increase: diff --git a/features/labels.feature b/features/labels.feature index 544e2f7..f4cacf9 100644 --- a/features/labels.feature +++ b/features/labels.feature @@ -7,23 +7,3 @@ Feature: Container Labels """ io.easyengine.site=labels.test """ - - Scenario: Create WordPress site with remote DB and local redis - When I run 'bin/ee site create wp-remote-db-local-redis.test --cache --type=wp --dbuser="root" --dbpass="" --dbhost="localhost" --with-local-redis' - Then After delay of 2 seconds - And The site 'wp-remote-db-local-redis.test' should have webroot - And The site 'wp-remote-db-local-redis.test' should have WordPress - And Request on 'wp-remote-db-local-redis.test' should contain following headers: - | header | - | HTTP/1.1 200 OK | - And Check local redis cache for 'wp-remote-db-local-redis.test' - - Scenario: Create WordPress site with remote DB and global redis - When I run 'bin/ee site create wp-remote-db-global-redis.test --cache --type=wp --dbuser="travis" --dbpass="" --dbhost="127.0.0.1"' - Then After delay of 2 seconds - And The site 'wp-remote-db-global-redis.test' should have webroot - And The site 'wp-remote-db-global-redis.test' should have WordPress - And Request on 'wp-remote-db-global-redis.test' should contain following headers: - | header | - | HTTP/1.1 200 OK | - And Check local redis cache for 'wp-remote-db-global-redis.test' diff --git a/features/site.feature b/features/site.feature index b4c31b7..1817bb2 100644 --- a/features/site.feature +++ b/features/site.feature @@ -218,3 +218,23 @@ Feature: Site Command | header | | HTTP/1.1 200 OK | And Check local redis cache for 'wp-local-db-redis.test' + + Scenario: Create WordPress site with remote DB and local redis + When I run 'bin/ee site create wp-remote-db-local-redis.test --cache --type=wp --dbuser="root" --dbpass="" --dbhost="localhost" --with-local-redis' + Then After delay of 2 seconds + And The site 'wp-remote-db-local-redis.test' should have webroot + And The site 'wp-remote-db-local-redis.test' should have WordPress + And Request on 'wp-remote-db-local-redis.test' should contain following headers: + | header | + | HTTP/1.1 200 OK | + And Check local redis cache for 'wp-remote-db-local-redis.test' + + Scenario: Create WordPress site with remote DB and global redis + When I run 'bin/ee site create wp-remote-db-global-redis.test --cache --type=wp --dbuser="travis" --dbpass="" --dbhost="127.0.0.1"' + Then After delay of 2 seconds + And The site 'wp-remote-db-global-redis.test' should have webroot + And The site 'wp-remote-db-global-redis.test' should have WordPress + And Request on 'wp-remote-db-global-redis.test' should contain following headers: + | header | + | HTTP/1.1 200 OK | + And Check local redis cache for 'wp-remote-db-global-redis.test' From b8134c7e04e5602608a866c95e986ac7b1b2067b Mon Sep 17 00:00:00 2001 From: Abhijit Rakas Date: Mon, 17 Dec 2018 14:50:06 +0530 Subject: [PATCH 14/14] Fix redis check test --- features/site.feature | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/site.feature b/features/site.feature index 1817bb2..ee5f0d7 100644 --- a/features/site.feature +++ b/features/site.feature @@ -237,4 +237,4 @@ Feature: Site Command And Request on 'wp-remote-db-global-redis.test' should contain following headers: | header | | HTTP/1.1 200 OK | - And Check local redis cache for 'wp-remote-db-global-redis.test' + And Check global redis cache for 'wp-remote-db-global-redis.test'