2022-08-14 10:04:15 -06:00
|
|
|
package event_test
|
|
|
|
|
|
|
|
import (
|
2022-08-14 10:56:00 -06:00
|
|
|
"encoding/json"
|
2022-08-14 10:04:15 -06:00
|
|
|
"testing"
|
|
|
|
|
2023-02-26 22:33:01 -07:00
|
|
|
"go.sour.is/ev/pkg/es/event"
|
2022-08-14 10:04:15 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
type Agg struct {
|
|
|
|
Value string
|
|
|
|
|
|
|
|
event.AggregateRoot
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ event.Aggregate = (*Agg)(nil)
|
|
|
|
|
|
|
|
func (a *Agg) streamID() string {
|
|
|
|
return "value-" + a.Value
|
|
|
|
}
|
|
|
|
|
|
|
|
// ApplyEvent applies the event to the aggrigate state
|
|
|
|
func (a *Agg) ApplyEvent(lis ...event.Event) {
|
|
|
|
for _, e := range lis {
|
|
|
|
switch e := e.(type) {
|
|
|
|
case *ValueApplied:
|
|
|
|
a.Value = e.Value
|
|
|
|
a.SetStreamID(a.streamID())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type ValueApplied struct {
|
|
|
|
Value string
|
|
|
|
|
2023-04-02 16:45:17 -06:00
|
|
|
event.IsEvent
|
2022-08-14 10:04:15 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
var _ event.Event = (*ValueApplied)(nil)
|
|
|
|
|
2022-08-15 08:05:04 -06:00
|
|
|
func (e *ValueApplied) MarshalBinary() ([]byte, error) {
|
2022-08-14 10:56:00 -06:00
|
|
|
return json.Marshal(e)
|
|
|
|
}
|
2022-08-15 08:05:04 -06:00
|
|
|
func (e *ValueApplied) UnmarshalBinary(b []byte) error {
|
2022-08-14 10:56:00 -06:00
|
|
|
return json.Unmarshal(b, e)
|
|
|
|
}
|
|
|
|
|
2022-08-14 10:04:15 -06:00
|
|
|
func TestAggregate(t *testing.T) {
|
|
|
|
agg := &Agg{}
|
|
|
|
event.Append(agg, &ValueApplied{Value: "one"})
|
|
|
|
}
|