本文整理汇总了Golang中github.com/juju/juju/state.ModelMigration类的典型用法代码示例。如果您正苦于以下问题:Golang ModelMigration类的具体用法?Golang ModelMigration怎么用?Golang ModelMigration使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ModelMigration类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: assertPhase
func assertPhase(c *gc.C, mig state.ModelMigration, phase migration.Phase) {
actualPhase, err := mig.Phase()
c.Assert(err, jc.ErrorIsNil)
c.Check(actualPhase, gc.Equals, phase)
}
示例2: checkIdAndAttempt
func checkIdAndAttempt(c *gc.C, mig state.ModelMigration, expected int) {
c.Check(mig.Id(), gc.Equals, fmt.Sprintf("%s:%d", mig.ModelUUID(), expected))
attempt, err := mig.Attempt()
c.Assert(err, jc.ErrorIsNil)
c.Check(attempt, gc.Equals, expected)
}
示例3: assertMigrationCleanedUp
func (s *MigrationSuite) assertMigrationCleanedUp(c *gc.C, mig state.ModelMigration) {
c.Assert(mig.PhaseChangedTime(), gc.Equals, s.clock.Now())
c.Assert(mig.EndTime(), gc.Equals, s.clock.Now())
assertMigrationNotActive(c, s.State2)
}