本文整理匯總了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.
}