All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openrewrite.javascript.Assertions Maven / Gradle / Ivy

There is a newer version: 0.13.0
Show newest version
/*
 * Copyright 2023 the original author or authors.
 * 

* Licensed 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 *

* https://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.openrewrite.javascript; import org.intellij.lang.annotations.Language; import org.jspecify.annotations.Nullable; import org.openrewrite.ExecutionContext; import org.openrewrite.ParseExceptionResult; import org.openrewrite.java.tree.J; import org.openrewrite.java.tree.Space; import org.openrewrite.javascript.tree.JS; import org.openrewrite.test.SourceSpec; import org.openrewrite.test.SourceSpecs; import org.opentest4j.AssertionFailedError; import java.util.Optional; import java.util.function.Consumer; import static org.assertj.core.api.Assertions.assertThat; public final class Assertions { private Assertions() { } public static SourceSpecs javaScript(@Language("typescript") @Nullable String before) { return javaScript(before, s -> { }); } public static SourceSpecs javaScript(@Language("typescript") @Nullable String before, Consumer> spec) { return javaScript0(before, null, spec); } public static SourceSpecs javaScript(@Language("typescript") @Nullable String before, @Language("typescript") String after) { return javaScript(before, after, s -> { }); } public static SourceSpecs javaScript(@Language("typescript") @Nullable String before, @Language("typescript") String after, Consumer> spec) { return javaScript0(before, after, spec); } private static SourceSpec javaScript0(@Language("typescript") @Nullable String before, @Language("typescript") @Nullable String after, Consumer> spec) { SourceSpec js = new SourceSpec<>( JS.CompilationUnit.class, null, JavaScriptParser.builder(), before, SourceSpec.ValidateSource.noop, Assertions::customizeExecutionContext ); if (after != null) { js = js.after(s -> after); } acceptSpec(spec, js); return js; } static void customizeExecutionContext(ExecutionContext ctx) { } private static void acceptSpec(Consumer> spec, SourceSpec javaScript) { Consumer userSuppliedAfterRecipe = javaScript.getAfterRecipe(); javaScript.afterRecipe(userSuppliedAfterRecipe::accept); isFullyParsed().andThen(spec).accept(javaScript); } public static Consumer> isFullyParsed() { return spec -> spec.afterRecipe(cu -> { new JavaScriptIsoVisitor() { @Override public Space visitSpace(Space space, Space.Location loc, Integer integer) { assertThat(space.getWhitespace()).isBlank(); return super.visitSpace(space, loc, integer); } }.visit(cu, 0); new JavaScriptVisitor() { @Override public J visitUnknownSource(J.Unknown.Source source, Integer integer) { Optional result = source.getMarkers().findFirst(ParseExceptionResult.class); if (result.isPresent()) { System.out.println(result.get().getMessage()); throw new AssertionFailedError("Parsing error, J.Unknown detected"); } else { throw new UnsupportedOperationException("A J.Unknown should always have a parse exception result."); } } }.visit(cu, 0); }); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy