aboutsummaryrefslogtreecommitdiff
path: root/weed/mq/offset/end_to_end_test.go
blob: a4db891e1cf06be43b34e3ef665fee25b3147e51 (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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
package offset

import (
	"fmt"
	"os"
	"testing"
	"time"

	_ "github.com/mattn/go-sqlite3"
	"github.com/seaweedfs/seaweedfs/weed/pb/schema_pb"
)

// TestEndToEndOffsetFlow tests the complete offset management flow
func TestEndToEndOffsetFlow(t *testing.T) {
	// Create temporary database
	tmpFile, err := os.CreateTemp("", "e2e_offset_test_*.db")
	if err != nil {
		t.Fatalf("Failed to create temp database: %v", err)
	}
	tmpFile.Close()
	defer os.Remove(tmpFile.Name())

	// Create database with migrations
	db, err := CreateDatabase(tmpFile.Name())
	if err != nil {
		t.Fatalf("Failed to create database: %v", err)
	}
	defer db.Close()

	// Create SQL storage
	storage, err := NewSQLOffsetStorage(db)
	if err != nil {
		t.Fatalf("Failed to create SQL storage: %v", err)
	}
	defer storage.Close()

	// Create SMQ offset integration
	integration := NewSMQOffsetIntegration(storage)

	// Test partition
	partition := &schema_pb.Partition{
		RingSize:   1024,
		RangeStart: 0,
		RangeStop:  31,
		UnixTimeNs: time.Now().UnixNano(),
	}

	t.Run("PublishAndAssignOffsets", func(t *testing.T) {
		// Simulate publishing messages with offset assignment
		records := []PublishRecordRequest{
			{Key: []byte("user1"), Value: &schema_pb.RecordValue{}},
			{Key: []byte("user2"), Value: &schema_pb.RecordValue{}},
			{Key: []byte("user3"), Value: &schema_pb.RecordValue{}},
		}

		response, err := integration.PublishRecordBatch("test-namespace", "test-topic", partition, records)
		if err != nil {
			t.Fatalf("Failed to publish record batch: %v", err)
		}

		if response.BaseOffset != 0 {
			t.Errorf("Expected base offset 0, got %d", response.BaseOffset)
		}

		if response.LastOffset != 2 {
			t.Errorf("Expected last offset 2, got %d", response.LastOffset)
		}

		// Verify high water mark
		hwm, err := integration.GetHighWaterMark("test-namespace", "test-topic", partition)
		if err != nil {
			t.Fatalf("Failed to get high water mark: %v", err)
		}

		if hwm != 3 {
			t.Errorf("Expected high water mark 3, got %d", hwm)
		}
	})

	t.Run("CreateAndUseSubscription", func(t *testing.T) {
		// Create subscription from earliest
		sub, err := integration.CreateSubscription(
			"e2e-test-sub",
			"test-namespace", "test-topic",
			partition,
			schema_pb.OffsetType_RESET_TO_EARLIEST,
			0,
		)
		if err != nil {
			t.Fatalf("Failed to create subscription: %v", err)
		}

		// Subscribe to records
		responses, err := integration.SubscribeRecords(sub, 2)
		if err != nil {
			t.Fatalf("Failed to subscribe to records: %v", err)
		}

		if len(responses) != 2 {
			t.Errorf("Expected 2 responses, got %d", len(responses))
		}

		// Check subscription advancement
		if sub.CurrentOffset != 2 {
			t.Errorf("Expected current offset 2, got %d", sub.CurrentOffset)
		}

		// Get subscription lag
		lag, err := sub.GetLag()
		if err != nil {
			t.Fatalf("Failed to get lag: %v", err)
		}

		if lag != 1 { // 3 (hwm) - 2 (current) = 1
			t.Errorf("Expected lag 1, got %d", lag)
		}
	})

	t.Run("OffsetSeekingAndRanges", func(t *testing.T) {
		// Create subscription at specific offset
		sub, err := integration.CreateSubscription(
			"seek-test-sub",
			"test-namespace", "test-topic",
			partition,
			schema_pb.OffsetType_EXACT_OFFSET,
			1,
		)
		if err != nil {
			t.Fatalf("Failed to create subscription at offset 1: %v", err)
		}

		// Verify starting position
		if sub.CurrentOffset != 1 {
			t.Errorf("Expected current offset 1, got %d", sub.CurrentOffset)
		}

		// Get offset range
		offsetRange, err := sub.GetOffsetRange(2)
		if err != nil {
			t.Fatalf("Failed to get offset range: %v", err)
		}

		if offsetRange.StartOffset != 1 {
			t.Errorf("Expected start offset 1, got %d", offsetRange.StartOffset)
		}

		if offsetRange.Count != 2 {
			t.Errorf("Expected count 2, got %d", offsetRange.Count)
		}

		// Seek to different offset
		err = sub.SeekToOffset(0)
		if err != nil {
			t.Fatalf("Failed to seek to offset 0: %v", err)
		}

		if sub.CurrentOffset != 0 {
			t.Errorf("Expected current offset 0 after seek, got %d", sub.CurrentOffset)
		}
	})

	t.Run("PartitionInformationAndMetrics", func(t *testing.T) {
		// Get partition offset info
		info, err := integration.GetPartitionOffsetInfo("test-namespace", "test-topic", partition)
		if err != nil {
			t.Fatalf("Failed to get partition offset info: %v", err)
		}

		if info.EarliestOffset != 0 {
			t.Errorf("Expected earliest offset 0, got %d", info.EarliestOffset)
		}

		if info.LatestOffset != 2 {
			t.Errorf("Expected latest offset 2, got %d", info.LatestOffset)
		}

		if info.HighWaterMark != 3 {
			t.Errorf("Expected high water mark 3, got %d", info.HighWaterMark)
		}

		if info.ActiveSubscriptions != 2 { // Two subscriptions created above
			t.Errorf("Expected 2 active subscriptions, got %d", info.ActiveSubscriptions)
		}

		// Get offset metrics
		metrics := integration.GetOffsetMetrics()
		if metrics.PartitionCount != 1 {
			t.Errorf("Expected 1 partition, got %d", metrics.PartitionCount)
		}

		if metrics.ActiveSubscriptions != 2 {
			t.Errorf("Expected 2 active subscriptions in metrics, got %d", metrics.ActiveSubscriptions)
		}
	})
}

// TestOffsetPersistenceAcrossRestarts tests that offsets persist across system restarts
func TestOffsetPersistenceAcrossRestarts(t *testing.T) {
	// Create temporary database
	tmpFile, err := os.CreateTemp("", "persistence_test_*.db")
	if err != nil {
		t.Fatalf("Failed to create temp database: %v", err)
	}
	tmpFile.Close()
	defer os.Remove(tmpFile.Name())

	partition := &schema_pb.Partition{
		RingSize:   1024,
		RangeStart: 0,
		RangeStop:  31,
		UnixTimeNs: time.Now().UnixNano(),
	}

	var lastOffset int64

	// First session: Create database and assign offsets
	{
		db, err := CreateDatabase(tmpFile.Name())
		if err != nil {
			t.Fatalf("Failed to create database: %v", err)
		}

		storage, err := NewSQLOffsetStorage(db)
		if err != nil {
			t.Fatalf("Failed to create SQL storage: %v", err)
		}

		integration := NewSMQOffsetIntegration(storage)

		// Publish some records
		records := []PublishRecordRequest{
			{Key: []byte("msg1"), Value: &schema_pb.RecordValue{}},
			{Key: []byte("msg2"), Value: &schema_pb.RecordValue{}},
			{Key: []byte("msg3"), Value: &schema_pb.RecordValue{}},
		}

		response, err := integration.PublishRecordBatch("test-namespace", "test-topic", partition, records)
		if err != nil {
			t.Fatalf("Failed to publish records: %v", err)
		}

		lastOffset = response.LastOffset

		// Close connections
		storage.Close()
		db.Close()
	}

	// Second session: Reopen database and verify persistence
	{
		db, err := CreateDatabase(tmpFile.Name())
		if err != nil {
			t.Fatalf("Failed to reopen database: %v", err)
		}
		defer db.Close()

		storage, err := NewSQLOffsetStorage(db)
		if err != nil {
			t.Fatalf("Failed to create SQL storage: %v", err)
		}
		defer storage.Close()

		integration := NewSMQOffsetIntegration(storage)

		// Verify high water mark persisted
		hwm, err := integration.GetHighWaterMark("test-namespace", "test-topic", partition)
		if err != nil {
			t.Fatalf("Failed to get high water mark after restart: %v", err)
		}

		if hwm != lastOffset+1 {
			t.Errorf("Expected high water mark %d after restart, got %d", lastOffset+1, hwm)
		}

		// Assign new offsets and verify continuity
		newResponse, err := integration.PublishRecord("test-namespace", "test-topic", partition, []byte("msg4"), &schema_pb.RecordValue{})
		if err != nil {
			t.Fatalf("Failed to publish new record after restart: %v", err)
		}

		expectedNextOffset := lastOffset + 1
		if newResponse.BaseOffset != expectedNextOffset {
			t.Errorf("Expected next offset %d after restart, got %d", expectedNextOffset, newResponse.BaseOffset)
		}
	}
}

// TestConcurrentOffsetOperations tests concurrent offset operations
func TestConcurrentOffsetOperations(t *testing.T) {
	// Create temporary database
	tmpFile, err := os.CreateTemp("", "concurrent_test_*.db")
	if err != nil {
		t.Fatalf("Failed to create temp database: %v", err)
	}
	tmpFile.Close()
	defer os.Remove(tmpFile.Name())

	db, err := CreateDatabase(tmpFile.Name())
	if err != nil {
		t.Fatalf("Failed to create database: %v", err)
	}
	defer db.Close()

	storage, err := NewSQLOffsetStorage(db)
	if err != nil {
		t.Fatalf("Failed to create SQL storage: %v", err)
	}
	defer storage.Close()

	integration := NewSMQOffsetIntegration(storage)

	partition := &schema_pb.Partition{
		RingSize:   1024,
		RangeStart: 0,
		RangeStop:  31,
		UnixTimeNs: time.Now().UnixNano(),
	}

	// Concurrent publishers
	const numPublishers = 5
	const recordsPerPublisher = 10

	done := make(chan bool, numPublishers)

	for i := 0; i < numPublishers; i++ {
		go func(publisherID int) {
			defer func() { done <- true }()

			for j := 0; j < recordsPerPublisher; j++ {
				key := fmt.Sprintf("publisher-%d-msg-%d", publisherID, j)
				_, err := integration.PublishRecord("test-namespace", "test-topic", partition, []byte(key), &schema_pb.RecordValue{})
				if err != nil {
					t.Errorf("Publisher %d failed to publish message %d: %v", publisherID, j, err)
					return
				}
			}
		}(i)
	}

	// Wait for all publishers to complete
	for i := 0; i < numPublishers; i++ {
		<-done
	}

	// Verify total records
	hwm, err := integration.GetHighWaterMark("test-namespace", "test-topic", partition)
	if err != nil {
		t.Fatalf("Failed to get high water mark: %v", err)
	}

	expectedTotal := int64(numPublishers * recordsPerPublisher)
	if hwm != expectedTotal {
		t.Errorf("Expected high water mark %d, got %d", expectedTotal, hwm)
	}

	// Verify no duplicate offsets
	info, err := integration.GetPartitionOffsetInfo("test-namespace", "test-topic", partition)
	if err != nil {
		t.Fatalf("Failed to get partition info: %v", err)
	}

	if info.RecordCount != expectedTotal {
		t.Errorf("Expected record count %d, got %d", expectedTotal, info.RecordCount)
	}
}

// TestOffsetValidationAndErrorHandling tests error conditions and validation
func TestOffsetValidationAndErrorHandling(t *testing.T) {
	// Create temporary database
	tmpFile, err := os.CreateTemp("", "validation_test_*.db")
	if err != nil {
		t.Fatalf("Failed to create temp database: %v", err)
	}
	tmpFile.Close()
	defer os.Remove(tmpFile.Name())

	db, err := CreateDatabase(tmpFile.Name())
	if err != nil {
		t.Fatalf("Failed to create database: %v", err)
	}
	defer db.Close()

	storage, err := NewSQLOffsetStorage(db)
	if err != nil {
		t.Fatalf("Failed to create SQL storage: %v", err)
	}
	defer storage.Close()

	integration := NewSMQOffsetIntegration(storage)

	partition := &schema_pb.Partition{
		RingSize:   1024,
		RangeStart: 0,
		RangeStop:  31,
		UnixTimeNs: time.Now().UnixNano(),
	}

	t.Run("InvalidOffsetSubscription", func(t *testing.T) {
		// Try to create subscription with invalid offset
		_, err := integration.CreateSubscription(
			"invalid-sub",
			"test-namespace", "test-topic",
			partition,
			schema_pb.OffsetType_EXACT_OFFSET,
			100, // Beyond any existing data
		)
		if err == nil {
			t.Error("Expected error for subscription beyond high water mark")
		}
	})

	t.Run("NegativeOffsetValidation", func(t *testing.T) {
		// Try to create subscription with negative offset
		_, err := integration.CreateSubscription(
			"negative-sub",
			"test-namespace", "test-topic",
			partition,
			schema_pb.OffsetType_EXACT_OFFSET,
			-1,
		)
		if err == nil {
			t.Error("Expected error for negative offset")
		}
	})

	t.Run("DuplicateSubscriptionID", func(t *testing.T) {
		// Create first subscription
		_, err := integration.CreateSubscription(
			"duplicate-id",
			"test-namespace", "test-topic",
			partition,
			schema_pb.OffsetType_RESET_TO_EARLIEST,
			0,
		)
		if err != nil {
			t.Fatalf("Failed to create first subscription: %v", err)
		}

		// Try to create duplicate
		_, err = integration.CreateSubscription(
			"duplicate-id",
			"test-namespace", "test-topic",
			partition,
			schema_pb.OffsetType_RESET_TO_EARLIEST,
			0,
		)
		if err == nil {
			t.Error("Expected error for duplicate subscription ID")
		}
	})

	t.Run("OffsetRangeValidation", func(t *testing.T) {
		// Add some data first
		integration.PublishRecord("test-namespace", "test-topic", partition, []byte("test"), &schema_pb.RecordValue{})

		// Test invalid range validation
		err := integration.ValidateOffsetRange("test-namespace", "test-topic", partition, 5, 10) // Beyond high water mark
		if err == nil {
			t.Error("Expected error for range beyond high water mark")
		}

		err = integration.ValidateOffsetRange("test-namespace", "test-topic", partition, 10, 5) // End before start
		if err == nil {
			t.Error("Expected error for end offset before start offset")
		}

		err = integration.ValidateOffsetRange("test-namespace", "test-topic", partition, -1, 5) // Negative start
		if err == nil {
			t.Error("Expected error for negative start offset")
		}
	})
}