This repository has been archived by the owner on Nov 25, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 677
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
keydb_server_keys
table tests (#3270)
Also moves some of the variable declarations out of the loop to, hopefully, reduce allocations.
- Loading branch information
Showing
3 changed files
with
129 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
package tables_test | ||
|
||
import ( | ||
"context" | ||
"testing" | ||
"time" | ||
|
||
"github.com/matrix-org/dendrite/federationapi/storage/postgres" | ||
"github.com/matrix-org/dendrite/federationapi/storage/sqlite3" | ||
"github.com/matrix-org/dendrite/federationapi/storage/tables" | ||
"github.com/matrix-org/dendrite/internal/sqlutil" | ||
"github.com/matrix-org/dendrite/setup/config" | ||
"github.com/matrix-org/dendrite/test" | ||
"github.com/matrix-org/gomatrixserverlib" | ||
"github.com/matrix-org/gomatrixserverlib/spec" | ||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func mustCreateServerKeyDB(t *testing.T, dbType test.DBType) (tables.FederationServerSigningKeys, func()) { | ||
connStr, close := test.PrepareDBConnectionString(t, dbType) | ||
db, err := sqlutil.Open(&config.DatabaseOptions{ | ||
ConnectionString: config.DataSource(connStr), | ||
}, sqlutil.NewExclusiveWriter()) | ||
if err != nil { | ||
t.Fatalf("failed to open database: %s", err) | ||
} | ||
var tab tables.FederationServerSigningKeys | ||
switch dbType { | ||
case test.DBTypePostgres: | ||
tab, err = postgres.NewPostgresServerSigningKeysTable(db) | ||
case test.DBTypeSQLite: | ||
tab, err = sqlite3.NewSQLiteServerSigningKeysTable(db) | ||
} | ||
if err != nil { | ||
t.Fatalf("failed to create table: %s", err) | ||
} | ||
return tab, close | ||
} | ||
|
||
func TestServerKeysTable(t *testing.T) { | ||
test.WithAllDatabases(t, func(t *testing.T, dbType test.DBType) { | ||
ctx, cancel := context.WithCancel(context.Background()) | ||
tab, close := mustCreateServerKeyDB(t, dbType) | ||
t.Cleanup(func() { | ||
close() | ||
cancel() | ||
}) | ||
|
||
req := gomatrixserverlib.PublicKeyLookupRequest{ | ||
ServerName: "localhost", | ||
KeyID: "ed25519:test", | ||
} | ||
expectedTimestamp := spec.AsTimestamp(time.Now().Add(time.Hour)) | ||
res := gomatrixserverlib.PublicKeyLookupResult{ | ||
VerifyKey: gomatrixserverlib.VerifyKey{Key: make(spec.Base64Bytes, 0)}, | ||
ExpiredTS: 0, | ||
ValidUntilTS: expectedTimestamp, | ||
} | ||
|
||
// Insert the key | ||
err := tab.UpsertServerKeys(ctx, nil, req, res) | ||
assert.NoError(t, err) | ||
|
||
selectKeys := map[gomatrixserverlib.PublicKeyLookupRequest]spec.Timestamp{ | ||
req: spec.AsTimestamp(time.Now()), | ||
} | ||
gotKeys, err := tab.BulkSelectServerKeys(ctx, nil, selectKeys) | ||
assert.NoError(t, err) | ||
|
||
// Now we should have a key for the req above | ||
assert.NotNil(t, gotKeys[req]) | ||
assert.Equal(t, res, gotKeys[req]) | ||
|
||
// "Expire" the key by setting ExpireTS to a non-zero value and ValidUntilTS to 0 | ||
expectedTimestamp = spec.AsTimestamp(time.Now()) | ||
res.ExpiredTS = expectedTimestamp | ||
res.ValidUntilTS = 0 | ||
|
||
// Update the key | ||
err = tab.UpsertServerKeys(ctx, nil, req, res) | ||
assert.NoError(t, err) | ||
|
||
gotKeys, err = tab.BulkSelectServerKeys(ctx, nil, selectKeys) | ||
assert.NoError(t, err) | ||
|
||
// The key should be expired | ||
assert.NotNil(t, gotKeys[req]) | ||
assert.Equal(t, res, gotKeys[req]) | ||
|
||
// Upsert a different key to validate querying multiple keys | ||
req2 := gomatrixserverlib.PublicKeyLookupRequest{ | ||
ServerName: "notlocalhost", | ||
KeyID: "ed25519:test2", | ||
} | ||
expectedTimestamp2 := spec.AsTimestamp(time.Now().Add(time.Hour)) | ||
res2 := gomatrixserverlib.PublicKeyLookupResult{ | ||
VerifyKey: gomatrixserverlib.VerifyKey{Key: make(spec.Base64Bytes, 0)}, | ||
ExpiredTS: 0, | ||
ValidUntilTS: expectedTimestamp2, | ||
} | ||
|
||
err = tab.UpsertServerKeys(ctx, nil, req2, res2) | ||
assert.NoError(t, err) | ||
|
||
// Select multiple keys | ||
selectKeys[req2] = spec.AsTimestamp(time.Now()) | ||
|
||
gotKeys, err = tab.BulkSelectServerKeys(ctx, nil, selectKeys) | ||
assert.NoError(t, err) | ||
|
||
// We now should receive two keys, one of which is expired | ||
assert.Equal(t, 2, len(gotKeys)) | ||
assert.Equal(t, res2, gotKeys[req2]) | ||
assert.Equal(t, res, gotKeys[req]) | ||
}) | ||
} |