-
Notifications
You must be signed in to change notification settings - Fork 526
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1008 from nbradac/enum-keyword-check
[Java] add keyword suffix check for java enums
- Loading branch information
Showing
4 changed files
with
145 additions
and
7 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
102 changes: 102 additions & 0 deletions
102
sbe-tool/src/test/java/uk/co/real_logic/sbe/generation/java/EnumTest.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,102 @@ | ||
/* | ||
* Copyright 2013-2024 Real Logic Limited. | ||
* | ||
* 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 uk.co.real_logic.sbe.generation.java; | ||
|
||
import org.agrona.DirectBuffer; | ||
import org.agrona.MutableDirectBuffer; | ||
import org.agrona.generation.StringWriterOutputManager; | ||
import org.junit.jupiter.api.Test; | ||
import uk.co.real_logic.sbe.SbeTool; | ||
import uk.co.real_logic.sbe.Tests; | ||
import uk.co.real_logic.sbe.ir.Ir; | ||
import uk.co.real_logic.sbe.xml.IrGenerator; | ||
import uk.co.real_logic.sbe.xml.MessageSchema; | ||
import uk.co.real_logic.sbe.xml.ParserOptions; | ||
import uk.co.real_logic.sbe.xml.XmlSchemaParser; | ||
|
||
import java.io.InputStream; | ||
|
||
import static org.hamcrest.MatcherAssert.assertThat; | ||
import static org.hamcrest.core.StringContains.containsString; | ||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
import static org.junit.jupiter.api.Assertions.fail; | ||
|
||
class EnumTest | ||
{ | ||
private static final Class<?> BUFFER_CLASS = MutableDirectBuffer.class; | ||
private static final String BUFFER_NAME = BUFFER_CLASS.getName(); | ||
private static final Class<DirectBuffer> READ_ONLY_BUFFER_CLASS = DirectBuffer.class; | ||
private static final String READ_ONLY_BUFFER_NAME = READ_ONLY_BUFFER_CLASS.getName(); | ||
|
||
private StringWriterOutputManager outputManager; | ||
private JavaGenerator generator; | ||
|
||
private void setupGenerator(final InputStream in) throws Exception | ||
{ | ||
final ParserOptions options = ParserOptions.builder().stopOnError(true).build(); | ||
final MessageSchema schema = XmlSchemaParser.parse(in, options); | ||
final IrGenerator irg = new IrGenerator(); | ||
final Ir ir = irg.generate(schema); | ||
|
||
outputManager = new StringWriterOutputManager(); | ||
outputManager.setPackageName(ir.applicableNamespace()); | ||
generator = new JavaGenerator( | ||
ir, BUFFER_NAME, READ_ONLY_BUFFER_NAME, false, false, false, outputManager); | ||
} | ||
|
||
@SuppressWarnings("checkstyle:LineLength") | ||
@Test | ||
void shouldFailOnKeywordEnumValues() throws Exception | ||
{ | ||
try (InputStream in = Tests.getLocalResource("issue1007.xml")) | ||
{ | ||
setupGenerator(in); | ||
|
||
try | ||
{ | ||
generator.generate(); | ||
} | ||
catch (final IllegalStateException exception) | ||
{ | ||
assertEquals( | ||
"Invalid property name='false' please correct the schema or consider setting system property: sbe.keyword.append.token", | ||
exception.getMessage()); | ||
return; | ||
} | ||
|
||
fail("expected IllegalStateException"); | ||
} | ||
} | ||
|
||
@Test | ||
void shouldAddSuffixToEnumValues() throws Exception | ||
{ | ||
System.setProperty(SbeTool.KEYWORD_APPEND_TOKEN, "_"); | ||
|
||
try (InputStream in = Tests.getLocalResource("issue1007.xml")) | ||
{ | ||
setupGenerator(in); | ||
|
||
generator.generate(); | ||
final String sources = outputManager.getSources().toString(); | ||
|
||
assertThat(sources, containsString("false_(")); | ||
assertThat(sources, containsString("true_(")); | ||
assertThat(sources, containsString("return false_;")); | ||
assertThat(sources, containsString("return true_;")); | ||
} | ||
} | ||
} |
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,24 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<sbe:messageSchema xmlns:sbe="http://fixprotocol.io/2016/sbe" | ||
package="issue1007" | ||
id="1007" | ||
version="0" | ||
semanticVersion="1.0" | ||
description="issue 1007 test case" | ||
byteOrder="bigEndian"> | ||
<types> | ||
<composite name="messageHeader" description="Message identifiers and length of message root"> | ||
<type name="blockLength" primitiveType="uint16"/> | ||
<type name="templateId" primitiveType="uint16"/> | ||
<type name="schemaId" primitiveType="uint16"/> | ||
<type name="version" primitiveType="uint16"/> | ||
</composite> | ||
<enum name="MyEnum" encodingType="uint8"> | ||
<validValue name="false">0</validValue> | ||
<validValue name="true">1</validValue> | ||
</enum> | ||
</types> | ||
<sbe:message name="issue1007" id="1" description="issue 1007 test"> | ||
<field name="constant" type="MyEnum" id="1"/> | ||
</sbe:message> | ||
</sbe:messageSchema> |