Rev 30 | Blame | Compare with Previous | Last modification | View Log | RSS feed
(*Licensed to the Apache Software Foundation (ASF) under oneor more contributor license agreements. See the NOTICE filedistributed with this work for additional informationregarding copyright ownership. The ASF licenses this fileto you under the Apache License, Version 2.0 (the"License"); you may not use this file except in compliancewith the License. You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0Unless 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 ANYKIND, either express or implied. See the License for thespecific language governing permissions and limitationsunder the License.*)open Thrift;;open ThriftTest_types;;let s = new TSocket.t "127.0.0.1" 9090;;let p = new TBinaryProtocol.t s;;let c = new ThriftTest.client p p;;let sod = functionSome v -> v| None -> raise Thrift_error;;s#opn;print_string (c#testString "bya");print_char '\n';print_int (c#testByte 8);print_char '\n';print_int (c#testByte (-8));print_char '\n';print_int (c#testI32 32);print_char '\n';print_string (Int64.to_string (c#testI64 64L));print_char '\n';print_float (c#testDouble 3.14);print_char '\n';let l = [1;2;3;4] inif l = (c#testList l) then print_string "list ok\n" else print_string "list fail\n";;let h = Hashtbl.create 5 inlet a = Hashtbl.add h infor i=1 to 10 doa i (10*i)done;let r = c#testMap h infor i=1 to 10 dotrylet g = Hashtbl.find r i inprint_int i;print_char ' ';print_int g;print_char '\n'with Not_found -> print_string ("Can't find "^(string_of_int i)^"\n")done;;let s = Hashtbl.create 5 inlet a = Hashtbl.add s infor i = 1 to 10 doa i truedone;let r = c#testSet s infor i = 1 to 10 dotrylet g = Hashtbl.find r i inprint_int i;print_char '\n'with Not_found -> print_string ("Can't find "^(string_of_int i)^"\n")done;;tryc#testException "Xception"with Xception _ -> print_string "testException ok\n";;tryignore(c#testMultiException "Xception" "bya")with Xception e -> Printf.printf "%d %s\n" (sod e#get_errorCode) (sod e#get_message);;