-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #91 from christophd/issue/90/inject-env-vars
fix(#90): Inject environment variables as test variables before scenario
- Loading branch information
Showing
7 changed files
with
174 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
java/steps/yaks-http/src/test/resources/org/citrusframework/yaks/http/http.client.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
76 changes: 76 additions & 0 deletions
76
java/steps/yaks-standard/src/main/java/org/citrusframework/yaks/hooks/InjectEnvVarsHook.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.citrusframework.yaks.hooks; | ||
|
||
import java.util.Optional; | ||
|
||
import com.consol.citrus.TestCaseRunner; | ||
import com.consol.citrus.actions.AbstractTestAction; | ||
import com.consol.citrus.annotations.CitrusResource; | ||
import com.consol.citrus.context.TestContext; | ||
import io.cucumber.java.Before; | ||
import io.cucumber.java.Scenario; | ||
|
||
/** | ||
* Cucumber hook injects environment variables as test variables before the scenario is executed. | ||
* @author Christoph Deppisch | ||
*/ | ||
public class InjectEnvVarsHook { | ||
|
||
public static final String DEFAULT_DOMAIN_SUFFIX = ".svc.cluster.local"; | ||
public static final String CLUSTER_WILDCARD_DOMAIN = "CLUSTER_WILDCARD_DOMAIN"; | ||
public static final String YAKS_NAMESPACE = "YAKS_NAMESPACE"; | ||
|
||
@CitrusResource | ||
private TestCaseRunner runner; | ||
|
||
@Before | ||
public void injectEnvVars(Scenario scenario) { | ||
runner.run(new AbstractTestAction() { | ||
@Override | ||
public void doExecute(TestContext context) { | ||
if (scenario != null) { | ||
context.setVariable("SCENARIO_ID", scenario.getId()); | ||
context.setVariable("SCENARIO_NAME", scenario.getName()); | ||
} | ||
|
||
Optional<String> namespaceEnv = getEnvSetting(YAKS_NAMESPACE); | ||
Optional<String> domainEnv = getEnvSetting(CLUSTER_WILDCARD_DOMAIN); | ||
|
||
if (namespaceEnv.isPresent()) { | ||
context.setVariable(YAKS_NAMESPACE, namespaceEnv.get()); | ||
|
||
if (!domainEnv.isPresent()) { | ||
context.setVariable(CLUSTER_WILDCARD_DOMAIN, namespaceEnv.get() + DEFAULT_DOMAIN_SUFFIX); | ||
} | ||
} | ||
|
||
domainEnv.ifPresent(var -> context.setVariable(CLUSTER_WILDCARD_DOMAIN, var)); | ||
} | ||
}); | ||
} | ||
|
||
/** | ||
* Read environment setting. If setting is not present default to empty value. | ||
* @param name | ||
* @return | ||
*/ | ||
protected Optional<String> getEnvSetting(String name) { | ||
return Optional.ofNullable(System.getenv(name)); | ||
} | ||
} |
78 changes: 78 additions & 0 deletions
78
...eps/yaks-standard/src/test/java/org/citrusframework/yaks/hooks/InjectEnvVarsHookTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.citrusframework.yaks.hooks; | ||
|
||
import java.util.Optional; | ||
|
||
import com.consol.citrus.DefaultTestCaseRunner; | ||
import com.consol.citrus.TestCaseRunner; | ||
import com.consol.citrus.annotations.CitrusAnnotations; | ||
import com.consol.citrus.context.TestContext; | ||
import com.consol.citrus.context.TestContextFactory; | ||
import org.assertj.core.api.Assertions; | ||
import org.junit.Test; | ||
|
||
/** | ||
* @author Christoph Deppisch | ||
*/ | ||
public class InjectEnvVarsHookTest { | ||
|
||
@Test | ||
@SuppressWarnings("CucumberJavaStepDefClassIsPublic") | ||
public void shouldInjectEnvVars() { | ||
InjectEnvVarsHook hook = new InjectEnvVarsHook() { | ||
@Override | ||
protected Optional<String> getEnvSetting(String name) { | ||
return Optional.of("foo"); | ||
} | ||
}; | ||
|
||
TestContext context = TestContextFactory.newInstance().getObject(); | ||
TestCaseRunner runner = new DefaultTestCaseRunner(context); | ||
CitrusAnnotations.injectTestRunner(hook, runner); | ||
|
||
hook.injectEnvVars(null); | ||
|
||
Assertions.assertThat(context.getVariable(InjectEnvVarsHook.YAKS_NAMESPACE)).isEqualTo("foo"); | ||
Assertions.assertThat(context.getVariable(InjectEnvVarsHook.CLUSTER_WILDCARD_DOMAIN)).isEqualTo("foo"); | ||
} | ||
|
||
@Test | ||
@SuppressWarnings("CucumberJavaStepDefClassIsPublic") | ||
public void shouldInjectEnvVarsDefaultValues() { | ||
InjectEnvVarsHook hook = new InjectEnvVarsHook() { | ||
@Override | ||
protected Optional<String> getEnvSetting(String name) { | ||
if (name.equals(InjectEnvVarsHook.YAKS_NAMESPACE)) { | ||
return Optional.of("foo"); | ||
} | ||
|
||
return Optional.empty(); | ||
} | ||
}; | ||
|
||
TestContext context = TestContextFactory.newInstance().getObject(); | ||
TestCaseRunner runner = new DefaultTestCaseRunner(context); | ||
CitrusAnnotations.injectTestRunner(hook, runner); | ||
|
||
hook.injectEnvVars(null); | ||
|
||
Assertions.assertThat(context.getVariable(InjectEnvVarsHook.YAKS_NAMESPACE)).isEqualTo("foo"); | ||
Assertions.assertThat(context.getVariable(InjectEnvVarsHook.CLUSTER_WILDCARD_DOMAIN)).isEqualTo("foo" + InjectEnvVarsHook.DEFAULT_DOMAIN_SUFFIX); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters