2022-08-09 10:15:58 +01:00
|
|
|
package storage_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/federationapi/storage"
|
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
|
|
|
"github.com/matrix-org/dendrite/test"
|
|
|
|
"github.com/matrix-org/dendrite/test/testrig"
|
|
|
|
)
|
|
|
|
|
|
|
|
func mustCreateFederationDatabase(t *testing.T, dbType test.DBType) (storage.Database, func()) {
|
|
|
|
b, baseClose := testrig.CreateBaseDendrite(t, dbType)
|
|
|
|
connStr, dbClose := test.PrepareDBConnectionString(t, dbType)
|
|
|
|
db, err := storage.NewDatabase(b, &config.DatabaseOptions{
|
|
|
|
ConnectionString: config.DataSource(connStr),
|
|
|
|
}, b.Caches, b.Cfg.Global.ServerName)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("NewDatabase returned %s", err)
|
|
|
|
}
|
|
|
|
return db, func() {
|
|
|
|
dbClose()
|
|
|
|
baseClose()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestExpireEDUs(t *testing.T) {
|
|
|
|
var expireEDUTypes = map[string]time.Duration{
|
2022-08-19 06:28:33 +01:00
|
|
|
gomatrixserverlib.MReceipt: 0,
|
2022-08-09 10:15:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx := context.Background()
|
2022-10-21 11:50:51 +01:00
|
|
|
destinations := map[gomatrixserverlib.ServerName]struct{}{"localhost": {}}
|
2022-08-09 10:15:58 +01:00
|
|
|
test.WithAllDatabases(t, func(t *testing.T, dbType test.DBType) {
|
|
|
|
db, close := mustCreateFederationDatabase(t, dbType)
|
|
|
|
defer close()
|
|
|
|
// insert some data
|
|
|
|
for i := 0; i < 100; i++ {
|
|
|
|
receipt, err := db.StoreJSON(ctx, "{}")
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
2022-10-21 11:50:51 +01:00
|
|
|
err = db.AssociateEDUWithDestinations(ctx, destinations, receipt, gomatrixserverlib.MReceipt, expireEDUTypes)
|
2022-08-09 10:15:58 +01:00
|
|
|
assert.NoError(t, err)
|
|
|
|
}
|
|
|
|
// add data without expiry
|
|
|
|
receipt, err := db.StoreJSON(ctx, "{}")
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
// m.read_marker gets the default expiry of 24h, so won't be deleted further down in this test
|
2022-10-21 11:50:51 +01:00
|
|
|
err = db.AssociateEDUWithDestinations(ctx, destinations, receipt, "m.read_marker", expireEDUTypes)
|
2022-08-09 10:15:58 +01:00
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
// Delete expired EDUs
|
|
|
|
err = db.DeleteExpiredEDUs(ctx)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
// verify the data is gone
|
|
|
|
data, err := db.GetPendingEDUs(ctx, "localhost", 100)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, 1, len(data))
|
|
|
|
|
|
|
|
// check that m.direct_to_device is never expired
|
|
|
|
receipt, err = db.StoreJSON(ctx, "{}")
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
2022-10-21 11:50:51 +01:00
|
|
|
err = db.AssociateEDUWithDestinations(ctx, destinations, receipt, gomatrixserverlib.MDirectToDevice, expireEDUTypes)
|
2022-08-09 10:15:58 +01:00
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
err = db.DeleteExpiredEDUs(ctx)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
// We should get two EDUs, the m.read_marker and the m.direct_to_device
|
|
|
|
data, err = db.GetPendingEDUs(ctx, "localhost", 100)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, 2, len(data))
|
|
|
|
})
|
|
|
|
}
|