summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Geyer <jensg@apache.org>2019-10-10 01:33:30 +0200
committerJens Geyer <jensg@apache.org>2019-10-10 01:38:05 +0200
commit85d8162dcbfd17db3bb8232a2dbb870dd9908cc4 (patch)
tree3a814448be0df678dfa4650c32c454f9377b20d7
parent224b43ec7e916d2d588ad356762553fe2181aea5 (diff)
downloadthrift-85d8162dcbfd17db3bb8232a2dbb870dd9908cc4.tar.gz
Revert "THRIFT-4951: Remove senum from tests"
This reverts commit df8ef4b489e2b84ac6dbbf895be32d6fb2415c81. The contributor confuses "deprecated" with "unsupported". Unless the feature as a whole is also removed, so essentially nothing is left to be tested. Regardless whether a particular feature is deprecated or not, removing a working test for it is NOT helpful. The only "achievement" of such efforts would be that the test coverage goes down, which is clearly not in our intention and only opens room for bugs and issues.
-rw-r--r--test/AnnotationTest.thrift8
-rw-r--r--test/SmallTest.thrift7
2 files changed, 15 insertions, 0 deletions
diff --git a/test/AnnotationTest.thrift b/test/AnnotationTest.thrift
index 6238395d4..7e24e1ccb 100644
--- a/test/AnnotationTest.thrift
+++ b/test/AnnotationTest.thrift
@@ -49,6 +49,14 @@ enum weekdays {
SATURDAY ( weekend = "yes" )
} (foo.bar="baz")
+/* Note that annotations on senum values are not supported. */
+senum seasons {
+ "Spring",
+ "Summer",
+ "Fall",
+ "Winter"
+} ( foo = "bar" )
+
struct ostr_default {
1: i32 bar;
}
diff --git a/test/SmallTest.thrift b/test/SmallTest.thrift
index 891bd6a0c..d0821c7ff 100644
--- a/test/SmallTest.thrift
+++ b/test/SmallTest.thrift
@@ -24,6 +24,12 @@ struct Goodbyez {
1: i32 val = 325;
}
+senum Thinger {
+ "ASDFKJ",
+ "r32)*F#@",
+ "ASDFLJASDF"
+}
+
struct BoolPasser {
1: bool value = 1
}
@@ -47,6 +53,7 @@ exception Goodbye {
}
service SmallService {
+ Thinger testThinger(1:Thinger bootz),
Hello testMe(1:i32 hello=64, 2: Hello wonk) throws (1: Goodbye g),
void testVoid() throws (1: Goodbye g),
i32 testI32(1:i32 boo)