Skip to content

Commit

Permalink
Simplify logic
Browse files Browse the repository at this point in the history
Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
  • Loading branch information
gabriel-samfira committed Jul 4, 2024
1 parent ffe2d81 commit 4dd4151
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 12 deletions.
21 changes: 9 additions & 12 deletions database/sql/jobs.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,11 +142,10 @@ func (s *sqlDatabase) LockJob(_ context.Context, jobID int64, entityID string) e
}

asParams, err := sqlWorkflowJobToParamsJob(workflowJob)
if err == nil {
s.sendNotify(common.JobEntityType, common.UpdateOperation, asParams)
} else {
slog.With(slog.Any("error", err)).Error("failed to convert job to params")
if err != nil {
return errors.Wrap(err, "converting job")
}
s.sendNotify(common.JobEntityType, common.UpdateOperation, asParams)

return nil
}
Expand All @@ -172,11 +171,10 @@ func (s *sqlDatabase) BreakLockJobIsQueued(_ context.Context, jobID int64) (err
return errors.Wrap(err, "saving job")
}
asParams, err := sqlWorkflowJobToParamsJob(workflowJob)
if err == nil {
s.sendNotify(common.JobEntityType, common.UpdateOperation, asParams)
} else {
slog.With(slog.Any("error", err)).Error("failed to convert job to params")
if err != nil {
return errors.Wrap(err, "converting job")
}
s.sendNotify(common.JobEntityType, common.UpdateOperation, asParams)
return nil
}

Expand Down Expand Up @@ -206,11 +204,10 @@ func (s *sqlDatabase) UnlockJob(_ context.Context, jobID int64, entityID string)
}

asParams, err := sqlWorkflowJobToParamsJob(workflowJob)
if err == nil {
s.sendNotify(common.JobEntityType, common.UpdateOperation, asParams)
} else {
slog.With(slog.Any("error", err)).Error("failed to convert job to params")
if err != nil {
return errors.Wrap(err, "converting job")
}
s.sendNotify(common.JobEntityType, common.UpdateOperation, asParams)
return nil
}

Expand Down
12 changes: 12 additions & 0 deletions database/watcher/watcher_store_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ func (s *WatcherStoreTestSuite) TestJobWatcher() {
Operation: common.CreateOperation,
Payload: job,
}, event)
asJob, ok := event.Payload.(params.Job)
s.Require().True(ok)
s.Require().Equal(job.ID, int64(1))
s.Require().Equal(asJob.ID, int64(1))
case <-time.After(1 * time.Second):
s.T().Fatal("expected payload not received")
}
Expand Down Expand Up @@ -190,6 +194,10 @@ func (s *WatcherStoreTestSuite) TestInstanceWatcher() {
Operation: common.CreateOperation,
Payload: instance,
}, event)
asInstance, ok := event.Payload.(params.Instance)
s.Require().True(ok)
s.Require().Equal(instance.Name, "test-instance")
s.Require().Equal(asInstance.Name, "test-instance")
case <-time.After(1 * time.Second):
s.T().Fatal("expected payload not received")
}
Expand Down Expand Up @@ -282,6 +290,10 @@ func (s *WatcherStoreTestSuite) TestPoolWatcher() {
Operation: common.CreateOperation,
Payload: pool,
}, event)
asPool, ok := event.Payload.(params.Pool)
s.Require().True(ok)
s.Require().Equal(pool.Image, "test-image")
s.Require().Equal(asPool.Image, "test-image")
case <-time.After(1 * time.Second):
s.T().Fatal("expected payload not received")
}
Expand Down

0 comments on commit 4dd4151

Please sign in to comment.