forked from quarkusio/quarkus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Qute: fix generation of qute-i18n-examples
- handle localized enums correctly - fixes quarkusio#44366
- Loading branch information
Showing
4 changed files
with
101 additions
and
8 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
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
64 changes: 64 additions & 0 deletions
64
...yment/src/test/java/io/quarkus/qute/deployment/i18n/MessageBundleEnumExampleFileTest.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,64 @@ | ||
package io.quarkus.qute.deployment.i18n; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
||
import java.io.FileInputStream; | ||
import java.io.FileNotFoundException; | ||
import java.io.IOException; | ||
import java.nio.file.Path; | ||
import java.util.Properties; | ||
|
||
import org.jboss.shrinkwrap.api.asset.StringAsset; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
|
||
import io.quarkus.qute.i18n.Message; | ||
import io.quarkus.qute.i18n.MessageBundle; | ||
import io.quarkus.test.ProdBuildResults; | ||
import io.quarkus.test.ProdModeTestResults; | ||
import io.quarkus.test.QuarkusProdModeTest; | ||
|
||
public class MessageBundleEnumExampleFileTest { | ||
|
||
@RegisterExtension | ||
static final QuarkusProdModeTest config = new QuarkusProdModeTest() | ||
.withApplicationRoot(root -> root | ||
.addClasses(Messages.class, MyEnum.class) | ||
.addAsResource(new StringAsset(""" | ||
myEnum_ON=On | ||
myEnum_OFF=Off | ||
myEnum_UNDEFINED=Undefined | ||
"""), | ||
"messages/enu.properties")); | ||
|
||
@ProdBuildResults | ||
ProdModeTestResults testResults; | ||
|
||
@Test | ||
public void testExampleProperties() throws FileNotFoundException, IOException { | ||
Path path = testResults.getBuildDir().resolve("qute-i18n-examples").resolve("enu.properties"); | ||
assertTrue(path.toFile().canRead()); | ||
Properties props = new Properties(); | ||
props.load(new FileInputStream(path.toFile())); | ||
assertEquals(3, props.size()); | ||
assertTrue(props.containsKey("myEnum_ON")); | ||
assertTrue(props.containsKey("myEnum_OFF")); | ||
assertTrue(props.containsKey("myEnum_UNDEFINED")); | ||
} | ||
|
||
@MessageBundle(value = "enu", locale = "en") | ||
public interface Messages { | ||
|
||
// Replaced with: | ||
// @Message("{#when myEnum}" | ||
// + "{#is ON}{enu:myEnum_ON}" | ||
// + "{#is OFF}{enu:myEnum_OFF}" | ||
// + "{#is UNDEFINED}{enu:myEnum_UNDEFINED}" | ||
// + "{/when}") | ||
@Message | ||
String myEnum(MyEnum myEnum); | ||
|
||
} | ||
|
||
} |
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