Search in sources :

Example 11 with VertxProject

use of io.vertx.starter.model.VertxProject in project vertx-starter by vert-x3.

the class GeneratorTest method testProjectsJdk8.

static Stream<VertxProject> testProjectsJdk8() throws IOException {
    List<String> versions = Util.loadStarterData().getJsonArray("versions").stream().map(JsonObject.class::cast).map(obj -> obj.getString("number")).filter(version -> !version.endsWith("-SNAPSHOT")).collect(toList());
    List<Set<String>> testDeps = Arrays.asList(Collections.singleton("vertx-unit"), Collections.singleton("vertx-junit5"));
    Stream.Builder<VertxProject> builder = Stream.builder();
    for (BuildTool buildTool : BuildTool.values()) {
        for (Language language : Language.values()) {
            for (String version : versions) {
                for (Set<String> vertxDependencies : testDeps) {
                    VertxProject vertxProject = defaultProject().setBuildTool(buildTool).setLanguage(language).setVertxVersion(version).setVertxDependencies(new HashSet<>(vertxDependencies)).setPackageName("com.mycompany.project.special");
                    builder.add(vertxProject);
                }
            }
        }
    }
    return builder.build();
}
Also used : VertxTestContext(io.vertx.junit5.VertxTestContext) java.util(java.util) io.vertx.core(io.vertx.core) TarArchiveInputStream(org.apache.commons.compress.archivers.tar.TarArchiveInputStream) Process(com.julienviet.childprocess.Process) Assertions.assertThat(org.assertj.core.api.Assertions.assertThat) JdkVersion(io.vertx.starter.model.JdkVersion) KOTLIN(io.vertx.starter.model.Language.KOTLIN) GeneratorVerticle(io.vertx.starter.GeneratorVerticle) VertxProjectCodec(io.vertx.starter.VertxProjectCodec) Utils(io.vertx.core.impl.Utils) Timeout(io.vertx.junit5.Timeout) MAVEN(io.vertx.starter.model.BuildTool.MAVEN) JAVA(io.vertx.starter.model.Language.JAVA) TarArchiveEntry(org.apache.commons.compress.archivers.tar.TarArchiveEntry) ExtendWith(org.junit.jupiter.api.extension.ExtendWith) GRADLE(io.vertx.starter.model.BuildTool.GRADLE) RecordParser(io.vertx.core.parsetools.RecordParser) JsonObject(io.vertx.core.json.JsonObject) Assume(org.junit.Assume) BuildTool(io.vertx.starter.model.BuildTool) Path(java.nio.file.Path) ByteBufInputStream(io.netty.buffer.ByteBufInputStream) GzipCompressorInputStream(org.apache.commons.compress.compressors.gzip.GzipCompressorInputStream) MethodSource(org.junit.jupiter.params.provider.MethodSource) OutputStream(java.io.OutputStream) AssumptionViolatedException(org.junit.AssumptionViolatedException) Assumptions.assumeThat(org.assertj.core.api.Assumptions.assumeThat) Files(java.nio.file.Files) NoStackTraceThrowable(io.vertx.core.impl.NoStackTraceThrowable) TGZ(io.vertx.starter.model.ArchiveFormat.TGZ) IOUtils(org.apache.commons.compress.utils.IOUtils) IOException(java.io.IOException) VertxExtension(io.vertx.junit5.VertxExtension) Util(io.vertx.starter.Util) File(java.io.File) TimeUnit(java.util.concurrent.TimeUnit) Topics(io.vertx.starter.config.Topics) ParameterizedTest(org.junit.jupiter.params.ParameterizedTest) Collectors.toList(java.util.stream.Collectors.toList) Stream(java.util.stream.Stream) Buffer(io.vertx.core.buffer.Buffer) Language(io.vertx.starter.model.Language) org.junit.jupiter.api(org.junit.jupiter.api) ProcessOptions(com.julienviet.childprocess.ProcessOptions) VertxProject(io.vertx.starter.model.VertxProject) Language(io.vertx.starter.model.Language) VertxProject(io.vertx.starter.model.VertxProject) BuildTool(io.vertx.starter.model.BuildTool) TarArchiveInputStream(org.apache.commons.compress.archivers.tar.TarArchiveInputStream) ByteBufInputStream(io.netty.buffer.ByteBufInputStream) GzipCompressorInputStream(org.apache.commons.compress.compressors.gzip.GzipCompressorInputStream) OutputStream(java.io.OutputStream) Stream(java.util.stream.Stream)

Aggregations

VertxProject (io.vertx.starter.model.VertxProject)11 Buffer (io.vertx.core.buffer.Buffer)5 JsonObject (io.vertx.core.json.JsonObject)5 IOException (java.io.IOException)5 VertxExtension (io.vertx.junit5.VertxExtension)4 VertxTestContext (io.vertx.junit5.VertxTestContext)4 Topics (io.vertx.starter.config.Topics)4 Stream (java.util.stream.Stream)4 Vertx (io.vertx.core.Vertx)3 VertxProjectCodec (io.vertx.starter.VertxProjectCodec)3 GRADLE (io.vertx.starter.model.BuildTool.GRADLE)3 MAVEN (io.vertx.starter.model.BuildTool.MAVEN)3 Language (io.vertx.starter.model.Language)3 KOTLIN (io.vertx.starter.model.Language.KOTLIN)3 Files (java.nio.file.Files)3 Path (java.nio.file.Path)3 java.util (java.util)3 TarArchiveEntry (org.apache.commons.compress.archivers.tar.TarArchiveEntry)3 IOUtils (org.apache.commons.compress.utils.IOUtils)3 Assertions.assertThat (org.assertj.core.api.Assertions.assertThat)3