David Reiss | ea2cba8 | 2009-03-30 21:35:00 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Licensed to the Apache Software Foundation (ASF) under one |
| 3 | * or more contributor license agreements. See the NOTICE file |
| 4 | * distributed with this work for additional information |
| 5 | * regarding copyright ownership. The ASF licenses this file |
| 6 | * to you under the Apache License, Version 2.0 (the |
| 7 | * "License"); you may not use this file except in compliance |
| 8 | * with the License. You may obtain a copy of the License at |
| 9 | * |
| 10 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | * |
| 12 | * Unless required by applicable law or agreed to in writing, |
| 13 | * software distributed under the License is distributed on an |
| 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | * KIND, either express or implied. See the License for the |
| 16 | * specific language governing permissions and limitations |
| 17 | * under the License. |
Todd Lipcon | 53ae9f3 | 2009-12-07 00:42:38 +0000 | [diff] [blame] | 18 | * |
| 19 | * Contains some contributions under the Thrift Software License. |
| 20 | * Please see doc/old-thrift-license.txt in the Thrift distribution for |
| 21 | * details. |
David Reiss | ea2cba8 | 2009-03-30 21:35:00 +0000 | [diff] [blame] | 22 | */ |
| 23 | |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 24 | namespace c_glib TTest |
David Reiss | 771f8c7 | 2008-02-27 01:55:25 +0000 | [diff] [blame] | 25 | namespace java thrift.test |
David Reiss | 9a08dc6 | 2008-02-27 01:55:17 +0000 | [diff] [blame] | 26 | namespace cpp thrift.test |
David Reiss | 6a4b82c | 2008-03-27 21:42:16 +0000 | [diff] [blame] | 27 | namespace rb Thrift.Test |
David Reiss | 07ef3a9 | 2008-03-27 21:42:39 +0000 | [diff] [blame] | 28 | namespace perl ThriftTest |
David Reiss | 9d65bf0 | 2008-03-27 21:41:37 +0000 | [diff] [blame] | 29 | namespace csharp Thrift.Test |
T Jake Luciani | 322caa2 | 2010-02-15 03:24:55 +0000 | [diff] [blame] | 30 | namespace js ThriftTest |
Bryan Duxbury | 4d8a9cd | 2010-08-30 17:09:58 +0000 | [diff] [blame] | 31 | namespace st ThriftTest |
Anthony F. Molinaro | 0b4936d | 2010-09-27 04:43:39 +0000 | [diff] [blame] | 32 | namespace py ThriftTest |
Roger Meier | 50e4349 | 2010-10-08 17:46:06 +0000 | [diff] [blame] | 33 | namespace py.twisted ThriftTest |
Christian Lavoie | afc6d8f | 2011-02-20 02:39:19 +0000 | [diff] [blame] | 34 | namespace go ThriftTest |
Bryan Duxbury | 1d373bc | 2011-03-02 18:13:30 +0000 | [diff] [blame] | 35 | namespace php ThriftTest |
Jake Farrell | 7ae13e1 | 2011-10-18 14:35:26 +0000 | [diff] [blame] | 36 | namespace delphi Thrift.Test |
Jake Farrell | 9689d89 | 2011-12-06 01:07:17 +0000 | [diff] [blame] | 37 | namespace cocoa ThriftTest |
David Reiss | fb790d7 | 2010-09-02 16:41:45 +0000 | [diff] [blame] | 38 | namespace * thrift.test |
Marc Slemko | 1785985 | 2006-08-15 00:21:31 +0000 | [diff] [blame] | 39 | |
Bryan Duxbury | 9af23d9 | 2009-11-19 17:26:38 +0000 | [diff] [blame] | 40 | /** |
| 41 | * Docstring! |
| 42 | */ |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 43 | enum Numberz |
| 44 | { |
| 45 | ONE = 1, |
| 46 | TWO, |
| 47 | THREE, |
| 48 | FIVE = 5, |
| 49 | SIX, |
| 50 | EIGHT = 8 |
| 51 | } |
| 52 | |
Bryan Duxbury | 9f0a786 | 2010-09-12 14:38:36 +0000 | [diff] [blame] | 53 | const Numberz myNumberz = Numberz.ONE; |
| 54 | // the following is expected to fail: |
| 55 | // const Numberz urNumberz = ONE; |
| 56 | |
Mark Slee | 6e53644 | 2006-06-30 18:28:50 +0000 | [diff] [blame] | 57 | typedef i64 UserId |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 58 | |
Mark Slee | e129a2d | 2007-02-21 05:17:48 +0000 | [diff] [blame] | 59 | struct Bonk |
| 60 | { |
| 61 | 1: string message, |
| 62 | 2: i32 type |
| 63 | } |
| 64 | |
Kevin Clark | 9a863ee | 2009-03-24 16:04:36 +0000 | [diff] [blame] | 65 | struct Bools { |
| 66 | 1: bool im_true, |
| 67 | 2: bool im_false, |
| 68 | } |
| 69 | |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 70 | struct Xtruct |
| 71 | { |
Mark Slee | a330265 | 2006-10-25 19:03:32 +0000 | [diff] [blame] | 72 | 1: string string_thing, |
| 73 | 4: byte byte_thing, |
| 74 | 9: i32 i32_thing, |
| 75 | 11: i64 i64_thing |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | struct Xtruct2 |
| 79 | { |
Mark Slee | a330265 | 2006-10-25 19:03:32 +0000 | [diff] [blame] | 80 | 1: byte byte_thing, |
| 81 | 2: Xtruct struct_thing, |
| 82 | 3: i32 i32_thing |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 83 | } |
| 84 | |
David Reiss | 233ace5 | 2009-03-30 20:46:47 +0000 | [diff] [blame] | 85 | struct Xtruct3 |
| 86 | { |
| 87 | 1: string string_thing, |
| 88 | 4: i32 changed, |
| 89 | 9: i32 i32_thing, |
| 90 | 11: i64 i64_thing |
| 91 | } |
| 92 | |
| 93 | |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 94 | struct Insanity |
| 95 | { |
Mark Slee | a330265 | 2006-10-25 19:03:32 +0000 | [diff] [blame] | 96 | 1: map<Numberz, UserId> userMap, |
| 97 | 2: list<Xtruct> xtructs |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 98 | } |
| 99 | |
Bryan Duxbury | 986d705 | 2009-01-29 01:51:08 +0000 | [diff] [blame] | 100 | struct CrazyNesting { |
| 101 | 1: string string_field, |
| 102 | 2: optional set<Insanity> set_field, |
Bryan Duxbury | b3d0aa0 | 2010-10-06 20:00:03 +0000 | [diff] [blame] | 103 | 3: required list< map<set<i32>,map<i32,set<list<map<Insanity,string>>>>>> list_field, |
| 104 | 4: binary binary_field |
Bryan Duxbury | 986d705 | 2009-01-29 01:51:08 +0000 | [diff] [blame] | 105 | } |
| 106 | |
Marc Slemko | bf4fd19 | 2006-08-15 21:29:39 +0000 | [diff] [blame] | 107 | exception Xception { |
Mark Slee | a330265 | 2006-10-25 19:03:32 +0000 | [diff] [blame] | 108 | 1: i32 errorCode, |
| 109 | 2: string message |
Marc Slemko | d8b1051 | 2006-08-14 23:30:37 +0000 | [diff] [blame] | 110 | } |
| 111 | |
Marc Slemko | bf4fd19 | 2006-08-15 21:29:39 +0000 | [diff] [blame] | 112 | exception Xception2 { |
Mark Slee | a330265 | 2006-10-25 19:03:32 +0000 | [diff] [blame] | 113 | 1: i32 errorCode, |
| 114 | 2: Xtruct struct_thing |
Marc Slemko | d8b1051 | 2006-08-14 23:30:37 +0000 | [diff] [blame] | 115 | } |
Mark Slee | 27ed6ec | 2007-08-16 01:26:31 +0000 | [diff] [blame] | 116 | |
Mark Slee | d3d733a | 2006-09-01 22:19:06 +0000 | [diff] [blame] | 117 | struct EmptyStruct {} |
| 118 | |
Marc Slemko | d8b1051 | 2006-08-14 23:30:37 +0000 | [diff] [blame] | 119 | struct OneField { |
Mark Slee | a330265 | 2006-10-25 19:03:32 +0000 | [diff] [blame] | 120 | 1: EmptyStruct field |
Marc Slemko | d8b1051 | 2006-08-14 23:30:37 +0000 | [diff] [blame] | 121 | } |
Marc Slemko | 5b126d6 | 2006-08-11 23:03:42 +0000 | [diff] [blame] | 122 | |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 123 | service ThriftTest |
| 124 | { |
Marc Slemko | d8b1051 | 2006-08-14 23:30:37 +0000 | [diff] [blame] | 125 | void testVoid(), |
Mark Slee | a330265 | 2006-10-25 19:03:32 +0000 | [diff] [blame] | 126 | string testString(1: string thing), |
| 127 | byte testByte(1: byte thing), |
| 128 | i32 testI32(1: i32 thing), |
| 129 | i64 testI64(1: i64 thing), |
| 130 | double testDouble(1: double thing), |
| 131 | Xtruct testStruct(1: Xtruct thing), |
| 132 | Xtruct2 testNest(1: Xtruct2 thing), |
| 133 | map<i32,i32> testMap(1: map<i32,i32> thing), |
Roger Meier | 9d8e8f8 | 2011-06-14 19:38:27 +0000 | [diff] [blame] | 134 | map<string,string> testStringMap(1: map<string,string> thing), |
Mark Slee | a330265 | 2006-10-25 19:03:32 +0000 | [diff] [blame] | 135 | set<i32> testSet(1: set<i32> thing), |
| 136 | list<i32> testList(1: list<i32> thing), |
| 137 | Numberz testEnum(1: Numberz thing), |
| 138 | UserId testTypedef(1: UserId thing), |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 139 | |
Mark Slee | a330265 | 2006-10-25 19:03:32 +0000 | [diff] [blame] | 140 | map<i32,map<i32,i32>> testMapMap(1: i32 hello), |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 141 | |
| 142 | /* So you think you've got this all worked, out eh? */ |
Mark Slee | a330265 | 2006-10-25 19:03:32 +0000 | [diff] [blame] | 143 | map<UserId, map<Numberz,Insanity>> testInsanity(1: Insanity argument), |
Marc Slemko | d8b1051 | 2006-08-14 23:30:37 +0000 | [diff] [blame] | 144 | |
| 145 | /* Multiple parameters */ |
David Reiss | 689c9ad | 2009-04-02 19:24:02 +0000 | [diff] [blame] | 146 | Xtruct testMulti(1: byte arg0, 2: i32 arg1, 3: i64 arg2, 4: map<i16, string> arg3, 5: Numberz arg4, 6: UserId arg5), |
Marc Slemko | d8b1051 | 2006-08-14 23:30:37 +0000 | [diff] [blame] | 147 | |
| 148 | /* Exception specifier */ |
| 149 | |
David Reiss | 689c9ad | 2009-04-02 19:24:02 +0000 | [diff] [blame] | 150 | void testException(1: string arg) throws(1: Xception err1), |
Marc Slemko | d8b1051 | 2006-08-14 23:30:37 +0000 | [diff] [blame] | 151 | |
| 152 | /* Multiple exceptions specifier */ |
| 153 | |
David Reiss | 689c9ad | 2009-04-02 19:24:02 +0000 | [diff] [blame] | 154 | Xtruct testMultiException(1: string arg0, 2: string arg1) throws(1: Xception err1, 2: Xception2 err2) |
David Reiss | 2ab6fe8 | 2008-02-18 02:11:44 +0000 | [diff] [blame] | 155 | |
David Reiss | c51986f | 2009-03-24 20:01:25 +0000 | [diff] [blame] | 156 | /* Test oneway void */ |
David Reiss | cecbed8 | 2009-03-24 20:02:22 +0000 | [diff] [blame] | 157 | oneway void testOneway(1:i32 secondsToSleep) |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 158 | } |
Mark Slee | dafa3cf | 2006-09-02 23:56:49 +0000 | [diff] [blame] | 159 | |
| 160 | service SecondService |
| 161 | { |
| 162 | void blahBlah() |
| 163 | } |
David Reiss | 9ff3b9d | 2008-02-15 01:10:23 +0000 | [diff] [blame] | 164 | |
| 165 | struct VersioningTestV1 { |
| 166 | 1: i32 begin_in_both, |
David Reiss | a528f54 | 2009-03-24 22:48:40 +0000 | [diff] [blame] | 167 | 3: string old_string, |
David Reiss | 9ff3b9d | 2008-02-15 01:10:23 +0000 | [diff] [blame] | 168 | 12: i32 end_in_both |
| 169 | } |
| 170 | |
| 171 | struct VersioningTestV2 { |
| 172 | 1: i32 begin_in_both, |
| 173 | |
| 174 | 2: i32 newint, |
| 175 | 3: byte newbyte, |
| 176 | 4: i16 newshort, |
| 177 | 5: i64 newlong, |
| 178 | 6: double newdouble |
| 179 | 7: Bonk newstruct, |
| 180 | 8: list<i32> newlist, |
| 181 | 9: set<i32> newset, |
| 182 | 10: map<i32, i32> newmap, |
| 183 | 11: string newstring, |
| 184 | 12: i32 end_in_both |
David Reiss | 9a08dc6 | 2008-02-27 01:55:17 +0000 | [diff] [blame] | 185 | } |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 186 | |
| 187 | struct ListTypeVersioningV1 { |
| 188 | 1: list<i32> myints; |
| 189 | 2: string hello; |
| 190 | } |
| 191 | |
| 192 | struct ListTypeVersioningV2 { |
| 193 | 1: list<string> strings; |
| 194 | 2: string hello; |
Bryan Duxbury | 986d705 | 2009-01-29 01:51:08 +0000 | [diff] [blame] | 195 | } |
Bryan Duxbury | 206c0dc | 2010-10-19 23:00:27 +0000 | [diff] [blame] | 196 | |
| 197 | struct GuessProtocolStruct { |
| 198 | 7: map<string,string> map_field, |
| 199 | } |
Bryan Duxbury | df4cffd | 2011-03-15 17:16:09 +0000 | [diff] [blame] | 200 | |
| 201 | struct LargeDeltas { |
| 202 | 1: Bools b1, |
| 203 | 10: Bools b10, |
| 204 | 100: Bools b100, |
| 205 | 500: bool check_true, |
| 206 | 1000: Bools b1000, |
| 207 | 1500: bool check_false, |
| 208 | 2000: VersioningTestV2 vertwo2000, |
| 209 | 2500: set<string> a_set2500, |
| 210 | 3000: VersioningTestV2 vertwo3000, |
| 211 | 4000: list<i32> big_numbers |
| 212 | } |
Roger Meier | f4eec7a | 2011-09-11 18:16:21 +0000 | [diff] [blame] | 213 | |
| 214 | struct NestedListsI32x2 { |
| 215 | 1: list<list<i32>> integerlist |
| 216 | } |
| 217 | struct NestedListsI32x3 { |
| 218 | 1: list<list<list<i32>>> integerlist |
| 219 | } |
| 220 | struct NestedMixedx2 { |
| 221 | 1: list<set<i32>> int_set_list |
| 222 | 2: map<i32,set<string>> map_int_strset |
| 223 | 3: list<map<i32,set<string>>> map_int_strset_list |
| 224 | } |
| 225 | struct ListBonks { |
| 226 | 1: list<Bonk> bonk |
| 227 | } |
| 228 | struct NestedListsBonk { |
| 229 | 1: list<list<list<Bonk>>> bonk |
| 230 | } |
Bryan Duxbury | 6c928f3 | 2011-10-13 21:32:52 +0000 | [diff] [blame] | 231 | |
| 232 | struct BoolTest { |
| 233 | 1: optional bool b = true; |
| 234 | 2: optional string s = "true"; |
| 235 | } |
Bryan Duxbury | a3df547 | 2011-12-27 22:26:59 +0000 | [diff] [blame] | 236 | |
| 237 | struct StructA { |
| 238 | 1: required string s; |
| 239 | } |
| 240 | |
| 241 | struct StructB { |
| 242 | 1: optional StructA aa; |
| 243 | 2: required StructA ab; |
| 244 | } |