summaryrefslogtreecommitdiff
path: root/srv/src/chat/chat_it_test.go
blob: b0d4431ea82fae922ab81f708b1d22bb05aeaa10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
//go:build integration
// +build integration

package chat

import (
	"context"
	"strconv"
	"testing"
	"time"

	"github.com/google/uuid"
	cfgpkg "github.com/mediocregopher/blog.mediocregopher.com/srv/cfg"
	"github.com/mediocregopher/mediocre-go-lib/v2/mlog"
	"github.com/mediocregopher/radix/v4"
	"github.com/stretchr/testify/assert"
)

const roomTestHarnessMaxMsgs = 10

type roomTestHarness struct {
	ctx     context.Context
	room    Room
	allMsgs []Message
}

func (h *roomTestHarness) newMsg(t *testing.T) Message {
	msg, err := h.room.Append(h.ctx, Message{
		UserID: UserID{
			Name: uuid.New().String(),
			Hash: "0000",
		},
		Body: uuid.New().String(),
	})
	assert.NoError(t, err)

	t.Logf("appended message %s", msg.ID)

	h.allMsgs = append([]Message{msg}, h.allMsgs...)

	if len(h.allMsgs) > roomTestHarnessMaxMsgs {
		h.allMsgs = h.allMsgs[:roomTestHarnessMaxMsgs]
	}

	return msg
}

func newRoomTestHarness(t *testing.T) *roomTestHarness {

	ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
	t.Cleanup(cancel)

	cfg := cfgpkg.NewBlogCfg(cfgpkg.Params{
		Args: []string{}, // prevents the test process args from interfering
	})

	var radixClient cfgpkg.RadixClient
	radixClient.SetupCfg(cfg)
	t.Cleanup(func() { radixClient.Close() })

	if err := cfg.Init(ctx); err != nil {
		t.Fatal(err)
	}

	roomParams := RoomParams{
		Logger:      mlog.NewLogger(nil),
		Redis:       radixClient.Client,
		ID:          uuid.New().String(),
		MaxMessages: roomTestHarnessMaxMsgs,
	}

	t.Logf("creating test Room %q", roomParams.ID)
	room, err := NewRoom(ctx, roomParams)
	assert.NoError(t, err)

	t.Cleanup(func() {
		err := radixClient.Client.Do(context.Background(), radix.Cmd(
			nil, "DEL", roomParams.streamKey(),
		))
		assert.NoError(t, err)
	})

	return &roomTestHarness{ctx: ctx, room: room}
}

func TestRoom(t *testing.T) {
	t.Run("history", func(t *testing.T) {

		tests := []struct {
			numMsgs int
			limit   int
		}{
			{numMsgs: 0, limit: 1},
			{numMsgs: 1, limit: 1},
			{numMsgs: 2, limit: 1},
			{numMsgs: 2, limit: 10},
			{numMsgs: 9, limit: 2},
			{numMsgs: 9, limit: 3},
			{numMsgs: 9, limit: 4},
			{numMsgs: 15, limit: 3},
		}

		for i, test := range tests {
			t.Run(strconv.Itoa(i), func(t *testing.T) {
				t.Logf("test: %+v", test)

				h := newRoomTestHarness(t)

				for j := 0; j < test.numMsgs; j++ {
					h.newMsg(t)
				}

				var gotMsgs []Message
				var cursor string

				for {

					var msgs []Message
					var err error
					cursor, msgs, err = h.room.History(h.ctx, HistoryOpts{
						Cursor: cursor,
						Limit:  test.limit,
					})

					assert.NoError(t, err)
					assert.NotEmpty(t, cursor)

					if len(msgs) == 0 {
						break
					}

					gotMsgs = append(gotMsgs, msgs...)
				}

				assert.Equal(t, h.allMsgs, gotMsgs)
			})
		}
	})

	assertNextMsg := func(
		t *testing.T, expMsg Message,
		ctx context.Context, it MessageIterator,
	) {
		t.Helper()
		gotMsg, err := it.Next(ctx)
		assert.NoError(t, err)
		assert.Equal(t, expMsg, gotMsg)
	}

	t.Run("listen/already_populated", func(t *testing.T) {
		h := newRoomTestHarness(t)

		msgA, msgB, msgC := h.newMsg(t), h.newMsg(t), h.newMsg(t)
		_ = msgA
		_ = msgB

		itFoo, err := h.room.Listen(h.ctx, msgC.ID)
		assert.NoError(t, err)
		defer itFoo.Close()

		itBar, err := h.room.Listen(h.ctx, msgA.ID)
		assert.NoError(t, err)
		defer itBar.Close()

		msgD := h.newMsg(t)

		// itBar should get msgB and msgC before anything else.
		assertNextMsg(t, msgB, h.ctx, itBar)
		assertNextMsg(t, msgC, h.ctx, itBar)

		// now both iterators should give msgD
		assertNextMsg(t, msgD, h.ctx, itFoo)
		assertNextMsg(t, msgD, h.ctx, itBar)

		// timeout should be honored
		{
			timeoutCtx, timeoutCancel := context.WithTimeout(h.ctx, 1*time.Second)
			_, errFoo := itFoo.Next(timeoutCtx)
			_, errBar := itBar.Next(timeoutCtx)
			timeoutCancel()

			assert.ErrorIs(t, errFoo, context.DeadlineExceeded)
			assert.ErrorIs(t, errBar, context.DeadlineExceeded)
		}

		// new message should work
		{
			expMsg := h.newMsg(t)

			timeoutCtx, timeoutCancel := context.WithTimeout(h.ctx, 1*time.Second)
			gotFooMsg, errFoo := itFoo.Next(timeoutCtx)
			gotBarMsg, errBar := itBar.Next(timeoutCtx)
			timeoutCancel()

			assert.Equal(t, expMsg, gotFooMsg)
			assert.NoError(t, errFoo)
			assert.Equal(t, expMsg, gotBarMsg)
			assert.NoError(t, errBar)
		}

	})

	t.Run("listen/empty", func(t *testing.T) {
		h := newRoomTestHarness(t)

		it, err := h.room.Listen(h.ctx, "")
		assert.NoError(t, err)
		defer it.Close()

		msg := h.newMsg(t)
		assertNextMsg(t, msg, h.ctx, it)
	})
}