aboutsummaryrefslogtreecommitdiffstats
path: root/src/kube2msb/msb_work_test.go
blob: 9f5a823a8bf2bbbf1b28ef7fb368587c8b903b6f (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
/*
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 TestAddServiceMsb(t *testing.T) {
	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 := MSBAgentWorker{
		agent: &MSBAgent{
			url: server.URL,
		},
	}

	serviceInfo := `[{
		"port":"8080",
		"serviceName":"resgisterTest",
		"version":"v1",
		"url":"/register/test",
		"protocol":"http",
		"lb_policy":"random",
		"visualRange":"1",
		"path":"rt",
		"enable_ssl":true
	}]`

	client.AddService("192.168.1.10", serviceInfo)
}

func TestMergeIP(t *testing.T) {
	cases := []struct{ ip, sInfo, want string }{
		{"127.0.0.1", "{}", "{\"ip\":\"127.0.0.1\",}"},
		{"127.0.0.1", "[{}]", "[{\"ip\":\"127.0.0.1\",}]"},
		{"127.0.0.1", "{\"name\":\"msb\"}", "{\"ip\":\"127.0.0.1\",\"name\":\"msb\"}"},
		{"127.0.0.1", "{\"name\":\"msb\", \"child\":{\"name\":\"childname\"}}",
			"{\"ip\":\"127.0.0.1\",\"name\":\"msb\", \"child\":{\"ip\":\"127.0.0.1\",\"name\":\"childname\"}}"},
	}

	for _, c := range cases {
		got := mergeIP(c.ip, c.sInfo)
		if got != c.want {
			t.Errorf("mergeIP(%ip, %sInfo) == %got, want %want", c.ip, c.sInfo, got, c.want)
		}
	}
}