mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-22 11:41:38 +00:00
Fix UTs on x86
This commit is contained in:
parent
74dc54684b
commit
2c58bab6a8
@ -22,6 +22,12 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/matrix-org/gomatrixserverlib"
|
||||||
|
"github.com/nats-io/nats.go"
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
"go.uber.org/atomic"
|
||||||
|
"gotest.tools/v3/poll"
|
||||||
|
|
||||||
"github.com/matrix-org/dendrite/federationapi/producers"
|
"github.com/matrix-org/dendrite/federationapi/producers"
|
||||||
rsAPI "github.com/matrix-org/dendrite/roomserver/api"
|
rsAPI "github.com/matrix-org/dendrite/roomserver/api"
|
||||||
"github.com/matrix-org/dendrite/setup/config"
|
"github.com/matrix-org/dendrite/setup/config"
|
||||||
@ -30,11 +36,6 @@ import (
|
|||||||
"github.com/matrix-org/dendrite/syncapi/types"
|
"github.com/matrix-org/dendrite/syncapi/types"
|
||||||
"github.com/matrix-org/dendrite/test"
|
"github.com/matrix-org/dendrite/test"
|
||||||
keyAPI "github.com/matrix-org/dendrite/userapi/api"
|
keyAPI "github.com/matrix-org/dendrite/userapi/api"
|
||||||
"github.com/matrix-org/gomatrixserverlib"
|
|
||||||
"github.com/nats-io/nats.go"
|
|
||||||
"github.com/stretchr/testify/assert"
|
|
||||||
"go.uber.org/atomic"
|
|
||||||
"gotest.tools/v3/poll"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
@ -427,7 +428,7 @@ func TestProcessTransactionRequestEDUReceipt(t *testing.T) {
|
|||||||
roomID: map[string]interface{}{
|
roomID: map[string]interface{}{
|
||||||
"m.read": map[string]interface{}{
|
"m.read": map[string]interface{}{
|
||||||
"@john:kaer.morhen": map[string]interface{}{
|
"@john:kaer.morhen": map[string]interface{}{
|
||||||
"data": map[string]interface{}{
|
"data": map[string]int64{
|
||||||
"ts": 1533358089009,
|
"ts": 1533358089009,
|
||||||
},
|
},
|
||||||
"event_ids": []string{
|
"event_ids": []string{
|
||||||
@ -446,7 +447,7 @@ func TestProcessTransactionRequestEDUReceipt(t *testing.T) {
|
|||||||
roomID: map[string]interface{}{
|
roomID: map[string]interface{}{
|
||||||
"m.read": map[string]interface{}{
|
"m.read": map[string]interface{}{
|
||||||
"johnkaer.morhen": map[string]interface{}{
|
"johnkaer.morhen": map[string]interface{}{
|
||||||
"data": map[string]interface{}{
|
"data": map[string]int64{
|
||||||
"ts": 1533358089009,
|
"ts": 1533358089009,
|
||||||
},
|
},
|
||||||
"event_ids": []string{
|
"event_ids": []string{
|
||||||
@ -463,7 +464,7 @@ func TestProcessTransactionRequestEDUReceipt(t *testing.T) {
|
|||||||
roomID: map[string]interface{}{
|
roomID: map[string]interface{}{
|
||||||
"m.read": map[string]interface{}{
|
"m.read": map[string]interface{}{
|
||||||
"@john:bad.domain": map[string]interface{}{
|
"@john:bad.domain": map[string]interface{}{
|
||||||
"data": map[string]interface{}{
|
"data": map[string]int64{
|
||||||
"ts": 1533358089009,
|
"ts": 1533358089009,
|
||||||
},
|
},
|
||||||
"event_ids": []string{
|
"event_ids": []string{
|
||||||
|
Loading…
Reference in New Issue
Block a user