This repository has been archived by the owner on Oct 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement Sandbox notifications processor and publisher (#595)
- Loading branch information
1 parent
a8e277b
commit 029c295
Showing
7 changed files
with
271 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 62 additions & 0 deletions
62
flyteadmin/pkg/async/notifications/implementations/sandbox_processor.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
package implementations | ||
|
||
import ( | ||
"context" | ||
"time" | ||
|
||
"github.com/flyteorg/flyteadmin/pkg/async" | ||
"github.com/flyteorg/flyteadmin/pkg/async/notifications/interfaces" | ||
"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" | ||
"github.com/flyteorg/flytestdlib/logger" | ||
"github.com/golang/protobuf/proto" | ||
) | ||
|
||
type SandboxProcessor struct { | ||
email interfaces.Emailer | ||
subChan <-chan []byte | ||
} | ||
|
||
func (p *SandboxProcessor) StartProcessing() { | ||
for { | ||
logger.Warningf(context.Background(), "Starting SandBox notifications processor") | ||
err := p.run() | ||
logger.Errorf(context.Background(), "error with running processor err: [%v] ", err) | ||
time.Sleep(async.RetryDelay) | ||
} | ||
} | ||
|
||
func (p *SandboxProcessor) run() error { | ||
var emailMessage admin.EmailMessage | ||
|
||
for { | ||
select { | ||
case msg := <-p.subChan: | ||
err := proto.Unmarshal(msg, &emailMessage) | ||
if err != nil { | ||
logger.Errorf(context.Background(), "error with unmarshalling message [%v]", err) | ||
return err | ||
} | ||
|
||
err = p.email.SendEmail(context.Background(), emailMessage) | ||
if err != nil { | ||
logger.Errorf(context.Background(), "Error sending an email message for message [%s] with emailM with err: %v", emailMessage.String(), err) | ||
return err | ||
} | ||
default: | ||
logger.Debugf(context.Background(), "no message to process") | ||
return nil | ||
} | ||
} | ||
} | ||
|
||
func (p *SandboxProcessor) StopProcessing() error { | ||
logger.Debug(context.Background(), "call to sandbox stop processing.") | ||
return nil | ||
} | ||
|
||
func NewSandboxProcessor(subChan <-chan []byte, emailer interfaces.Emailer) interfaces.Processor { | ||
return &SandboxProcessor{ | ||
subChan: subChan, | ||
email: emailer, | ||
} | ||
} |
84 changes: 84 additions & 0 deletions
84
flyteadmin/pkg/async/notifications/implementations/sandbox_processor_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
package implementations | ||
|
||
import ( | ||
"context" | ||
"testing" | ||
"time" | ||
|
||
"github.com/flyteorg/flyteadmin/pkg/async/notifications/mocks" | ||
"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" | ||
"github.com/pkg/errors" | ||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
var mockSandboxEmailer mocks.MockEmailer | ||
|
||
func TestSandboxProcessor_StartProcessingSuccess(t *testing.T) { | ||
msgChan := make(chan []byte, 1) | ||
msgChan <- msg | ||
testSandboxProcessor := NewSandboxProcessor(msgChan, &mockSandboxEmailer) | ||
|
||
sendEmailValidationFunc := func(ctx context.Context, email admin.EmailMessage) error { | ||
assert.Equal(t, testEmail.Body, email.Body) | ||
assert.Equal(t, testEmail.RecipientsEmail, email.RecipientsEmail) | ||
assert.Equal(t, testEmail.SubjectLine, email.SubjectLine) | ||
assert.Equal(t, testEmail.SenderEmail, email.SenderEmail) | ||
return nil | ||
} | ||
|
||
mockSandboxEmailer.SetSendEmailFunc(sendEmailValidationFunc) | ||
assert.Nil(t, testSandboxProcessor.(*SandboxProcessor).run()) | ||
} | ||
|
||
func TestSandboxProcessor_StartProcessingNoMessage(t *testing.T) { | ||
msgChan := make(chan []byte, 1) | ||
testSandboxProcessor := NewSandboxProcessor(msgChan, &mockSandboxEmailer) | ||
go testSandboxProcessor.StartProcessing() | ||
time.Sleep(1 * time.Second) | ||
} | ||
|
||
func TestSandboxProcessor_StartProcessingError(t *testing.T) { | ||
msgChan := make(chan []byte, 1) | ||
msgChan <- msg | ||
|
||
emailError := errors.New("error running processor") | ||
sendEmailValidationFunc := func(ctx context.Context, email admin.EmailMessage) error { | ||
return emailError | ||
} | ||
mockSandboxEmailer.SetSendEmailFunc(sendEmailValidationFunc) | ||
|
||
testSandboxProcessor := NewSandboxProcessor(msgChan, &mockSandboxEmailer) | ||
go testSandboxProcessor.StartProcessing() | ||
|
||
// give time to receive the err in StartProcessing | ||
time.Sleep(1 * time.Second) | ||
assert.Zero(t, len(msgChan)) | ||
} | ||
|
||
func TestSandboxProcessor_StartProcessingMessageError(t *testing.T) { | ||
msgChan := make(chan []byte, 1) | ||
invalidProtoMessage := []byte("invalid message") | ||
msgChan <- invalidProtoMessage | ||
testSandboxProcessor := NewSandboxProcessor(msgChan, &mockSandboxEmailer) | ||
assert.NotNil(t, testSandboxProcessor.(*SandboxProcessor).run()) | ||
} | ||
|
||
func TestSandboxProcessor_StartProcessingEmailError(t *testing.T) { | ||
msgChan := make(chan []byte, 1) | ||
msgChan <- msg | ||
testSandboxProcessor := NewSandboxProcessor(msgChan, &mockSandboxEmailer) | ||
|
||
emailError := errors.New("error sending email") | ||
sendEmailValidationFunc := func(ctx context.Context, email admin.EmailMessage) error { | ||
return emailError | ||
} | ||
|
||
mockSandboxEmailer.SetSendEmailFunc(sendEmailValidationFunc) | ||
assert.NotNil(t, testSandboxProcessor.(*SandboxProcessor).run()) | ||
} | ||
|
||
func TestSandboxProcessor_StopProcessing(t *testing.T) { | ||
msgChan := make(chan []byte, 1) | ||
testSandboxProcessor := NewSandboxProcessor(msgChan, &mockSandboxEmailer) | ||
assert.Nil(t, testSandboxProcessor.StopProcessing()) | ||
} |
33 changes: 33 additions & 0 deletions
33
flyteadmin/pkg/async/notifications/implementations/sandbox_publisher.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
package implementations | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/flyteorg/flytestdlib/logger" | ||
"github.com/golang/protobuf/proto" | ||
) | ||
|
||
type SandboxPublisher struct { | ||
pubChan chan<- []byte | ||
} | ||
|
||
func (p *SandboxPublisher) Publish(ctx context.Context, notificationType string, msg proto.Message) error { | ||
logger.Debugf(ctx, "Publishing the following message [%s]", msg.String()) | ||
|
||
data, err := proto.Marshal(msg) | ||
|
||
if err != nil { | ||
logger.Errorf(ctx, "Failed to publish a message with key [%s] and message [%s] and error: %v", notificationType, msg.String(), err) | ||
return err | ||
} | ||
|
||
p.pubChan <- data | ||
|
||
return nil | ||
} | ||
|
||
func NewSandboxPublisher(pubChan chan<- []byte) *SandboxPublisher { | ||
return &SandboxPublisher{ | ||
pubChan: pubChan, | ||
} | ||
} |
36 changes: 36 additions & 0 deletions
36
flyteadmin/pkg/async/notifications/implementations/sandbox_publisher_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
package implementations | ||
|
||
import ( | ||
"context" | ||
"testing" | ||
|
||
"github.com/pkg/errors" | ||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
// mockMessage is a dummy proto message that will always fail to marshal | ||
type mockMessage struct{} | ||
|
||
func (m *mockMessage) Reset() {} | ||
func (m *mockMessage) String() string { return "mockMessage" } | ||
func (m *mockMessage) ProtoMessage() {} | ||
func (m *mockMessage) Marshal() ([]byte, error) { return nil, errors.New("forced marshal error") } | ||
|
||
func TestSandboxPublisher_Publish(t *testing.T) { | ||
msgChan := make(chan []byte, 1) | ||
publisher := NewSandboxPublisher(msgChan) | ||
|
||
err := publisher.Publish(context.Background(), "NOTIFICATION_TYPE", &testEmail) | ||
|
||
assert.NotZero(t, len(msgChan)) | ||
assert.Nil(t, err) | ||
} | ||
|
||
func TestSandboxPublisher_PublishMarshalError(t *testing.T) { | ||
msgChan := make(chan []byte, 1) | ||
publisher := NewSandboxPublisher(msgChan) | ||
|
||
err := publisher.Publish(context.Background(), "testMarshallError", &mockMessage{}) | ||
assert.Error(t, err) | ||
assert.Equal(t, "forced marshal error", err.Error()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters