mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-04 06:59:01 +01:00
444b4bbdb8
Adds `PUT /_matrix/client/v3/directory/list/appservice/{networkId}/{roomId}` and `DELTE /_matrix/client/v3/directory/list/appservice/{networkId}/{roomId}` support, as well as the ability to filter `/publicRooms` on networkID and including all networks.
100 lines
3.1 KiB
Go
100 lines
3.1 KiB
Go
package tables_test
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"sort"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
|
"github.com/matrix-org/dendrite/roomserver/storage/postgres"
|
|
"github.com/matrix-org/dendrite/roomserver/storage/sqlite3"
|
|
"github.com/matrix-org/dendrite/roomserver/storage/tables"
|
|
"github.com/matrix-org/dendrite/setup/config"
|
|
"github.com/matrix-org/dendrite/test"
|
|
)
|
|
|
|
func mustCreatePublishedTable(t *testing.T, dbType test.DBType) (tab tables.Published, close func()) {
|
|
t.Helper()
|
|
connStr, close := test.PrepareDBConnectionString(t, dbType)
|
|
db, err := sqlutil.Open(&config.DatabaseOptions{
|
|
ConnectionString: config.DataSource(connStr),
|
|
}, sqlutil.NewExclusiveWriter())
|
|
assert.NoError(t, err)
|
|
switch dbType {
|
|
case test.DBTypePostgres:
|
|
err = postgres.CreatePublishedTable(db)
|
|
assert.NoError(t, err)
|
|
tab, err = postgres.PreparePublishedTable(db)
|
|
case test.DBTypeSQLite:
|
|
err = sqlite3.CreatePublishedTable(db)
|
|
assert.NoError(t, err)
|
|
tab, err = sqlite3.PreparePublishedTable(db)
|
|
}
|
|
assert.NoError(t, err)
|
|
|
|
return tab, close
|
|
}
|
|
|
|
func TestPublishedTable(t *testing.T) {
|
|
ctx := context.Background()
|
|
alice := test.NewUser(t)
|
|
|
|
test.WithAllDatabases(t, func(t *testing.T, dbType test.DBType) {
|
|
tab, close := mustCreatePublishedTable(t, dbType)
|
|
defer close()
|
|
|
|
// Publish some rooms
|
|
publishedRooms := []string{}
|
|
asID := ""
|
|
nwID := ""
|
|
for i := 0; i < 10; i++ {
|
|
room := test.NewRoom(t, alice)
|
|
published := i%2 == 0
|
|
err := tab.UpsertRoomPublished(ctx, nil, room.ID, asID, nwID, published)
|
|
assert.NoError(t, err)
|
|
if published {
|
|
publishedRooms = append(publishedRooms, room.ID)
|
|
}
|
|
publishedRes, err := tab.SelectPublishedFromRoomID(ctx, nil, room.ID)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, published, publishedRes)
|
|
}
|
|
sort.Strings(publishedRooms)
|
|
|
|
// check that we get the expected published rooms
|
|
roomIDs, err := tab.SelectAllPublishedRooms(ctx, nil, "", true, true)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, publishedRooms, roomIDs)
|
|
|
|
// test an actual upsert
|
|
room := test.NewRoom(t, alice)
|
|
err = tab.UpsertRoomPublished(ctx, nil, room.ID, asID, nwID, true)
|
|
assert.NoError(t, err)
|
|
err = tab.UpsertRoomPublished(ctx, nil, room.ID, asID, nwID, false)
|
|
assert.NoError(t, err)
|
|
// should now be false, due to the upsert
|
|
publishedRes, err := tab.SelectPublishedFromRoomID(ctx, nil, room.ID)
|
|
assert.NoError(t, err)
|
|
assert.False(t, publishedRes, fmt.Sprintf("expected room %s to be unpublished", room.ID))
|
|
|
|
// network specific test
|
|
nwID = "irc"
|
|
room = test.NewRoom(t, alice)
|
|
err = tab.UpsertRoomPublished(ctx, nil, room.ID, asID, nwID, true)
|
|
assert.NoError(t, err)
|
|
publishedRooms = append(publishedRooms, room.ID)
|
|
sort.Strings(publishedRooms)
|
|
// should only return the room for network "irc"
|
|
allNWPublished, err := tab.SelectAllPublishedRooms(ctx, nil, nwID, true, true)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, []string{room.ID}, allNWPublished)
|
|
|
|
// check that we still get all published rooms regardless networkID
|
|
roomIDs, err = tab.SelectAllPublishedRooms(ctx, nil, "", true, true)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, publishedRooms, roomIDs)
|
|
})
|
|
}
|