From bba8b1e43b3a05a3155cbe2ee55ac026eed1d77d Mon Sep 17 00:00:00 2001 From: Shlomo Heigh Date: Thu, 9 May 2024 14:40:15 -0400 Subject: [PATCH] Add back all integration test cases --- tests/integration/features/integration.feature | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/tests/integration/features/integration.feature b/tests/integration/features/integration.feature index c35025f..9a905ad 100644 --- a/tests/integration/features/integration.feature +++ b/tests/integration/features/integration.feature @@ -14,10 +14,28 @@ Feature: Integrations Tests for remote TAS foundation Given I create an org and space And I install the buildpack + Scenario: Python offline buildpack integration + When I push a "python" app with the "offline" buildpack + Then the secrets.yml values are available in the app + Scenario: Ruby offline buildpack integration When I push a "ruby" app with the "offline" buildpack Then the secrets.yml values are available in the app + Scenario: Java offline buildpack integration + When I push a "java" app with the "offline" buildpack + Then the secrets.yml values are available in the app + + # The online buildpack tests are only valid if the latest commits + # are push to the Github remote branch. + Scenario: Python online buildpack integration + When I push a "python" app with the "online" buildpack + Then the secrets.yml values are available in the app + Scenario: Ruby online buildpack integration When I push a "ruby" app with the "online" buildpack Then the secrets.yml values are available in the app + + Scenario: Java online buildpack integration + When I push a "java" app with the "online" buildpack + Then the secrets.yml values are available in the app