當前位置: 首頁>>代碼示例>>Golang>>正文


Golang btesting.Evaluator類代碼示例

本文整理匯總了Golang中github.com/cronosun/buranv1/btesting.Evaluator的典型用法代碼示例。如果您正苦於以下問題:Golang Evaluator類的具體用法?Golang Evaluator怎麽用?Golang Evaluator使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Evaluator類的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: Array

func Array(e btesting.Evaluator, expecting interface{}, actual interface{}) {
	obj, ok := expecting.(btesting.Array)
	if !ok {
		e.T().Errorf("Unknown type (expecting array)")
		return
	}
	actualObj, ok := actual.([]interface{})
	if !ok {
		e.T().Errorf("Expecting to have a []interface{} but got %T, value: %v",
			actual, actual)
		return
	}

	expectingLen := len(obj)
	actualLen := len(actualObj)
	if expectingLen != actualLen {
		e.T().Errorf("Expecting both arrays to have equal length. But expecting has a length "+
			"of %v, actual has a length of %v.",
			expectingLen, actualLen)
		return
	}

	for index, v := range obj {
		e.Evaluate(v, actualObj[index])
		if e.T().Failed() {
			return
		}
	}
}
開發者ID:cronosun,項目名稱:buranv1,代碼行數:29,代碼來源:array.go

示例2: Eval

func Eval(e btesting.Evaluator, expecting interface{}, actual interface{}) {
	expFunction, ok := expecting.(btesting.EvalFunction)
	if !ok {
		e.T().Errorf("Unknown type")
		return
	}
	expFunction(e, actual)
}
開發者ID:cronosun,項目名稱:buranv1,代碼行數:8,代碼來源:eval.go

示例3: Default

func Default(e btesting.Evaluator, expecting interface{}, actual interface{}) {
	expectingString := fmt.Sprintf("%v", expecting)
	actualString := fmt.Sprintf("%v", actual)

	if expectingString != actualString {
		e.T().Errorf("Expecting to have something that gives string %v "+
			"but got something that gives string %v (Default Handler)",
			expectingString, actualString)
		return
	}
}
開發者ID:cronosun,項目名稱:buranv1,代碼行數:11,代碼來源:defaulthandler.go

示例4: Object

func Object(e btesting.Evaluator, expecting interface{}, actual interface{}) {
	obj, ok := expecting.(btesting.Object)
	if !ok {
		e.T().Errorf("Unknown type")
		return
	}
	actualObj, ok := actual.(map[string]interface{})
	if !ok {
		e.T().Errorf("Expecting to have a map[string]interface{} but got %T, value: %v",
			actual, actual)
		return
	}

	for k, v := range obj {
		actualValue := actualObj[k]
		e.Evaluate(v, actualValue)
		if e.T().Failed() {
			return
		}
	}
}
開發者ID:cronosun,項目名稱:buranv1,代碼行數:21,代碼來源:object.go

示例5: String

func String(e btesting.Evaluator, expecting interface{}, actual interface{}) {
	obj, ok := expecting.(string)
	if !ok {
		e.T().Errorf("Unknown type")
		return
	}
	actualObj, ok := actual.(string)
	if !ok {
		e.T().Errorf("Expecting to have a string but got %T, value: %v",
			actual, actual)
		return
	}

	if actualObj != obj {
		e.T().Errorf("Expecting string %v but got string %v", obj, actualObj)
	}
}
開發者ID:cronosun,項目名稱:buranv1,代碼行數:17,代碼來源:string.go

示例6: ByteSlice

func ByteSlice(e btesting.Evaluator, expecting interface{}, actual interface{}) {
	obj, ok := expecting.([]byte)
	if !ok {
		e.T().Errorf("Unknown type, need []byte")
		return
	}
	actualObj, ok := actual.([]byte)
	if !ok {
		e.T().Errorf("Expecting to have a []byte but got %T, value: %v",
			actual, actual)
		return
	}
	if bytes.Compare(actualObj, obj) != 0 {
		e.T().Errorf("Given bytes %v do not match bytes %v", obj, actualObj)
		return
	}
}
開發者ID:cronosun,項目名稱:buranv1,代碼行數:17,代碼來源:byteslice.go

示例7: Integer

func Integer(e btesting.Evaluator, expecting interface{}, actual interface{}) {
	_, _, inputAsString, inputType := toUint64OrInt64(expecting)
	if inputType == intType_notIntegerintType {
		e.T().Errorf("Input is not an integer")
		return
	}

	if actual == nil {
		e.T().Errorf("Expecting to have a integer %v but have nil",
			expecting)
		return
	}

	actualAsString := fmt.Sprintf("%v", actual)

	// Use "to string to compare"
	if inputAsString != actualAsString {
		e.T().Errorf("Expecting to have integer %v but got integer %v",
			inputAsString, actualAsString)
		return
	}
}
開發者ID:cronosun,項目名稱:buranv1,代碼行數:22,代碼來源:integer.go

示例8: Key

func Key(e btesting.Evaluator, expecting interface{}, actual interface{}) {
	obj, ok := expecting.(typing.Key)
	if !ok {
		e.T().Errorf("Unknown type, need typing.Key")
		return
	}

	switch actual := actual.(type) {
	case [][]byte:
		e.Evaluate(obj.ToBinary(), actual)
	case []string:
		e.Evaluate(obj.ToBase32Slice(), actual)
	case []interface{}:
		if len(actual) != len(obj) {
			e.T().Errorf("Expecting a key with %v elements but have only %v elements",
				len(obj), len(actual))
			return
		}
		for index, actualElement := range actual {
			switch actualElement := actualElement.(type) {
			case string:
				binaryElement, err := typing.Base32Decode(actualElement)
				if err != nil {
					e.T().Errorf("Error decoding key element: %v", err)
					return
				}
				e.Evaluate(obj[index], binaryElement)
				if e.T().Failed() {
					return
				}
			case []byte:
				e.Evaluate(obj[index], actualElement)
				if e.T().Failed() {
					return
				}
			default:
				e.T().Errorf("Unknown key element type (expect string or []byte): %T", actualElement)
				return
			}
		}
	default:
		e.T().Errorf("Unknown 'actual' type. Need [][]byte or []string, have: %T", actual)
	}
}
開發者ID:cronosun,項目名稱:buranv1,代碼行數:44,代碼來源:keys.go


注:本文中的github.com/cronosun/buranv1/btesting.Evaluator類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。