-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsoap_test.go
65 lines (58 loc) · 1.81 KB
/
soap_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
package vim25
import (
"crypto/tls"
"encoding/json"
"fmt"
"log"
"net/http"
"os"
"testing"
)
var si = ServiceInstance{"ServiceInstance", "ServiceInstance"}
var jsonEnc = json.NewEncoder(os.Stdout)
var vSphereURL = os.Getenv("VSPHERE_URL")
var vSphereLogin = os.Getenv("VSPHERE_LOGIN")
var vSpherePass = os.Getenv("VSPHERE_PASS")
func init() {
http.DefaultClient.Transport = &http.Transport{TLSClientConfig: &tls.Config{InsecureSkipVerify: true}}
// Debug = true
}
func TestServiceContent(t *testing.T) {
service := Service{Url: vSphereURL}
rsc := RetrieveServiceContent{This: &si}
var sc *ServiceContent
if body, err := service.SoapRequest(&Body{RetrieveServiceContentRequest: &rsc}); err == nil {
sc = body.RetrieveServiceContentResponse.Returnval
} else {
log.Fatal(err)
}
jsonEnc.Encode(sc)
}
func TestLogin(t *testing.T) {
service := Service{Url: vSphereURL}
rsc := RetrieveServiceContent{This: &si}
body, _ := service.SoapRequest(&Body{RetrieveServiceContentRequest: &rsc})
login := &Login{
This: body.RetrieveServiceContentResponse.Returnval.SessionManager,
Username: vSphereLogin,
Password: vSpherePass,
}
body, _ = service.SoapRequest(&Body{LoginRequest: login})
if body.Fault != nil {
fmt.Println(body.Fault)
}
jsonEnc.Encode(body.LoginResponse)
}
func TestCurrentTime(t *testing.T) {
service := Service{Url: vSphereURL}
rsc := RetrieveServiceContent{This: &si}
body, _ := service.SoapRequest(&Body{RetrieveServiceContentRequest: &rsc})
login := &Login{This: body.RetrieveServiceContentResponse.Returnval.SessionManager, Username: vSphereLogin, Password: vSpherePass}
service.SoapRequest(&Body{LoginRequest: login})
ct := &CurrentTime{This: si}
body, err := service.SoapRequest(&Body{CurrentTimeRequest: ct})
if err != nil {
log.Fatal(err)
}
jsonEnc.Encode(body.CurrentTimeResponse)
}