本文整理汇总了Golang中github.com/juju/juju/environs/config.Schema函数的典型用法代码示例。如果您正苦于以下问题:Golang Schema函数的具体用法?Golang Schema怎么用?Golang Schema使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了Schema函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Golang代码示例。
示例1: Schema
// Schema returns the configuration schema for an environment.
func (environProvider) Schema() environschema.Fields {
fields, err := config.Schema(configSchema)
if err != nil {
panic(err)
}
return fields
}
开发者ID:Pankov404,项目名称:juju,代码行数:8,代码来源:environprovider.go
示例2: TestSchema
func (*ConfigSuite) TestSchema(c *gc.C) {
fields := providerInstance.Schema()
// Check that all the fields defined in environs/config
// are in the returned schema.
globalFields, err := config.Schema(nil)
c.Assert(err, gc.IsNil)
for name, field := range globalFields {
c.Check(fields[name], jc.DeepEquals, field)
}
}
开发者ID:Pankov404,项目名称:juju,代码行数:10,代码来源:config_test.go
示例3: TestSchemaWithExtraOverlap
func (s *ConfigSuite) TestSchemaWithExtraOverlap(c *gc.C) {
schema, err := config.Schema(environschema.Fields{
"type": environschema.Attr{
Description: "duplicate",
Type: environschema.Tstring,
},
})
c.Assert(err, gc.ErrorMatches, `config field "type" clashes with global config`)
c.Assert(schema, gc.IsNil)
}
开发者ID:bac,项目名称:juju,代码行数:10,代码来源:config_test.go
示例4: TestSchemaNoExtra
func (s *ConfigSuite) TestSchemaNoExtra(c *gc.C) {
schema, err := config.Schema(nil)
c.Assert(err, gc.IsNil)
orig := make(environschema.Fields)
for name, field := range config.ConfigSchema {
orig[name] = field
}
c.Assert(schema, jc.DeepEquals, orig)
// Check that we actually returned a copy, not the original.
schema["foo"] = environschema.Attr{}
_, ok := orig["foo"]
c.Assert(ok, jc.IsFalse)
}
开发者ID:bac,项目名称:juju,代码行数:13,代码来源:config_test.go
示例5: TestSchemaWithExtraFields
func (s *ConfigSuite) TestSchemaWithExtraFields(c *gc.C) {
extraField := environschema.Attr{
Description: "fooish",
Type: environschema.Tstring,
}
schema, err := config.Schema(environschema.Fields{
"foo": extraField,
})
c.Assert(err, gc.IsNil)
c.Assert(schema["foo"], gc.DeepEquals, extraField)
delete(schema, "foo")
orig := make(environschema.Fields)
for name, field := range config.ConfigSchema {
orig[name] = field
}
c.Assert(schema, jc.DeepEquals, orig)
}
开发者ID:bac,项目名称:juju,代码行数:17,代码来源:config_test.go
注:本文中的github.com/juju/juju/environs/config.Schema函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论