本文整理汇总了Golang中github.com/juju/juju/resource/api/server.LegacyHTTPHandler类的典型用法代码示例。如果您正苦于以下问题:Golang LegacyHTTPHandler类的具体用法?Golang LegacyHTTPHandler怎么用?Golang LegacyHTTPHandler使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了LegacyHTTPHandler类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Golang代码示例。
示例1: TestServeHTTPPutSuccess
func (s *LegacyHTTPHandlerSuite) TestServeHTTPPutSuccess(c *gc.C) {
s.result.Resource.Name = "spam"
expected, err := json.Marshal(s.result)
c.Assert(err, jc.ErrorIsNil)
s.username = "youknowwho"
handler := server.LegacyHTTPHandler{
Connect: s.connect,
HandleUpload: s.handleUpload,
}
s.req.Method = "PUT"
copied := *s.req
req := &copied
handler.ServeHTTP(s.resp, req)
s.stub.CheckCallNames(c,
"Connect",
"HandleUpload",
"Header",
"Header",
"WriteHeader",
"Write",
)
s.stub.CheckCall(c, 0, "Connect", req)
s.stub.CheckCall(c, 1, "HandleUpload", "youknowwho", s.data, req)
s.stub.CheckCall(c, 4, "WriteHeader", http.StatusOK)
s.stub.CheckCall(c, 5, "Write", string(expected))
c.Check(req, jc.DeepEquals, s.req) // did not change
c.Check(s.header, jc.DeepEquals, http.Header{
"Content-Type": []string{"application/json"},
"Content-Length": []string{fmt.Sprint(len(expected))},
})
}
开发者ID:AlexisBruemmer,项目名称:juju,代码行数:33,代码来源:handler_test.go
示例2: TestServeHTTPConnectFailure
func (s *LegacyHTTPHandlerSuite) TestServeHTTPConnectFailure(c *gc.C) {
s.username = "youknowwho"
handler := server.LegacyHTTPHandler{
Connect: s.connect,
HandleUpload: s.handleUpload,
}
copied := *s.req
req := &copied
failure, expected := apiFailure(c, "<failure>", "")
s.stub.SetErrors(failure)
handler.ServeHTTP(s.resp, req)
s.stub.CheckCallNames(c,
"Connect",
"Header",
"Header",
"WriteHeader",
"Write",
)
s.stub.CheckCall(c, 0, "Connect", req)
s.stub.CheckCall(c, 3, "WriteHeader", http.StatusInternalServerError)
s.stub.CheckCall(c, 4, "Write", expected)
c.Check(req, jc.DeepEquals, s.req) // did not change
c.Check(s.header, jc.DeepEquals, http.Header{
"Content-Type": []string{"application/json"},
"Content-Length": []string{strconv.Itoa(len(expected))},
})
}
开发者ID:AlexisBruemmer,项目名称:juju,代码行数:29,代码来源:handler_test.go
示例3: TestServeHTTPUnsupportedMethod
func (s *LegacyHTTPHandlerSuite) TestServeHTTPUnsupportedMethod(c *gc.C) {
s.username = "youknowwho"
handler := server.LegacyHTTPHandler{
Connect: s.connect,
HandleUpload: s.handleUpload,
}
s.req.Method = "POST"
copied := *s.req
req := &copied
_, expected := apiFailure(c, `unsupported method: "POST"`, params.CodeMethodNotAllowed)
handler.ServeHTTP(s.resp, req)
s.stub.CheckCallNames(c,
"Connect",
"Header",
"Header",
"WriteHeader",
"Write",
)
s.stub.CheckCall(c, 0, "Connect", req)
s.stub.CheckCall(c, 3, "WriteHeader", http.StatusMethodNotAllowed)
s.stub.CheckCall(c, 4, "Write", expected)
c.Check(req, jc.DeepEquals, s.req) // did not change
c.Check(s.header, jc.DeepEquals, http.Header{
"Content-Type": []string{"application/json"},
"Content-Length": []string{strconv.Itoa(len(expected))},
})
}
开发者ID:AlexisBruemmer,项目名称:juju,代码行数:29,代码来源:handler_test.go
注:本文中的github.com/juju/juju/resource/api/server.LegacyHTTPHandler类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论