【测试平台系列】第一章手撸压力机(二)自定义http客户端配置

简介: 上一节简单实现了http发送get请求的客户端,但是在实际工作中,我们会对客户端有各种的设置,也会有各种的请求。

上一节简单实现了http发送get请求的客户端,但是在实际工作中,我们会对客户端有各种的设置,也会有各种的请求。
今天先看一下,如何定义http的客户端。(注意:咱们的http全部使用fasthttp开源框架)
首先看一下fasthttp.Client结构体源码:

// Client implements http client.
//  Client结构体实现http客户端。
// Copying Client by value is prohibited. Create new instance instead.
//  禁止按值复制Client。而是创建一个新实例。
// It is safe calling Client methods from concurrently running goroutines.
//  从并发运行的例程调用客户机方法是安全的。
// The fields of a Client should not be changed while it is in use.
// 客户端在使用时其字段不可更改。go中定义好的结构体字段都不可更改
type Client struct {  
    noCopy noCopy  // noCopy 字段我们不用管  
    // Client name. Used in User-Agent request header.  
    // Default client name is used if not set. 
    //  客户端的名称,在header中的user-agent使用,通常我们默认就好  
    Name string  
    // NoDefaultUserAgentHeader when set to true, causes the default 
    // User-Agent header to be excluded from the Request.  
    // NoDefaultUserAgentHeader设置为true时,导致默认的User-Agent报头从请求中排除。  
    // 默认为flase,表示User-Agent使用fasthttp的默认值  
    NoDefaultUserAgentHeader bool  
    // Callback for establishing new connections to hosts.  
    //  // Default Dial is used if not set.  
    // 该函数,通常不使用,可以不用管  
    Dial DialFunc  
    // Attempt to connect to both ipv4 and ipv6 addresses if set to true.  
    //  
    // This option is used only if default TCP dialer is used,  
    // i.e. if Dial is blank.  
    //  
    // By default client connects only to ipv4 addresses,  
    // since unfortunately ipv6 remains broken in many networks worldwide :)  
    // 默认即可,不用管  
    DialDualStack bool  
    // TLS config for https connections.  
    // https连接的TLS配置。  
    // Default TLS config is used if not set.  
    // 如果没有设置,使用默认的TLS配置。  
    // 这里使用的是tls.Config指针类型。可以在我们使用的时候配置  
    TLSConfig *tls.Config  
    // Maximum number of connections per each host which may be established.  
    // 每台主机可以建立的最大连接数。  
    // DefaultMaxConnsPerHost is used if not set.  
    // 如果没有设置,则使用DefaultMaxConnsPerHost。  
    MaxConnsPerHost int  
    // Idle keep-alive connections are closed after this duration.  
    //  空闲的保持连接在此持续时间之后关闭。  
    // By default idle connections are closed  
    // after DefaultMaxIdleConnDuration.  
    // 默认情况下,在DefaultMaxIdleConnDuration之后关闭空闲连接。  
    // 该连接如果空闲的话,在此时间后断开。  
    MaxIdleConnDuration time.Duration  
    // Keep-alive connections are closed after this duration.  
    // Keep-alive连接在此持续时间后关闭。  
    // By default connection duration is unlimited.  
    // 默认情况下,连接时间是不限制的。  
    MaxConnDuration time.Duration  
    // Maximum number of attempts for idempotent calls  
    //  
    // DefaultMaxIdemponentCallAttempts is used if not set.  
    // 默认,不用管  
    MaxIdemponentCallAttempts int  
    // Per-connection buffer size for responses' reading.  
    // This also limits the maximum header size.  
    //  
    // Default buffer size is used if 0.  
    // 默认,不用管  
    ReadBufferSize int  
    // Per-connection buffer size for requests' writing.  
    //  
    // Default buffer size is used if 0.  
    // 默认,不用管  WriteBufferSize int  
    // Maximum duration for full response reading (including body).  
    // 完整响应读取(包括body)的最大持续时间。  
    // By default response read timeout is unlimited.  
    // 默认情况下,响应读取超时时间是不限制的。  
    ReadTimeout time.Duration  
    // Maximum duration for full request writing (including body).  
    // 完整写入请求(包括请求体)的最大持续时间。  
    // By default request write timeout is unlimited.  
    // 默认情况下,请求写超时时间不受限制。  
    WriteTimeout time.Duration  
    // Maximum response body size.  
    //  
    // The client returns ErrBodyTooLarge if this limit is greater than 0  
    // and response body is greater than the limit.  
    //  
    // By default response body size is unlimited.  
    // 默认不用管  
    MaxResponseBodySize int  

    // Header names are passed as-is without normalization  
    // if this option is set.  
    //  
    // Disabled header names' normalization may be useful only for proxying  
    // responses to other clients expecting case-sensitive  
    // header names. See https://github.com/valyala/fasthttp/issues/57  
    // for details.  
    //  
    // By default request and response header names are normalized, i.e.  
    // The first letter and the first letters following dashes  
    // are uppercased, while all the other letters are lowercased.  
    // Examples:  
    //  
    //     * HOST -> Host  
    //     * content-type -> Content-Type 
    //     * cONTENT-lenGTH -> Content-Length  
    // 请求头是否按标准格式传输  
    DisableHeaderNamesNormalizing bool  
    // Path values are sent as-is without normalization 
    //  
    // Disabled path normalization may be useful for proxying incoming requests  
    // to servers that are expecting paths to be forwarded as-is.  
    //  
    // By default path values are normalized, i.e.  
    // extra slashes are removed, special characters are encoded.  
    // url路径是按照原样输出,还是按照规范化输出。默认按照规范化输出  
    DisablePathNormalizing bool  
    // Maximum duration for waiting for a free connection.  
    // 等待空闲连接的最大持续时间。  
    // By default will not waiting, return ErrNoFreeConns immediately  
    // 默认不等待,立即返回ErrNoFreeConns  
    MaxConnWaitTimeout time.Duration  
    // RetryIf controls whether a retry should be attempted after an error.  
    //  
    // By default will use isIdempotent function  
    // 默认,不用修改  
    RetryIf RetryIfFunc  
    // Connection pool strategy. Can be either LIFO or FIFO (default).  
    // 连接池策略。可以是后进先出或先进先出(默认)。  
    // 默认  
    ConnPoolStrategy ConnPoolStrategyType  
    // StreamResponseBody enables response body streaming  
    // StreamResponseBody使能响应体流  
    // 默认,有特定需求可使用  
    StreamResponseBody bool  
    // ConfigureClient configures the fasthttp.HostClient.  
    ConfigureClient func(hc *HostClient) error  
    mLock      sync.Mutex  
    m          map[string]*HostClient  
    ms         map[string]*HostClient  
    readerPool sync.Pool  
    writerPool sync.Pool
}

根据上面解读fasthttp.Client, 我们可以找到我们通常使用的配置项,如下:

type Client struct {  
    //  客户端的名称,在header中的user-agent使用,通常我们默认就好  
    Name string  
    // NoDefaultUserAgentHeader when set to true, causes the default  
    // User-Agent header to be excluded from the Request.  
    // NoDefaultUserAgentHeader设置为true时,导致默认的User-Agent报头从请求中排除。  
    // 默认为flase,表示User-Agent使用fasthttp的默认值 
     NoDefaultUserAgentHeader bool  
     // https连接的TLS配置。这里使用的是tls.Config指针类型。可以在我们使用的时候配置  
     TLSConfig *tls.Config  
     // 每台主机可以建立的最大连接数。如果没有设置,则使用DefaultMaxConnsPerHost。  
     MaxConnsPerHost int  
     // 空闲的保持连接在此持续时间之后关闭。默认情况下,在DefaultMaxIdleConnDuration之后关闭空闲连接。
     // 该连接如果空闲的话,在此时间后断开。  
     MaxIdleConnDuration time.Duration  
     // Keep-alive连接在此持续时间后关闭。默认情况下,连接时间是不限制的。  
     MaxConnDuration time.Duration  
     // 默认情况下,响应读取超时时间是不限制的。  
     ReadTimeout time.Duration  
     // 默认情况下,请求写超时时间不受限制。  
     WriteTimeout time.Duration  
     // 请求头是否按标准格式传输  
     DisableHeaderNamesNormalizing bool  
     // url路径是按照原样输出,还是按照规范化输出。默认按照规范化输出  
     DisablePathNormalizing bool
}

通过上述梳理,我们知道通常使用的配置项为10项。我们在项目根目录下新建model文件夹,并在文件夹下新建http_model.go文件,代码如下:


package model
import (  
    "crypto/tls"
)
type HttpClientSettings struct {  
    //  客户端的名称,在header中的user-agent使用,通常我们默认就好  
    Name string  // 默认为flase,表示User-Agent使用fasthttp的默认值  N
    oDefaultUserAgentHeader bool  
    // https连接的TLS配置。这里使用的是tls.Config指针类型。可以在我们使用的时候配置  
    TLSConfig *tls.Config  
    // 每台主机可以建立的最大连接数。如果没有设置,则使用DefaultMaxConnsPerHost。  
    MaxConnsPerHost int  
    // 空闲的保持连接在此持续时间之后关闭。默认情况下,在DefaultMaxIdleConnDuration之后关闭空闲连接。  
    // 该连接如果空闲的话,在此时间后断开。  
    MaxIdleConnDuration int64  
    // Keep-alive连接在此持续时间后关闭。默认情况下,连接时间是不限制的。  
    MaxConnDuration int64  
    // 默认情况下,响应读取超时时间是不限制的。  
    ReadTimeout int64  
    // 默认情况下,请求写超时时间不受限制。 
    WriteTimeout int64  
    // 请求头是否按标准格式传输  
    DisableHeaderNamesNormalizing bool  
    // url路径是按照原样输出,还是按照规范化输出。默认按照规范化输出  
    DisablePathNormalizing bool
}

这样,我们http客户端的配置项,基本已经定义完成了。下面,我们修改一下server目录下的http_client.go文件的newHttpClient()方法,添加一个HttpClientSettings参数, 同时修改RequestHttp()方法,添加一个HttpClientSettings参数。具体修改如下:

package server
import (  
    "crypto/tls"  
    "fmt"  
    "github.com/valyala/fasthttp"  
    "kitchen-engine/model"  
    "time"
)
func RequestHttp(httpClientSettings model.HttpClientSettings) {  
    // 使用fasthttp 协程池  
    // 新建一个http请求  
    req := fasthttp.AcquireRequest()  
    defer fasthttp.ReleaseRequest(req)  
    // 新建一个http响应接受服务端的返回  
    resp := fasthttp.AcquireResponse()  
    defer fasthttp.ReleaseResponse(resp)  
    // 新建一个http的客户端, newHttpClient是一个方法,在下面  
    client := newHttpClient(httpClientSettings)  
    // 添加该请求的http方法:get、post、delete、update等等  
    req.Header.SetMethod("GET")  
    // 添加该请求的http的url  
    req.SetRequestURI("http://www.baidu.com")  

    // 开始请求  
    err := client.Do(req, resp)  
    if err != nil {    
        fmt.Sprintln("发送http请求错误:   ", err.Error())  
    }  
    // 打印请求的header  
    fmt.Println("resp:    ", req.Header.Header())
}
func newHttpClient(httpClientSettings model.HttpClientSettings) (httpClient *fasthttp.Client) {  
    // tls验证,关闭验证  
    tr := &tls.Config{    
        InsecureSkipVerify: true,  
    }  
    // 新建指针类型的客户端  
    httpClient = &fasthttp.Client{}  
    httpClient.TLSConfig = tr  
    if httpClientSettings.Name != "" {    
        httpClient.Name = httpClientSettings.Name  
    }  
    if httpClientSettings.NoDefaultUserAgentHeader {    
        httpClient.NoDefaultUserAgentHeader = true  
    }  
    // 如果最大连接数不为0,将设置此数  
    if httpClientSettings.MaxConnsPerHost != 0 {    
        httpClient.MaxConnsPerHost = httpClientSettings.MaxConnsPerHost  
    }  
    // url不按照标准输出,按照原样输出  
    if httpClientSettings.DisablePathNormalizing {    
        httpClient.DisablePathNormalizing = true  
    }  // 请求头不按标准格式传输  
    if httpClientSettings.DisableHeaderNamesNormalizing  {    
        httpClient.DisableHeaderNamesNormalizing = true  
    }  
    // 如果此时间不为0,那么将设置此时间。keep-alive维持此时长后将关闭。时间单位为毫秒  
    if httpClientSettings.MaxConnDuration != 0 {    
        httpClient.MaxConnDuration = time.Duration(httpClientSettings.MaxConnDuration) * time.Millisecond  
    }  
    if httpClientSettings.ReadTimeout != 0 {    
        httpClient.ReadTimeout = time.Duration(httpClientSettings.ReadTimeout) * time.Millisecond  
    }  
    if httpClientSettings.WriteTimeout != 0 {    
        httpClient.WriteTimeout = time.Duration(httpClientSettings.WriteTimeout) * time.Millisecond  
    }  
    // 该连接如果空闲的话,在此时间后断开。  
    if httpClientSettings.MaxIdleConnDuration != 0 {    
        httpClient.MaxIdleConnDuration = time.Duration(httpClientSettings.MaxIdleConnDuration) * time.Millisecond  
    }  
    return
}

至此,客户端配置项,我们已经修改的差不多了,Tls配置,我们以后再深入讲解。下面,我们在main函数中,创建一个HttpClientSettings,并调用RequestHttp()方法, 具体如下:


package main
import (  
  "kitchen-engine/model"  
  "kitchen-engine/server"
)

func main() {
  // 一个类型中的字段,可以重置,也可以使用默认值,在go中,所有的类型的初始值,都是字段类型的0值,比如string的初始值是""空字符串,int类型的初始值是0等等  
  httpClientSettings := model.HttpClientSettings{    
    Name: "测试厨房",   
    NoDefaultUserAgentHeader: true,    
    MaxConnDuration:          1000,  
  }  
  // 调用  
  server.RequestHttp(httpClientSettings)
}

执行结果如下:

req:   GET / HTTP/1.1
User-Agent: 测试厨房
Host: www.baidu.com

ok,慢慢的代码将深入,如果没有go语言基础,建议可以先学一下go的基础知识。

相关文章
|
4月前
|
Kubernetes 测试技术 Perl
混沌测试平台 Chaos Mesh
混沌测试平台 Chaos Mesh
125 1
|
13天前
|
人工智能 供应链 安全
AI辅助安全测试案例某电商-供应链平台平台安全漏洞
【11月更文挑战第13天】该案例介绍了一家电商供应链平台如何利用AI技术进行全面的安全测试,包括网络、应用和数据安全层面,发现了多个潜在漏洞,并采取了有效的修复措施,提升了平台的整体安全性。
|
22天前
|
监控 安全 测试技术
构建高效的精准测试平台:设计与实现指南
在软件开发过程中,精准测试是确保产品质量和性能的关键环节。一个精准的测试平台能够自动化测试流程,提高测试效率,缩短测试周期,并提供准确的测试结果。本文将分享如何设计和实现一个精准测试平台,从需求分析到技术选型,再到具体的实现步骤。
95 1
|
2月前
|
人工智能 监控 测试技术
云应用开发平台测试
云应用开发平台测试
63 2
|
22天前
|
监控 安全 测试技术
构建高效精准测试平台:设计与实现全攻略
在软件开发过程中,精准测试是确保产品质量的关键环节。一个高效、精准的测试平台能够自动化测试流程,提高测试覆盖率,缩短测试周期。本文将分享如何设计和实现一个精准测试平台,从需求分析到技术选型,再到具体的实现步骤。
48 0
|
3月前
|
JSON 移动开发 监控
快速上手|HTTP 接口功能自动化测试
HTTP接口功能测试对于确保Web应用和H5应用的数据正确性至关重要。这类测试主要针对后台HTTP接口,通过构造不同参数输入值并获取JSON格式的输出结果来进行验证。HTTP协议基于TCP连接,包括请求与响应模式。请求由请求行、消息报头和请求正文组成,响应则包含状态行、消息报头及响应正文。常用的请求方法有GET、POST等,而响应状态码如2xx代表成功。测试过程使用Python语言和pycurl模块调用接口,并通过断言机制比对实际与预期结果,确保功能正确性。
263 3
快速上手|HTTP 接口功能自动化测试
|
4月前
|
测试技术 Android开发 iOS开发
Appium 是一个开源的自动化测试框架,它支持多种平台和多种编程语言
Appium是一款开源自动化测试框架,支持iOS和Android多平台及多种编程语言。通过WebDriver协议,开发者可编写自动化测试脚本。在iPhone上实现屏幕点击等操作需安装Appium及其依赖,启动服务器,并设置所需的测试环境参数。利用Python等语言编写测试脚本,模拟用户交互行为,最后运行测试脚本来验证应用功能。对于iPhone测试,需准备真实设备或Xcode模拟器。
126 1
|
4月前
|
运维 Kubernetes 监控
|
19天前
|
JSON Java 测试技术
SpringCloud2023实战之接口服务测试工具SpringBootTest
SpringBootTest同时集成了JUnit Jupiter、AssertJ、Hamcrest测试辅助库,使得更容易编写但愿测试代码。
52 3
|
2月前
|
JSON 算法 数据可视化
测试专项笔记(一): 通过算法能力接口返回的检测结果完成相关指标的计算(目标检测)
这篇文章是关于如何通过算法接口返回的目标检测结果来计算性能指标的笔记。它涵盖了任务描述、指标分析(包括TP、FP、FN、TN、精准率和召回率),接口处理,数据集处理,以及如何使用实用工具进行文件操作和数据可视化。文章还提供了一些Python代码示例,用于处理图像文件、转换数据格式以及计算目标检测的性能指标。
68 0
测试专项笔记(一): 通过算法能力接口返回的检测结果完成相关指标的计算(目标检测)