-
Notifications
You must be signed in to change notification settings - Fork 129
/
http_test.go
84 lines (77 loc) · 3.34 KB
/
http_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package winrm
import (
"net/http"
"net"
"time"
. "gopkg.in/check.v1"
)
var response = `<s:Envelope xml:lang="en-US" xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:a="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:x="http://schemas.xmlsoap.org/ws/2004/09/transfer" xmlns:w="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd" xmlns:rsp="http://schemas.microsoft.com/wbem/wsman/1/windows/shell" xmlns:p="http://schemas.microsoft.com/wbem/wsman/1/wsman.xsd">
<s:Header>
<a:Action>http://schemas.xmlsoap.org/ws/2004/09/transfer/CreateResponse</a:Action>
<a:MessageID>uuid:195078CF-804B-41F7-A246-9CB3C1A41A9A</a:MessageID>
<a:To>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:To>
<a:RelatesTo>uuid:D00059E8-57D6-4035-AD8D-3EDC495DA163</a:RelatesTo>
</s:Header>
<s:Body>
<x:ResourceCreated>
<a:Address>http://107.20.128.235:15985/wsman</a:Address>
<a:ReferenceParameters>
<w:ResourceURI>http://schemas.microsoft.com/wbem/wsman/1/windows/shell/cmd</w:ResourceURI>
<w:SelectorSet>
<w:Selector Name="ShellId">67A74734-DD32-4F10-89DE-49A060483810</w:Selector>
</w:SelectorSet>
</a:ReferenceParameters>
</x:ResourceCreated>
<rsp:Shell xmlns:rsp="http://schemas.microsoft.com/wbem/wsman/1/windows/shell">
<rsp:ShellId>67A74734-DD32-4F10-89DE-49A060483810</rsp:ShellId>
<rsp:ResourceUri>http://schemas.microsoft.com/wbem/wsman/1/windows/shell/cmd</rsp:ResourceUri>
<rsp:Owner>Administrator</rsp:Owner>
<rsp:ClientIP>213.41.177.193</rsp:ClientIP>
<rsp:IdleTimeOut>PT7200.000S</rsp:IdleTimeOut>
<rsp:InputStreams>stdin</rsp:InputStreams>
<rsp:OutputStreams>stdout
stderr</rsp:OutputStreams>
<rsp:ShellRunTime>P0DT0H0M1S</rsp:ShellRunTime>
<rsp:ShellInactivity>P0DT0H0M1S</rsp:ShellInactivity>
</rsp:Shell>
</s:Body>
</s:Envelope>`
func (s *WinRMSuite) TestHttpRequest(c *C) {
ts, host, port, err := StartTestServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/soap+xml")
_, _ = w.Write([]byte(response))
}))
c.Assert(err, IsNil)
defer ts.Close()
endpoint := NewEndpoint(host, port, false, false, nil, nil, nil, 0)
client, err := NewClient(endpoint, "test", "test")
c.Assert(err, IsNil)
shell, err := client.CreateShell()
c.Assert(err, IsNil)
c.Assert(shell.id, Equals, "67A74734-DD32-4F10-89DE-49A060483810")
}
func (s *WinRMSuite) TestHttpViaCustomDialerRequest(c *C) {
normalDialer := (&net.Dialer{
Timeout: 30 * time.Second,
KeepAlive: 30 * time.Second,
}).Dial
usedCustomDialer := false
dial := func(network, addr string) (net.Conn, error) {
usedCustomDialer = true
return normalDialer(network, addr)
}
ts, host, port, err := StartTestServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/soap+xml")
_, _ = w.Write([]byte(response))
}))
c.Assert(err, IsNil)
defer ts.Close()
endpoint := NewEndpoint(host, port, false, false, nil, nil, nil, 0)
params := DefaultParameters
params.TransportDecorator = func() Transporter { return NewClientWithDial(dial) }
client, err := NewClientWithParameters(endpoint, "test", "test", params)
c.Assert(err, IsNil)
_, err = client.CreateShell()
c.Assert(err, IsNil)
c.Assert(usedCustomDialer, Equals, true)
}