aboutsummaryrefslogtreecommitdiffstats
path: root/src/kube2msb/msb_client_test.go
blob: 74e71feecc3f17cd87ac45d29b6da662938f9532 (plain)
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/*
Copyright 2018 ZTE, Inc. and others.

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.
*/
package main

import (
	"encoding/json"
	"fmt"
	"io/ioutil"
	"net/http"
	"net/http/httptest"
	"testing"
)

func TestNewMSBAgent(t *testing.T) {
	url := urlPrefix + "/health"
	handler := func(res http.ResponseWriter, req *http.Request) {
		if url != req.URL.String() {
			t.Errorf("newMSBAgent() health check url should be %s, not %s", url, req.URL)
		} else {
			res.WriteHeader(200)
			res.Header().Set("Content-Type", "application/xml")
			fmt.Fprintln(res, "regist success")
		}
	}
	server := httptest.NewServer(http.HandlerFunc(handler))
	defer server.Close()

	_, err := newMSBAgent(server.URL)

	if err != nil {
		t.Errorf("newMSBAgent() error")
	}
}

func TestServiceAnnotation2ServiceUnit(t *testing.T) {
	// nil test
	unitNil := ServiceAnnotation2ServiceUnit(nil)
	if unitNil != nil {
		t.Errorf("ServiceAnnotation2ServiceUnit input nil, expect nil the result is not nil")
	}

	// not nil test
	sa := ServiceAnnotation{
		IP:          "127.0.0.1",
		Port:        "80",
		ServiceName: "saTest",
		Version:     "v1",
		URL:         "http://localhost:80/msb",
		Protocol:    "http",
		LBPolicy:    "random",
		VisualRange: "all",
		Path:        "/path",
		EnableSSL:   true,
	}
	unit := ServiceAnnotation2ServiceUnit(&sa)

	if unit.Name != sa.ServiceName || unit.Version != sa.Version || unit.URL != sa.URL || unit.Protocol != sa.Protocol || unit.LBPolicy != sa.LBPolicy || unit.Path != sa.Path || unit.EnableSSL != sa.EnableSSL || unit.Instances[0].ServiceIP != sa.IP || unit.Instances[0].ServicePort != sa.Port {
		t.Errorf("ServiceAnnotation2ServiceUnit error")
	}
}

func TestRegister(t *testing.T) {
	ip := "192.168.1.10"
	serviceInfo := `[{
		"port":"8080",
		"serviceName":"resgisterTest",
		"version":"v1",
		"url":"/register/test",
		"protocol":"http",
		"lb_policy":"random",
		"visualRange":"1",
		"path":"rt",
		"enable_ssl":true
	}]`

	handler := func(res http.ResponseWriter, req *http.Request) {
		if req.Method != "POST" {
			t.Errorf("Register() request method should be 'Post' not %s", req.Method)
		} else if urlPrefix != req.URL.String() {
			t.Errorf("Register() url should be %s, not %s", urlPrefix, req.URL)
		} else {
			body, err := ioutil.ReadAll(req.Body)
			if err != nil {
				t.Errorf("Register() fail to read request body")
			}
			var su = ServiceUnit{}
			parseError := json.Unmarshal([]byte(body), &su)
			if parseError != nil {
				t.Errorf("Register() request body can not parse to ServiceUnit, %s", body)
				return
			} else {
				res.WriteHeader(200)
				res.Header().Set("Content-Type", "application/xml")
				fmt.Fprintln(res, "regist success")
			}
		}

	}
	server := httptest.NewServer(http.HandlerFunc(handler))
	defer server.Close()

	client := MSBAgent{
		url: server.URL,
	}

	client.Register(ip, serviceInfo)
}

func TestDeRegister(t *testing.T) {
	ip := "192.168.1.10"
	cases := []struct{ url, serviceInfo string }{
		{ // Version is ""
			urlPrefix + "/resgisterTest1/version/null/nodes/192.168.1.10/8080",
			`[{
				"port":"8080",
				"serviceName":"resgisterTest1",
				"version":"",
				"url":"/register/test",
				"protocol":"http",
				"lb_policy":"random",
				"visualRange":"1",
				"path":"rt",
				"enable_ssl":true
			}]`,
		}, { // version is not ""
			urlPrefix + "/resgisterTest2/version/v1/nodes/192.168.1.10/8080",
			`[{
				"port":"8080",
				"serviceName":"resgisterTest2",
				"version":"v1",
				"url":"/register/test",
				"protocol":"http",
				"lb_policy":"random",
				"visualRange":"1",
				"path":"rt",
				"enable_ssl":true
			}]`,
		},
	}

	for _, c := range cases {
		handler := func(res http.ResponseWriter, req *http.Request) {
			if req.Method != "DELETE" {
				t.Errorf("DeRegister() request method should be 'DELETE' not %s", req.Method)
			} else if c.url != req.URL.String() {
				t.Errorf("DeRegister() url should be %s, not %s", c.url, req.URL)
			} else {
				res.WriteHeader(200)
				res.Header().Set("Content-Type", "application/xml")
				fmt.Fprintln(res, "deregist success")
			}

		}
		server := httptest.NewServer(http.HandlerFunc(handler))
		defer server.Close()

		client := MSBAgent{
			url: server.URL,
		}

		client.DeRegister(ip, c.serviceInfo)
	}

}