mirror of https://github.com/knative/func.git
33 lines
619 B
Go
33 lines
619 B
Go
package function
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/cloudevents/sdk-go/v2/event"
|
|
)
|
|
|
|
// TestHandle ensures that Handle accepts a valid CloudEvent without error.
|
|
func TestHandle(t *testing.T) {
|
|
// Assemble
|
|
e := event.New()
|
|
e.SetID("id")
|
|
e.SetType("type")
|
|
e.SetSource("source")
|
|
e.SetData("text/plain", "data")
|
|
|
|
// Act
|
|
echo, err := Handle(context.Background(), e)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// Assert
|
|
if echo == nil {
|
|
t.Errorf("received nil event") // fail on nil
|
|
}
|
|
if string(echo.Data()) != "data" {
|
|
t.Errorf("the received event expected data to be 'data', got '%s'", echo.Data())
|
|
}
|
|
}
|