本文整理汇总了Golang中github.com/juju/juju/state.Charm.Config方法的典型用法代码示例。如果您正苦于以下问题:Golang Charm.Config方法的具体用法?Golang Charm.Config怎么用?Golang Charm.Config使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/juju/juju/state.Charm
的用法示例。
在下文中一共展示了Charm.Config方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: parseSettingsCompatible
// parseSettingsCompatible parses setting strings in a way that is
// compatible with the behavior before this CL based on the issue
// http://pad.lv/1194945. Until then setting an option to an empty
// string caused it to reset to the default value. We now allow
// empty strings as actual values, but we want to preserve the API
// behavior.
func parseSettingsCompatible(ch *state.Charm, settings map[string]string) (charm.Settings, error) {
setSettings := map[string]string{}
unsetSettings := charm.Settings{}
// Split settings into those which set and those which unset a value.
for name, value := range settings {
if value == "" {
unsetSettings[name] = nil
continue
}
setSettings[name] = value
}
// Validate the settings.
changes, err := ch.Config().ParseSettingsStrings(setSettings)
if err != nil {
return nil, err
}
// Validate the unsettings and merge them into the changes.
unsetSettings, err = ch.Config().ValidateSettings(unsetSettings)
if err != nil {
return nil, err
}
for name := range unsetSettings {
changes[name] = nil
}
return changes, nil
}
示例2: assertCustomCharm
func assertCustomCharm(c *gc.C, ch *state.Charm, series string, meta *charm.Meta, config *charm.Config, revision int) {
// Check Charm interface method results.
c.Assert(ch.Meta(), gc.DeepEquals, meta)
c.Assert(ch.Config(), gc.DeepEquals, config)
c.Assert(ch.Revision(), gc.DeepEquals, revision)
// Test URL matches charm and expected series.
url := ch.URL()
c.Assert(url.Series, gc.Equals, series)
c.Assert(url.Revision, gc.Equals, ch.Revision())
// Ignore the BundleURL and BundleSHA256 methods, they're irrelevant.
}