This repository has been archived by the owner on Oct 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmain_test.go
129 lines (108 loc) · 3.55 KB
/
main_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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*
* Copyright (c) 2021 Enix, SAS
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing
* permissions and limitations under the License.
*
* Authors:
* Paul Laffitte <[email protected]>
* Arthur Chaloin <[email protected]>
* Alexandre Buisine <[email protected]>
* Joe Skazinski <[email protected]>
*/
package dothill
import (
"encoding/xml"
"fmt"
"os"
"testing"
"time"
"github.com/enix/dothill-api-go/v2/internal/mock"
. "github.com/onsi/gomega"
)
var client = NewClient()
func init() {
var exists bool
mock.LoadEnv()
client.Addr, exists = os.LookupEnv("TEST_STORAGEIP")
if exists {
fmt.Printf("Testing setup: %s=%s\n", "TEST_STORAGEIP", client.Addr)
}
client.Username, exists = os.LookupEnv("TEST_USERNAME")
if exists {
fmt.Printf("Testing setup: %s=%s\n", "TEST_USERNAME", client.Username)
}
client.Password, exists = os.LookupEnv("TEST_PASSWORD")
if exists {
fmt.Printf("Testing setup: %s=%s\n", "TEST_PASSWORD", client.Password)
}
}
func assert(t *testing.T, cond bool, msg string) {
if !cond {
t.Errorf(msg)
} else {
fmt.Printf("%s: OK\n", msg)
}
}
func TestLogin(t *testing.T) {
g := NewWithT(t)
g.Expect(client.Login()).To(BeNil())
}
func TestLoginFailed(t *testing.T) {
var wrongClient = NewClient()
wrongClient.Addr = client.Addr
wrongClient.Username = client.Username
wrongClient.Password = "wrongpassword"
g := NewWithT(t)
g.Expect(wrongClient.Login()).ToNot(BeNil())
}
func TestReLoginFailed(t *testing.T) {
var wrongClient = NewClient()
wrongClient.Addr = client.Addr
wrongClient.Username = client.Username
wrongClient.Password = client.Password
g := NewWithT(t)
g.Expect(wrongClient.Login()).To(BeNil())
wrongClient.Password = "wrongpassword"
wrongClient.sessionKey = "outdated-session-key"
_, status, err := wrongClient.Request("/bad/request")
g.Expect(err).NotTo(BeNil())
g.Expect(err).To(MatchError("Dothill API returned non-zero code 2 (Authentication Unsuccessful)"))
g.Expect(status.ResponseType).To(Equal("Error"))
// This test returns one of three different values based on the API version.
g.Expect(status.Response).Should(BeElementOf([]string{"re-login failed", "request failed", "Invalid sessionkey"}))
}
func TestInvalidXML(t *testing.T) {
g := NewGomegaWithT(t)
res, err := NewResponse([]byte(`<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<RESPONSE VERSION="L100">
<OBJECT basetype="status" name="status" oid="1">
<PROPERTY name="response-type" type="string" size="12" draw="false" sort="nosort" display-name="Response Type">
Success
</PROPERTY>`))
g.Expect(err).NotTo(BeNil())
g.Expect(err).To(MatchError(&xml.SyntaxError{
Msg: "unexpected EOF",
Line: 6,
}))
g.Expect(res).To(BeNil())
}
func TestBadRequest(t *testing.T) {
g := NewGomegaWithT(t)
response, status, err := client.Request("/bad/request")
g.Expect(response).To(BeNil())
g.Expect(status.ResponseType).To(Equal("Error"))
g.Expect(status.Response).To(Equal("request failed"))
g.Expect(status.Time).To(BeTemporally("~", time.Now(), time.Second))
g.Expect(err).NotTo(BeNil())
g.Expect(err).To(MatchError("API returned unexpected HTTP status 400"))
}