Roger Meier | 8909cbd | 2014-01-26 11:44:27 +0100 | [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. |
| 18 | */ |
| 19 | |
henrique | a2de410 | 2014-02-07 14:12:56 +0100 | [diff] [blame] | 20 | //This is the client side test for the standard Apache Thrift |
| 21 | //"ThriftTest" suite. This client will test any protocol/transport |
| 22 | //combination specified on the command line. |
Roger Meier | 8909cbd | 2014-01-26 11:44:27 +0100 | [diff] [blame] | 23 | |
Roger Meier | 57b354b | 2014-02-22 01:01:58 +0100 | [diff] [blame^] | 24 | var fs = require('fs'); |
Roger Meier | 8909cbd | 2014-01-26 11:44:27 +0100 | [diff] [blame] | 25 | var assert = require('assert'); |
| 26 | var thrift = require('thrift'); |
| 27 | var ThriftTransports = require('thrift/transport'); |
| 28 | var ThriftProtocols = require('thrift/protocol'); |
| 29 | var ThriftTest = require('./gen-nodejs/ThriftTest'); |
| 30 | var ThriftTestDriver = require('./thrift_test_driver').ThriftTestDriver; |
| 31 | |
| 32 | var program = require('commander'); |
| 33 | |
| 34 | program |
henrique | a2de410 | 2014-02-07 14:12:56 +0100 | [diff] [blame] | 35 | .option('-p, --protocol <protocol>', 'Set thrift protocol (binary|json) [protocol]') |
| 36 | .option('-t, --transport <transport>', 'Set thrift transport (buffered|framed) [transport]') |
Roger Meier | 57b354b | 2014-02-22 01:01:58 +0100 | [diff] [blame^] | 37 | .option('--ssl', 'use SSL transport') |
Roger Meier | 8909cbd | 2014-01-26 11:44:27 +0100 | [diff] [blame] | 38 | .parse(process.argv); |
| 39 | |
| 40 | var protocol = undefined; |
| 41 | var transport = undefined; |
| 42 | |
| 43 | if (program.protocol === "binary") { |
| 44 | protocol = ThriftProtocols.TBinaryProtocol; |
| 45 | } else if (program.protocol === "json") { |
| 46 | protocol = ThriftProtocols.TJSONProtocol; |
| 47 | } else { |
| 48 | //default |
| 49 | protocol = ThriftProtocols.TBinaryProtocol; |
| 50 | } |
| 51 | |
| 52 | if (program.transport === "framed") { |
| 53 | transport = ThriftTransports.TFramedTransport; |
| 54 | } else if (program.transport === "buffered") { |
| 55 | transport = ThriftTransports.TBufferedTransport; |
| 56 | } else { |
| 57 | //default |
| 58 | transport = ThriftTransports.TBufferedTransport; |
| 59 | } |
| 60 | |
Roger Meier | 57b354b | 2014-02-22 01:01:58 +0100 | [diff] [blame^] | 61 | var options = { |
Roger Meier | 8909cbd | 2014-01-26 11:44:27 +0100 | [diff] [blame] | 62 | transport: transport, |
| 63 | protocol: protocol |
Roger Meier | 57b354b | 2014-02-22 01:01:58 +0100 | [diff] [blame^] | 64 | }; |
| 65 | |
| 66 | var connection = undefined; |
| 67 | |
| 68 | if (program.ssl) { |
| 69 | options.rejectUnauthorized = false; |
| 70 | connection = thrift.createSSLConnection('localhost', 9090, options); |
| 71 | } else { |
| 72 | connection = thrift.createConnection('localhost', 9090, options); |
| 73 | } |
Roger Meier | 8909cbd | 2014-01-26 11:44:27 +0100 | [diff] [blame] | 74 | |
| 75 | var client = thrift.createClient(ThriftTest, connection); |
| 76 | |
| 77 | connection.on('error', function(err) { |
| 78 | assert(false, err); |
| 79 | }); |
| 80 | |
| 81 | ThriftTestDriver(client, function (status) { |
| 82 | console.log(status); |
| 83 | connection.end(); |
| 84 | }); |
| 85 | |
| 86 | // to make it also run on expresso |
| 87 | exports.expressoTest = function() {}; |