当前位置: 首页>>代码示例>>Golang>>正文


Golang Http.Send_request方法代码示例

本文整理汇总了Golang中github.com/elastic/packetbeat/config.Http.Send_request方法的典型用法代码示例。如果您正苦于以下问题:Golang Http.Send_request方法的具体用法?Golang Http.Send_request怎么用?Golang Http.Send_request使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在github.com/elastic/packetbeat/config.Http的用法示例。


在下文中一共展示了Http.Send_request方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: TestHttp_configsSettingAll

func TestHttp_configsSettingAll(t *testing.T) {

	http := HttpModForTests()
	config := new(config.Http)

	// Assign config vars
	config.Ports = []int{80, 8080}

	trueVar := true
	config.Send_request = &trueVar
	config.Send_response = &trueVar
	config.Hide_keywords = []string{"a", "b"}
	config.Strip_authorization = &trueVar
	config.Send_all_headers = &trueVar
	config.Split_cookie = &trueVar
	realIpHeader := "X-Forwarded-For"
	config.Real_ip_header = &realIpHeader

	// Set config
	http.SetFromConfig(*config)

	// Check if http config is set correctly
	assert.Equal(t, config.Ports, http.Ports)
	assert.Equal(t, config.Ports, http.GetPorts())
	assert.Equal(t, *config.Send_request, http.Send_request)
	assert.Equal(t, *config.Send_response, http.Send_response)
	assert.Equal(t, config.Hide_keywords, http.Hide_keywords)
	assert.Equal(t, *config.Strip_authorization, http.Strip_authorization)
	assert.True(t, http.Send_headers)
	assert.True(t, http.Send_all_headers)
	assert.Equal(t, *config.Split_cookie, http.Split_cookie)
	assert.Equal(t, strings.ToLower(*config.Real_ip_header), http.Real_ip_header)
}
开发者ID:venkateshdaram434,项目名称:packetbeat,代码行数:33,代码来源:http_test.go


注:本文中的github.com/elastic/packetbeat/config.Http.Send_request方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。