-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
THRIFT-4086: Add missing calls to get_true_type when generating valid…
…ator + metadata code Client: java
- Loading branch information
Showing
5 changed files
with
100 additions
and
2 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
66 changes: 66 additions & 0 deletions
66
lib/java/src/test/java/org/apache/thrift/TestStructOrder.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,66 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
package org.apache.thrift; | ||
|
||
import static org.junit.jupiter.api.Assertions.*; | ||
|
||
import java.io.*; | ||
import java.util.Arrays; | ||
import java.util.List; | ||
import org.junit.jupiter.api.Test; | ||
|
||
// Tests that declaring structs in different order (esp. when they reference each other) generates | ||
// identical code | ||
public class TestStructOrder { | ||
|
||
@Test | ||
public void testStructOrder() throws Exception { | ||
List<String> filenames = Arrays.asList("Parent.java", "Child.java"); | ||
|
||
for (String fn : filenames) { | ||
String fnA = "struct-order-test/a/" + fn; | ||
String fnB = "struct-order-test/b/" + fn; | ||
|
||
try (InputStream isA = TestStructOrder.class.getClassLoader().getResourceAsStream(fnA); | ||
InputStream isB = TestStructOrder.class.getClassLoader().getResourceAsStream(fnB)) { | ||
|
||
assertNotNull(isA, "Resource not found: " + fnA); | ||
assertNotNull(isB, "Resource not found: " + fnB); | ||
|
||
int hashA = Arrays.hashCode(readAllBytes(isA)); | ||
assertEquals( | ||
hashA, | ||
Arrays.hashCode(readAllBytes(isB)), | ||
String.format("Generated Java files %s and %s differ", fnA, fnB)); | ||
} | ||
} | ||
} | ||
|
||
// TODO Use InputStream.readAllBytes post-Java8 | ||
private byte[] readAllBytes(InputStream is) throws IOException { | ||
ByteArrayOutputStream os = new ByteArrayOutputStream(); | ||
byte[] buff = new byte[1024]; | ||
int bytesRead; | ||
while ((bytesRead = is.read(buff, 0, buff.length)) != -1) { | ||
os.write(buff, 0, bytesRead); | ||
} | ||
return os.toByteArray(); | ||
} | ||
} |
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,9 @@ | ||
// Define Parent, then Child. No forward declarations. | ||
struct Parent { | ||
1: required string Name | ||
} | ||
|
||
struct Child { | ||
1: required string Name | ||
2: required Parent Parent | ||
} |
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,10 @@ | ||
// Define Child, then Parent. Parent is a forward declaration and was problematic for our Java compiler before | ||
// fixing THRIFT-4086: Java compiler generates different meta data depending on order of structures in file | ||
struct Child { | ||
1: required string Name | ||
2: required Parent Parent | ||
} | ||
|
||
struct Parent { | ||
1: required string Name | ||
} |