瀏覽代碼

Tests for #5 not quite right. Closer.

Steve Thielemann 2 年之前
父節點
當前提交
6879ffe22d
共有 1 個文件被更改,包括 34 次插入6 次删除
  1. 34 6
      client_test.go

+ 34 - 6
client_test.go

@@ -45,15 +45,43 @@ func TestMarshal(t *testing.T) {
 
 	for _, field := range fields {
 		var name string = field.Name
-		var got string
-		var expect string
+		var isType reflect.Kind = verify_value.FieldByName(name).Kind()
 
-		got = verify_value.FieldByName(name).String()
-		expect = config_value.FieldByName(name).String()
+		// t.Logf("%s is %s\n", name, isType)
 
-		if got != expect {
-			t.Errorf("For %s Got %s, Expected %s", name, got, expect)
+		if isType == reflect.String {
+			var got, expect string
+
+			got = verify_value.FieldByName(name).String()
+			expect = config_value.FieldByName(name).String()
+
+			if got != expect {
+				t.Errorf("For %s Got %s, Expected %s", name, got, expect)
+			}
 		}
+
+		if isType == reflect.Bool {
+			var got, expect bool
+
+			got = verify_value.FieldByName(name).Bool()
+			expect = config_value.FieldByName(name).Bool()
+
+			if got != expect {
+				t.Errorf("For %s Got %t, Expected %t", name, got, expect)
+			}
+		}
+
+		if isType == reflect.Int {
+			var got, expect int64
+
+			got = verify_value.FieldByName(name).Int()
+			expect = config_value.FieldByName(name).Int()
+
+			if got != expect {
+				t.Errorf("For %s Got %d, Expected %d", name, got, expect)
+			}
+		}
+
 	}
 }