httptest4net是能够自定义HTTP压力测试的工具,用户能够根据本身的状况编写测试用例加载到httptest4net中并运行测试。因为最近须要对elasticsearch搜索集群进行一个不一样状况的测试,因此针对这个测试写了个简单的测试用例。 git
[Test("ES base")] public class ES_SearchUrlTester : IUrlTester { public ES_SearchUrlTester() { } public string Url { get; set; } static string[] urls = new string[] { "http://192.168.20.156:9200/gindex/gindex/_search", "http://192.168.20.158:9200/gindex/gindex/_search", "http://192.168.20.160:9200/gindex/gindex/_search" }; private static long mIndex = 0; private static List<string> mWords; protected static IList<string> Words() { if (mWords == null) { lock (typeof(ES_SearchUrlTester)) { if (mWords == null) { mWords = new List<string>(); using (System.IO.StreamReader reader = new StreamReader(@"D:\main.dic")) { string line; while ((line = reader.ReadLine()) != null) { mWords.Add(line); } } } } } return mWords; } /* {"query" : { "bool" : { "should" : [ { "field" : { "title" : "#key" } }, { "field" : { "kw" : "#key" } } ] } }, from:0, size:10 } */ private static string GetSearchUrlWord() { IList<string> words= Words(); System.Threading.Interlocked.Increment(ref mIndex); return Resource1.QueryString.Replace("#key", words[(int)(mIndex % words.Count)]); } public System.Net.HttpWebRequest CreateRequest() { var httpWebRequest = (HttpWebRequest)WebRequest.Create(urls[mIndex%urls.Length]); httpWebRequest.ContentType = "application/json"; httpWebRequest.KeepAlive = false; httpWebRequest.Method = "POST"; string json = GetSearchUrlWord(); using (var streamWriter = new StreamWriter(httpWebRequest.GetRequestStream())) { streamWriter.Write(json); streamWriter.Flush(); } return httpWebRequest; } public TestType Type { get { return TestType.POST; } } }
用例很简单根据节点和关键字构建不一样请求的URL和JSON数据包便可完成。把上面代码编译在DLL后放到httptest4net的运行目录下便可以加载这用例并进行测试。 github
我的站:www.ikende.com
我的开源项目github.com/IKende json