本文整理汇总了Golang中github.com/juju/juju/worker/uniter/runner/context.HookContext类的典型用法代码示例。如果您正苦于以下问题:Golang HookContext类的具体用法?Golang HookContext怎么用?Golang HookContext使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了HookContext类的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Golang代码示例。
示例1: addStorageToContext
func addStorageToContext(ctx *context.HookContext,
name string,
cons params.StorageConstraints,
) {
addOne := map[string]params.StorageConstraints{name: cons}
ctx.AddUnitStorage(addOne)
}
开发者ID:imoapps,项目名称:juju,代码行数:7,代码来源:context_test.go
示例2: AssertRelationContext
func (s *HookContextSuite) AssertRelationContext(c *gc.C, ctx *context.HookContext, relId int, remoteUnit string) *context.ContextRelation {
actualRemoteUnit, _ := ctx.RemoteUnitName()
c.Assert(actualRemoteUnit, gc.Equals, remoteUnit)
rel, err := ctx.HookRelation()
c.Assert(err, jc.ErrorIsNil)
c.Assert(rel.Id(), gc.Equals, relId)
return rel.(*context.ContextRelation)
}
开发者ID:kakamessi99,项目名称:juju,代码行数:8,代码来源:util_test.go
示例3: AssertStorageContext
func (s *HookContextSuite) AssertStorageContext(c *gc.C, ctx *context.HookContext, id string, attachment storage.StorageAttachmentInfo) {
fromCache, err := ctx.HookStorage()
c.Assert(err, jc.ErrorIsNil)
c.Assert(fromCache, gc.NotNil)
c.Assert(fromCache.Tag().Id(), gc.Equals, id)
c.Assert(fromCache.Kind(), gc.Equals, attachment.Kind)
c.Assert(fromCache.Location(), gc.Equals, attachment.Location)
}
开发者ID:kakamessi99,项目名称:juju,代码行数:8,代码来源:util_test.go
示例4: TestRequestRebootNowNoProcess
func (s *InterfaceSuite) TestRequestRebootNowNoProcess(c *gc.C) {
// A normal hook run or a juju-run command will record the *os.Process
// object of the running command, in HookContext. When requesting a
// reboot with the --now flag, the process is killed and only
// then will we set the reboot priority. This test basically simulates
// the case when the process calling juju-reboot is not recorded.
ctx := context.HookContext{}
err := ctx.RequestReboot(jujuc.RebootNow)
c.Assert(err, gc.ErrorMatches, "no process to kill")
priority := ctx.GetRebootPriority()
c.Assert(priority, gc.Equals, jujuc.RebootNow)
}
开发者ID:imoapps,项目名称:juju,代码行数:12,代码来源:context_test.go
示例5: TestNonActionCallsToActionMethodsFail
// TestNonActionCallsToActionMethodsFail does exactly what its name says:
// it simply makes sure that Action-related calls to HookContexts with a nil
// actionData member error out correctly.
func (s *InterfaceSuite) TestNonActionCallsToActionMethodsFail(c *gc.C) {
ctx := context.HookContext{}
_, err := ctx.ActionParams()
c.Check(err, gc.ErrorMatches, "not running an action")
err = ctx.SetActionFailed()
c.Check(err, gc.ErrorMatches, "not running an action")
err = ctx.SetActionMessage("foo")
c.Check(err, gc.ErrorMatches, "not running an action")
err = ctx.UpdateActionResults([]string{"1", "2", "3"}, "value")
c.Check(err, gc.ErrorMatches, "not running an action")
}
开发者ID:imoapps,项目名称:juju,代码行数:14,代码来源:context_test.go
示例6: TestRequestRebootNow
func (s *InterfaceSuite) TestRequestRebootNow(c *gc.C) {
ctx := context.HookContext{}
p := s.startProcess(c)
ctx.SetProcess(p)
go func() {
_, err := p.Wait()
c.Assert(err, jc.ErrorIsNil)
}()
err := ctx.RequestReboot(jujuc.RebootNow)
c.Assert(err, jc.ErrorIsNil)
priority := ctx.GetRebootPriority()
c.Assert(priority, gc.Equals, jujuc.RebootNow)
}
开发者ID:ktsakalozos,项目名称:juju,代码行数:13,代码来源:context_test.go
示例7: TestRequestRebootAfterHook
func (s *InterfaceSuite) TestRequestRebootAfterHook(c *gc.C) {
if runtime.GOOS == "windows" {
c.Skip("bug 1403084: Cannot send sigterm on windows")
}
ctx := context.HookContext{}
p := s.startProcess(c)
ctx.SetProcess(p)
err := ctx.RequestReboot(jujuc.RebootAfterHook)
c.Assert(err, jc.ErrorIsNil)
err = p.Signal(syscall.SIGTERM)
c.Assert(err, jc.ErrorIsNil)
_, err = p.Wait()
c.Assert(err, jc.ErrorIsNil)
priority := ctx.GetRebootPriority()
c.Assert(priority, gc.Equals, jujuc.RebootAfterHook)
}
开发者ID:ktsakalozos,项目名称:juju,代码行数:16,代码来源:context_test.go
示例8: AssertNotRelationContext
func (s *HookContextSuite) AssertNotRelationContext(c *gc.C, ctx *context.HookContext) {
rel, err := ctx.HookRelation()
c.Assert(rel, gc.IsNil)
c.Assert(err, gc.ErrorMatches, ".*")
}
开发者ID:kakamessi99,项目名称:juju,代码行数:5,代码来源:util_test.go
示例9: AssertNotStorageContext
func (s *HookContextSuite) AssertNotStorageContext(c *gc.C, ctx *context.HookContext) {
storageAttachment, err := ctx.HookStorage()
c.Assert(storageAttachment, gc.IsNil)
c.Assert(err, gc.ErrorMatches, ".*")
}
开发者ID:kakamessi99,项目名称:juju,代码行数:5,代码来源:util_test.go
示例10: AssertActionContext
func (s *HookContextSuite) AssertActionContext(c *gc.C, ctx *context.HookContext) {
actionData, err := ctx.ActionData()
c.Assert(actionData, gc.NotNil)
c.Assert(err, jc.ErrorIsNil)
}
开发者ID:kakamessi99,项目名称:juju,代码行数:5,代码来源:util_test.go
示例11: AssertNotActionContext
func (s *HookContextSuite) AssertNotActionContext(c *gc.C, ctx *context.HookContext) {
actionData, err := ctx.ActionData()
c.Assert(actionData, gc.IsNil)
c.Assert(err, gc.ErrorMatches, "not running an action")
}
开发者ID:kakamessi99,项目名称:juju,代码行数:5,代码来源:util_test.go
示例12: AssertCoreContext
func (s *HookContextSuite) AssertCoreContext(c *gc.C, ctx *context.HookContext) {
c.Assert(ctx.UnitName(), gc.Equals, "u/0")
c.Assert(context.ContextMachineTag(ctx), jc.DeepEquals, names.NewMachineTag("0"))
expect, expectErr := s.unit.PrivateAddress()
actual, actualErr := ctx.PrivateAddress()
c.Assert(actual, gc.Equals, expect.Value)
c.Assert(actualErr, jc.DeepEquals, expectErr)
expect, expectErr = s.unit.PublicAddress()
actual, actualErr = ctx.PublicAddress()
c.Assert(actual, gc.Equals, expect.Value)
c.Assert(actualErr, jc.DeepEquals, expectErr)
env, err := s.State.Environment()
c.Assert(err, jc.ErrorIsNil)
name, uuid := context.ContextEnvInfo(ctx)
c.Assert(name, gc.Equals, env.Name())
c.Assert(uuid, gc.Equals, env.UUID())
ids, err := ctx.RelationIds()
c.Assert(err, jc.ErrorIsNil)
c.Assert(ids, gc.HasLen, 2)
r, err := ctx.Relation(0)
c.Assert(err, jc.ErrorIsNil)
c.Assert(r.Name(), gc.Equals, "db")
c.Assert(r.FakeId(), gc.Equals, "db:0")
r, err = ctx.Relation(1)
c.Assert(err, jc.ErrorIsNil)
c.Assert(r.Name(), gc.Equals, "db")
c.Assert(r.FakeId(), gc.Equals, "db:1")
}
开发者ID:kakamessi99,项目名称:juju,代码行数:34,代码来源:util_test.go
注:本文中的github.com/juju/juju/worker/uniter/runner/context.HookContext类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论