// ConvertActions takes a generic getActionsFn to obtain a slice // of state.Action and then converts them to the API slice of // params.ActionResult. func ConvertActions(ar state.ActionReceiver, fn GetActionsFn) ([]params.ActionResult, error) { items := []params.ActionResult{} actions, err := fn() if err != nil { return items, err } for _, action := range actions { if action == nil { continue } items = append(items, MakeActionResult(ar.Tag(), action)) } return items, nil }
func assertReadyToTest(c *gc.C, receiver state.ActionReceiver) { // make sure there are no actions on the receiver already. actions, err := receiver.Actions() c.Assert(err, jc.ErrorIsNil) c.Assert(actions, gc.HasLen, 0) // make sure there are no actions pending already. actions, err = receiver.PendingActions() c.Assert(err, jc.ErrorIsNil) c.Assert(actions, gc.HasLen, 0) // make sure there are no actions running already. actions, err = receiver.RunningActions() c.Assert(err, jc.ErrorIsNil) c.Assert(actions, gc.HasLen, 0) // make sure there are no actions completed already. actions, err = receiver.CompletedActions() c.Assert(err, jc.ErrorIsNil) c.Assert(actions, gc.HasLen, 0) }