mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
fe1337536f
* fix(db): add additional connection pool for projection spooling * use correct connection pool for projections --------- Co-authored-by: Livio Spring <livio.a@gmail.com>
37 lines
560 B
Go
37 lines
560 B
Go
package dialect
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestDBPurpose_AppName(t *testing.T) {
|
|
tests := []struct {
|
|
p DBPurpose
|
|
want string
|
|
}{
|
|
{
|
|
p: DBPurposeQuery,
|
|
want: QueryAppName,
|
|
},
|
|
{
|
|
p: DBPurposeEventPusher,
|
|
want: EventstorePusherAppName,
|
|
},
|
|
{
|
|
p: DBPurposeProjectionSpooler,
|
|
want: ProjectionSpoolerAppName,
|
|
},
|
|
{
|
|
p: 99,
|
|
want: defaultAppName,
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.want, func(t *testing.T) {
|
|
assert.Equal(t, tt.want, tt.p.AppName())
|
|
})
|
|
}
|
|
}
|