本文整理汇总了Golang中kego/io/ke.NewContext函数的典型用法代码示例。如果您正苦于以下问题:Golang NewContext函数的具体用法?Golang NewContext怎么用?Golang NewContext使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了NewContext函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: TestMalms
func TestMalms(t *testing.T) {
ctx := ke.NewContext(context.Background(), "kego.io/tests/data", nil)
Run(t, ctx, `{
"type": "multi",
"malms": {
"a": {
"b": {"type":"simple", "js": "c"},
"d": {"type":"simple", "js": "e"}
},
"f": {
"g": {"type":"simple", "js": "h"},
"i": {"type":"simple", "js": "j"}
}
}
}`,
TestValue(func(t *testing.T, v interface{}) {
require.Len(t, v.(*data.Multi).Malms, 2)
require.Len(t, v.(*data.Multi).Malms["a"], 2)
require.Len(t, v.(*data.Multi).Malms["f"], 2)
assert.Equal(t, "c", v.(*data.Multi).Malms["a"]["b"].Js)
assert.Equal(t, "e", v.(*data.Multi).Malms["a"]["d"].Js)
assert.Equal(t, "h", v.(*data.Multi).Malms["f"]["g"].Js)
assert.Equal(t, "j", v.(*data.Multi).Malms["f"]["i"].Js)
}),
)
}
示例2: TestRi
func TestRi(t *testing.T) {
ctx := ke.NewContext(context.Background(), "kego.io/tests/data", nil)
Run(t, ctx, `{
"type": "multi",
"ri": {"type": "system:@string", "default": "a"}
}`,
TestValue(func(t *testing.T, v interface{}) {
assert.Equal(t, "a", v.(*data.Multi).Ri.(*system.StringRule).Default.Value())
}),
)
}
示例3: TestSp
func TestSp(t *testing.T) {
ctx := ke.NewContext(context.Background(), "kego.io/tests/data", nil)
Run(t, ctx, `{
"type": "multi",
"sp": {"type": "system:package", "recursive": true}
}`,
TestValue(func(t *testing.T, v interface{}) {
assert.Equal(t, true, v.(*data.Multi).Sp.Recursive)
}),
)
}
示例4: TestNri2
func TestNri2(t *testing.T) {
ctx := ke.NewContext(context.Background(), "kego.io/tests/data", nil)
Run(t, ctx, `{
"type": "multi",
"nri": {"type": "aljn2", "value": 1.1}
}`,
TestValue(func(t *testing.T, v interface{}) {
assert.NotNil(t, v.(*data.Multi).Nri)
assert.Equal(t, 1.1, v.(*data.Multi).Nri.GetNumber(ctx).Value())
}),
)
}
示例5: TestSri2
func TestSri2(t *testing.T) {
ctx := ke.NewContext(context.Background(), "kego.io/tests/data", nil)
Run(t, ctx, `{
"type": "multi",
"sri": {"type": "aljs2", "value": "a"}
}`,
TestValue(func(t *testing.T, v interface{}) {
assert.NotNil(t, v.(*data.Multi).Sri)
assert.Equal(t, "a", v.(*data.Multi).Sri.GetString(ctx).Value())
}),
)
}
示例6: TestI
func TestI(t *testing.T) {
ctx := ke.NewContext(context.Background(), "kego.io/tests/data", nil)
Run(t, ctx, `{
"type": "multi",
"i": {"type": "facea", "a": "b"}
}`,
TestValue(func(t *testing.T, v interface{}) {
assert.NotNil(t, v.(*data.Multi).I)
assert.Equal(t, "b", v.(*data.Multi).I.Face())
}),
)
}
示例7: TestBri2
func TestBri2(t *testing.T) {
ctx := ke.NewContext(context.Background(), "kego.io/tests/data", nil)
Run(t, ctx, `{
"type": "multi",
"bri": {"type": "aljb2", "value": true}
}`,
TestValue(func(t *testing.T, v interface{}) {
assert.NotNil(t, v.(*data.Multi).Bri)
assert.Equal(t, true, v.(*data.Multi).Bri.GetBool(ctx).Value())
}),
)
}
示例8: TestAljn
func TestAljn(t *testing.T) {
ctx := ke.NewContext(context.Background(), "kego.io/tests/data", nil)
Run(t, ctx, `{
"type": "multi",
"aljn": 1.1
}`,
TestValue(func(t *testing.T, v interface{}) {
assert.NotNil(t, v.(*data.Multi).Aljn)
assert.Equal(t, 1.1, v.(*data.Multi).Aljn.Value())
}),
)
}
示例9: TestAls
func TestAls(t *testing.T) {
ctx := ke.NewContext(context.Background(), "kego.io/tests/data", nil)
Run(t, ctx, `{
"type": "multi",
"als": {"type": "als", "js": "a"}
}`,
TestValue(func(t *testing.T, v interface{}) {
assert.NotNil(t, v.(*data.Multi).Als)
assert.Equal(t, "a", v.(*data.Multi).Als.Js)
}),
)
}
示例10: TestSr
func TestSr(t *testing.T) {
ctx := ke.NewContext(context.Background(), "kego.io/tests/data", nil)
Run(t, ctx, `{
"type": "multi",
"sr": "a"
}`,
TestValue(func(t *testing.T, v interface{}) {
assert.Equal(t, "kego.io/tests/data", v.(*data.Multi).Sr.Package)
assert.Equal(t, "a", v.(*data.Multi).Sr.Name)
}),
)
}
示例11: TestAljbi
func TestAljbi(t *testing.T) {
ctx := ke.NewContext(context.Background(), "kego.io/tests/data", nil)
Run(t, ctx, `{
"type": "multi",
"aljbi": true
}`,
TestValue(func(t *testing.T, v interface{}) {
assert.NotNil(t, v.(*data.Multi).Aljbi.GetAljb(ctx))
assert.IsType(t, new(data.Aljb), v.(*data.Multi).Aljbi)
assert.Equal(t, true, v.(*data.Multi).Aljbi.GetAljb(ctx).Value())
}),
)
}
示例12: TestAjb
func TestAjb(t *testing.T) {
ctx := ke.NewContext(context.Background(), "kego.io/tests/data", nil)
Run(t, ctx, `{
"type": "multi",
"ajb": [true, false]
}`,
TestValue(func(t *testing.T, v interface{}) {
require.Len(t, v.(*data.Multi).Ajb, 2)
assert.Equal(t, true, v.(*data.Multi).Ajb[0])
assert.Equal(t, false, v.(*data.Multi).Ajb[1])
}),
)
}
示例13: TestAjn
func TestAjn(t *testing.T) {
ctx := ke.NewContext(context.Background(), "kego.io/tests/data", nil)
Run(t, ctx, `{
"type": "multi",
"ajn": [1.1, 1.2]
}`,
TestValue(func(t *testing.T, v interface{}) {
require.Len(t, v.(*data.Multi).Ajn, 2)
assert.Equal(t, 1.1, v.(*data.Multi).Ajn[0])
assert.Equal(t, 1.2, v.(*data.Multi).Ajn[1])
}),
)
}
示例14: TestAalss
func TestAalss(t *testing.T) {
ctx := ke.NewContext(context.Background(), "kego.io/tests/data", nil)
Run(t, ctx, `{
"type": "multi",
"aalss": ["a", "b"]
}`,
TestValue(func(t *testing.T, v interface{}) {
require.Len(t, v.(*data.Multi).Aalss, 2)
assert.Equal(t, "a", v.(*data.Multi).Aalss[0].Value())
assert.Equal(t, "b", v.(*data.Multi).Aalss[1].Value())
}),
)
}
示例15: TestMjb
func TestMjb(t *testing.T) {
ctx := ke.NewContext(context.Background(), "kego.io/tests/data", nil)
Run(t, ctx, `{
"type": "multi",
"mjb": {"a": true, "b": false}
}`,
TestValue(func(t *testing.T, v interface{}) {
require.Len(t, v.(*data.Multi).Mjb, 2)
assert.Equal(t, true, v.(*data.Multi).Mjb["a"])
assert.Equal(t, false, v.(*data.Multi).Mjb["b"])
}),
)
}