This is an automated email from the ASF dual-hosted git repository. sjaranowski pushed a commit to branch MNG-7697 in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git
commit 6357d14ce2c9382b8e7ac5d2378de049e3df38b7 Author: Slawomir Jaranowski <s.jaranow...@gmail.com> AuthorDate: Tue Mar 14 19:53:54 2023 +0100 [MNG-7697] IT - pom with emoji --- .../maven/it/MavenITmng7697PomWithEmojiTest.java | 59 ++++++++++++++++++++++ .../org/apache/maven/it/TestSuiteOrdering.java | 1 + .../src/test/resources/mng-7697-emoji/pom.xml | 10 ++++ 3 files changed, 70 insertions(+) diff --git a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng7697PomWithEmojiTest.java b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng7697PomWithEmojiTest.java new file mode 100644 index 000000000..76cdaf488 --- /dev/null +++ b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng7697PomWithEmojiTest.java @@ -0,0 +1,59 @@ +package org.apache.maven.it; + +/* + * 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. + */ + +import java.io.File; + +import org.apache.maven.shared.verifier.Verifier; +import org.apache.maven.shared.verifier.util.ResourceExtractor; +import org.junit.jupiter.api.Test; + +/** + * This is a test set for <a href="https://issues.apache.org/jira/browse/MNG-7697">MNG-7697</a>. + * Verifies if pom with emoji in comments are parsed. + */ +class MavenITmng7697PomWithEmojiTest + extends AbstractMavenIntegrationTestCase +{ + + public MavenITmng7697PomWithEmojiTest() + { + // affected Maven versions: 3.9.0, 4.0.0-alpha-4 + super( "(,3.9.0),(3.9.0,4.0.0-alpha-4),(4.0.0-alpha-4,)" ); + } + + /** + * Pom read successful. + * + * @throws Exception in case of failure + */ + @Test + void testPomRead() + throws Exception + { + File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-7697-emoji" ); + + Verifier verifier = newVerifier( testDir.getAbsolutePath() ); + verifier.setAutoclean( false ); + verifier.addCliArgument( "verify" ); + verifier.execute(); + verifier.verifyErrorFreeLog(); + } +} diff --git a/core-it-suite/src/test/java/org/apache/maven/it/TestSuiteOrdering.java b/core-it-suite/src/test/java/org/apache/maven/it/TestSuiteOrdering.java index 997f0891b..eac121356 100644 --- a/core-it-suite/src/test/java/org/apache/maven/it/TestSuiteOrdering.java +++ b/core-it-suite/src/test/java/org/apache/maven/it/TestSuiteOrdering.java @@ -111,6 +111,7 @@ public class TestSuiteOrdering implements ClassOrderer * the tests are to finishing. Newer tests are also more likely to fail, so this is * a fail fast technique as well. */ + suite.addTestSuite( MavenITmng7697PomWithEmojiTest.class ); suite.addTestSuite( MavenITmng7737ProfileActivationTest.class ); suite.addTestSuite( MavenITmng7716BuildDeadlock.class ); suite.addTestSuite( MavenITmng7679SingleMojoNoPomTest.class ); diff --git a/core-it-suite/src/test/resources/mng-7697-emoji/pom.xml b/core-it-suite/src/test/resources/mng-7697-emoji/pom.xml new file mode 100644 index 000000000..f90018372 --- /dev/null +++ b/core-it-suite/src/test/resources/mng-7697-emoji/pom.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> +<!-- 🤔 --> + <groupId>G</groupId> + <artifactId>A</artifactId> + <version>1</version> +</project>