mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-01-12 08:52:03 -06:00
Merge pull request #1975 from nosqlbench/environment_in_atfile
Interpolate environment in at file processing
This commit is contained in:
commit
9695e23b58
@ -573,6 +573,9 @@
|
|||||||
</includes>
|
</includes>
|
||||||
<useSystemClassLoader>false
|
<useSystemClassLoader>false
|
||||||
</useSystemClassLoader> <!-- fixes reflection tests -->
|
</useSystemClassLoader> <!-- fixes reflection tests -->
|
||||||
|
<environmentVariables>
|
||||||
|
<TEST_ENV_VAR>value</TEST_ENV_VAR>
|
||||||
|
</environmentVariables>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
|
@ -56,14 +56,14 @@ public class SystemIdTest {
|
|||||||
@Test
|
@Test
|
||||||
public void testPackedNodeId() {
|
public void testPackedNodeId() {
|
||||||
String packedNodeId = SystemId.getPackedNodeId();
|
String packedNodeId = SystemId.getPackedNodeId();
|
||||||
assertThat(packedNodeId).matches("[0-9A-Za-z_-]+");
|
assertThat(packedNodeId).matches("[0-9A-Za-z_~-]+");
|
||||||
logger.info("packed node id: " + packedNodeId);
|
logger.info("packed node id: " + packedNodeId);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testGenSessionCode() {
|
public void testGenSessionCode() {
|
||||||
String sessionCode=SystemId.genSessionCode(234L);
|
String sessionCode=SystemId.genSessionCode(234L);
|
||||||
assertThat(sessionCode).matches("[0-9a-zA-Z~-]+");
|
assertThat(sessionCode).matches("[0-9a-zA-Z_~-]+");
|
||||||
logger.info("session code: " + sessionCode);
|
logger.info("session code: " + sessionCode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -19,6 +19,7 @@ package io.nosqlbench.engine.cli.atfiles;
|
|||||||
import io.nosqlbench.nb.api.nbio.Content;
|
import io.nosqlbench.nb.api.nbio.Content;
|
||||||
import io.nosqlbench.nb.api.nbio.NBIO;
|
import io.nosqlbench.nb.api.nbio.NBIO;
|
||||||
import io.nosqlbench.nb.api.nbio.NBPathsAPI;
|
import io.nosqlbench.nb.api.nbio.NBPathsAPI;
|
||||||
|
import io.nosqlbench.nb.api.system.NBEnvironment;
|
||||||
import org.apache.logging.log4j.LogManager;
|
import org.apache.logging.log4j.LogManager;
|
||||||
import org.apache.logging.log4j.Logger;
|
import org.apache.logging.log4j.Logger;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
@ -166,8 +167,10 @@ public class NBAtFile {
|
|||||||
while (iter.hasNext()) {
|
while (iter.hasNext()) {
|
||||||
String word = iter.next();
|
String word = iter.next();
|
||||||
String modified = word.replaceAll("\\$\\{DIR}",parent.toString());
|
String modified = word.replaceAll("\\$\\{DIR}",parent.toString());
|
||||||
|
Optional<String> interpolatedString = NBEnvironment.INSTANCE.interpolate(modified);
|
||||||
|
String value = interpolatedString.orElseThrow(() -> new RuntimeException("Unable to find environment variable or property in text '"+modified+"' in atfile '" + atPath + "'"));
|
||||||
iter.remove();
|
iter.remove();
|
||||||
iter.add(modified);
|
iter.add(value);
|
||||||
}
|
}
|
||||||
return formatted;
|
return formatted;
|
||||||
}
|
}
|
||||||
|
@ -91,4 +91,15 @@ class NBAtFileTest {
|
|||||||
assertThat(strings).containsExactly("arg1","arg1","arg1","arg2","arg3","arg3","arg3","deepval");
|
assertThat(strings).containsExactly("arg1","arg1","arg1","arg2","arg3","arg3","arg3","deepval");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testAtfileEnvironmentVariable() {
|
||||||
|
LinkedList<String> strings = NBAtFile.includeAt("@src/test/resources/atfiles/environment_variable.yaml");
|
||||||
|
assertThat(strings).containsExactly("My value environment");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testAtfileMissingEnvironmentVariable() {
|
||||||
|
assertThrows(RuntimeException.class, () -> NBAtFile.includeAt("@src/test/resources/atfiles/environment_variable_missing.yaml:>:"));
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
- My ${TEST_ENV_VAR} environment
|
@ -0,0 +1 @@
|
|||||||
|
- My ${MISSING_ENV_VAR} environment
|
Loading…
Reference in New Issue
Block a user