summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLvbo163 <lv.bo163@zte.com.cn>2018-03-07 09:07:38 +0800
committerLvbo163 <lv.bo163@zte.com.cn>2018-03-07 09:10:09 +0800
commita8b7adbe4c7da68ec12eff8242bbf707bc3dd5f6 (patch)
tree7a8217a8237f1831e92eb6ab0375522c7a0b8808
parente25b8ef306bb1a8beb649ef3d30138f8a4528bda (diff)
add ut for getMsbUrl
add ut for the method which get url from start variable Issue-ID: MSB-163 Change-Id: I50e6e01225b532b74b6b7766e8c9da7b9a6e5c9d Signed-off-by: Lvbo163 <lv.bo163@zte.com.cn>
-rw-r--r--src/kube2msb/kube2msb_test.go63
1 files changed, 63 insertions, 0 deletions
diff --git a/src/kube2msb/kube2msb_test.go b/src/kube2msb/kube2msb_test.go
new file mode 100644
index 0000000..3a4e3d9
--- /dev/null
+++ b/src/kube2msb/kube2msb_test.go
@@ -0,0 +1,63 @@
+/*
+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 (
+ "os"
+ "testing"
+)
+
+func urlFormateValidate(t *testing.T, method string) {
+ cases := []struct{ in, want string }{
+ {"", ""}, // nil
+ {"urlFormatError", ""}, // error
+ {"exmaple.com/", ""}, // Scheme == ""
+ {"http://", ""}, // Host == ""
+ {"http://:/", ""}, // Host == ":"
+ {"http://:/msb", ""}, // Host == ":"
+ {"http://192.168.1.100:8080/$var1", "http://192.168.1.100:8080/value1"}, // os.env
+ {"http://192.168.1.100:8080/$var1/$var2", "http://192.168.1.100:8080/value1/value2"}, //
+ {"http://192.168.1.100:8080/$var1/$var1", "http://192.168.1.100:8080/value1/value1"}, //
+ {"http://192.168.1.100:8080/$var1", "http://192.168.1.100:8080/value1"}, //
+ {"http://192.168.1.100:8080/msb", "http://192.168.1.100:8080/msb"}, //
+ {"http://192.168.1.100/msb", "http://192.168.1.100/msb"}, //
+ {"http://192.168.1.100/", "http://192.168.1.100/"}, //
+ {"postgres://user:pass@host.com:5432/path?k=v#f", "postgres://user:pass@host.com:5432/path?k=v#f"},
+ }
+
+ // set os env
+ os.Setenv("var1", "value1")
+ os.Setenv("var2", "value2")
+ os.Setenv("var3", "value3")
+
+ for _, c := range cases {
+ var got string
+ if method == "getMSBUrl" {
+ argMSBUrl = &c.in
+ got, _ = getMSBUrl()
+ } else {
+ argKubeMasterUrl = &c.in
+ got, _ = getKubeMasterUrl()
+ }
+
+ if got != c.want {
+ t.Errorf("getMSBUrl() arg %s, want %s, got %s", c.in, c.want, got)
+ }
+ }
+}
+func TestGetMSBUrl(t *testing.T) {
+ urlFormateValidate(t, "getMSBUrl")
+}