本文整理汇总了Golang中github.com/juju/juju/service/common.Conf.Validate方法的典型用法代码示例。如果您正苦于以下问题:Golang Conf.Validate方法的具体用法?Golang Conf.Validate怎么用?Golang Conf.Validate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/juju/juju/service/common.Conf
的用法示例。
在下文中一共展示了Conf.Validate方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: TestValidateMissingExecStart
func (*confSuite) TestValidateMissingExecStart(c *gc.C) {
conf := common.Conf{
Desc: "some service",
}
err := conf.Validate(renderer)
c.Check(err, gc.ErrorMatches, ".*missing ExecStart.*")
}
示例2: TestValidateMissingDesc
func (*confSuite) TestValidateMissingDesc(c *gc.C) {
conf := common.Conf{
ExecStart: "/path/to/some-command a b c",
}
err := conf.Validate(renderer)
c.Check(err, gc.ErrorMatches, ".*missing Desc.*")
}
示例3: TestValidateRelativeExecStart
func (*confSuite) TestValidateRelativeExecStart(c *gc.C) {
conf := common.Conf{
Desc: "some service",
ExecStart: "some-command a b c",
}
err := conf.Validate(renderer)
c.Check(err, gc.ErrorMatches, `.*relative path in ExecStart \(.*`)
}
示例4: TestValidatePartiallyQuotedExecutable
func (*confSuite) TestValidatePartiallyQuotedExecutable(c *gc.C) {
conf := common.Conf{
Desc: "some service",
ExecStart: "'/path/to/some-command a b c'",
}
err := conf.Validate(renderer)
c.Check(err, gc.ErrorMatches, `.*relative path in ExecStart \(.*`)
}
示例5: TestValidateDoubleQuotedExecutable
func (*confSuite) TestValidateDoubleQuotedExecutable(c *gc.C) {
conf := common.Conf{
Desc: "some service",
ExecStart: `"/path/to/some-command" a b c`,
}
err := conf.Validate(renderer)
c.Check(err, jc.ErrorIsNil)
}
示例6: TestValidateOkay
func (*confSuite) TestValidateOkay(c *gc.C) {
conf := common.Conf{
Desc: "some service",
ExecStart: "/path/to/some-command a b c",
}
err := conf.Validate(renderer)
c.Check(err, jc.ErrorIsNil)
}
示例7: validate
func validate(name string, conf common.Conf, renderer shell.Renderer) error {
if name == "" {
return errors.NotValidf("missing service name")
}
if err := conf.Validate(renderer); err != nil {
return errors.Trace(err)
}
if conf.ExtraScript != "" {
return errors.NotValidf("unexpected ExtraScript")
}
// We ignore Desc and Logfile.
for k := range conf.Limit {
if _, ok := limitMap[k]; !ok {
return errors.NotValidf("conf.Limit key %q", k)
}
}
return nil
}