Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 1 | // Licensed to the Apache Software Foundation(ASF) under one |
| 2 | // or more contributor license agreements.See the NOTICE file |
| 3 | // distributed with this work for additional information |
| 4 | // regarding copyright ownership.The ASF licenses this file |
| 5 | // to you under the Apache License, Version 2.0 (the |
| 6 | // "License"); you may not use this file except in compliance |
| 7 | // with the License. You may obtain a copy of the License at |
| 8 | // |
| 9 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | // |
| 11 | // Unless required by applicable law or agreed to in writing, |
| 12 | // software distributed under the License is distributed on an |
| 13 | // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 14 | // KIND, either express or implied. See the License for the |
| 15 | // specific language governing permissions and limitations |
| 16 | // under the License. |
| 17 | |
| 18 | using System; |
| 19 | using System.Collections.Generic; |
| 20 | using ThriftTest; |
| 21 | |
| 22 | namespace Client |
| 23 | { |
| 24 | public class Program |
| 25 | { |
| 26 | public static int Main(string[] args) |
| 27 | { |
| 28 | try |
| 29 | { |
| 30 | Console.SetBufferSize(Console.BufferWidth, 4096); |
| 31 | } |
| 32 | catch (Exception) |
| 33 | { |
| 34 | Console.WriteLine("Failed to grow scroll-back buffer"); |
| 35 | } |
| 36 | |
Jens Geyer | b541c6f | 2019-11-23 18:50:22 +0100 | [diff] [blame^] | 37 | // run whatever mode is choosen, default to test impl |
| 38 | var firstArg = args.Length > 0 ? args[0] : string.Empty; |
| 39 | switch (firstArg) |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 40 | { |
| 41 | case "client": |
Jens Geyer | ec43954 | 2019-11-01 19:19:44 +0100 | [diff] [blame] | 42 | Console.WriteLine("The 'client' argument is no longer required."); |
| 43 | PrintHelp(); |
| 44 | return -1; |
| 45 | case "--performance-test": |
Jens Geyer | 5a17b13 | 2019-05-26 15:53:37 +0200 | [diff] [blame] | 46 | return Tests.PerformanceTests.Execute(); |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 47 | case "--help": |
| 48 | PrintHelp(); |
| 49 | return 0; |
| 50 | default: |
Jens Geyer | b541c6f | 2019-11-23 18:50:22 +0100 | [diff] [blame^] | 51 | return TestClient.Execute(new List<string>(args)); |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 52 | } |
| 53 | } |
| 54 | |
| 55 | private static void PrintHelp() |
| 56 | { |
| 57 | Console.WriteLine("Usage:"); |
Jens Geyer | ec43954 | 2019-11-01 19:19:44 +0100 | [diff] [blame] | 58 | Console.WriteLine(" Client [options]"); |
| 59 | Console.WriteLine(" Client --performance-test"); |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 60 | Console.WriteLine(" Client --help"); |
| 61 | Console.WriteLine(""); |
| 62 | |
| 63 | TestClient.PrintOptionsHelp(); |
| 64 | } |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | |