-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathHypertableOperationGeneratorTests.cs
More file actions
527 lines (452 loc) · 19.9 KB
/
HypertableOperationGeneratorTests.cs
File metadata and controls
527 lines (452 loc) · 19.9 KB
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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
using CmdScale.EntityFrameworkCore.TimescaleDB.Generators;
using CmdScale.EntityFrameworkCore.TimescaleDB.Operations;
using Microsoft.EntityFrameworkCore.Infrastructure;
using CmdScale.EntityFrameworkCore.TimescaleDB.Tests.Utils;
using CmdScale.EntityFrameworkCore.TimescaleDB.Abstractions;
namespace CmdScale.EntityFrameworkCore.TimescaleDB.Tests.Generators
{
public class HypertableOperationGeneratorTests
{
/// <summary>
/// A helper to run the generator and capture its string output.
/// </summary>
private static string GetGeneratedCode(dynamic operation)
{
IndentedStringBuilder builder = new();
HypertableOperationGenerator generator = new(true);
List<string> statements = generator.Generate(operation);
SqlBuilderHelper.BuildQueryString(statements, builder);
return builder.ToString();
}
// --- Tests for CreateHypertableOperation ---
[Fact]
public void Generate_Create_with_minimal_details_generates_correct_sql()
{
// Arrange
CreateHypertableOperation operation = new()
{
TableName = "MinimalTable",
Schema = "public",
TimeColumnName = "Timestamp"
};
string expected = @".Sql(@""
SELECT create_hypertable('public.""""MinimalTable""""', 'Timestamp');
"")";
// Act
string result = GetGeneratedCode(operation);
// Assert
Assert.Equal(SqlHelper.NormalizeSql(expected), SqlHelper.NormalizeSql(result));
}
[Fact]
public void Generate_Create_with_all_options_generates_comprehensive_sql()
{
// Arrange
CreateHypertableOperation operation = new()
{
TableName = "FullTable",
Schema = "custom_schema",
TimeColumnName = "EventTime",
ChunkTimeInterval = "1 day",
EnableCompression = true,
ChunkSkipColumns = ["DeviceId"],
AdditionalDimensions =
[
Dimension.CreateHash("LocationId", 4)
]
};
string expected = @".Sql(@""
SELECT create_hypertable('custom_schema.""""FullTable""""', 'EventTime', chunk_time_interval => INTERVAL '1 day');
SELECT add_dimension('custom_schema.""""FullTable""""', by_hash('LocationId', 4));
DO $$
DECLARE
license TEXT;
BEGIN
license := current_setting('timescaledb.license', true);
IF license IS NULL OR license != 'apache' THEN
EXECUTE 'ALTER TABLE """"custom_schema"""".""""FullTable"""" SET (timescaledb.compress = true)';
EXECUTE 'SET timescaledb.enable_chunk_skipping = ''ON''';
EXECUTE 'SELECT enable_chunk_skipping(''custom_schema.""""FullTable""""'', ''DeviceId'')';
ELSE
RAISE WARNING 'Skipping Community Edition features (compression, chunk skipping) - not available in Apache Edition';
END IF;
END $$;
"")";
// Act
string result = GetGeneratedCode(operation);
// Assert
Assert.Equal(SqlHelper.NormalizeSql(expected), SqlHelper.NormalizeSql(result));
}
[Fact]
public void Generate_Alter_WhenAddingChunkSkippingToUncompressedTable_ShouldAlsoEnableCompression()
{
// Arrange
AlterHypertableOperation operation = new()
{
TableName = "Metrics",
Schema = "custom_schema",
OldEnableCompression = false,
OldChunkSkipColumns = [],
EnableCompression = false,
ChunkSkipColumns = ["device_id"]
};
string expected = @".Sql(@""
DO $$
DECLARE
license TEXT;
BEGIN
license := current_setting('timescaledb.license', true);
IF license IS NULL OR license != 'apache' THEN
EXECUTE 'ALTER TABLE """"custom_schema"""".""""Metrics"""" SET (timescaledb.compress = true)';
EXECUTE 'SET timescaledb.enable_chunk_skipping = ''ON''';
EXECUTE 'SELECT enable_chunk_skipping(''custom_schema.""""Metrics""""'', ''device_id'')';
ELSE
RAISE WARNING 'Skipping Community Edition features (compression, chunk skipping) - not available in Apache Edition';
END IF;
END $$;
"")";
// Act
string result = GetGeneratedCode(operation);
// Assert
Assert.Equal(SqlHelper.NormalizeSql(expected), SqlHelper.NormalizeSql(result));
}
// --- Tests for AlterHypertableOperation ---
[Fact]
public void Generate_Alter_when_changing_compression_generates_correct_sql()
{
// Arrange
AlterHypertableOperation operation = new()
{
TableName = "SensorData",
Schema = "public",
EnableCompression = true,
OldEnableCompression = false
};
string expected = @".Sql(@""
DO $$
DECLARE
license TEXT;
BEGIN
license := current_setting('timescaledb.license', true);
IF license IS NULL OR license != 'apache' THEN
EXECUTE 'ALTER TABLE """"public"""".""""SensorData"""" SET (timescaledb.compress = true)';
ELSE
RAISE WARNING 'Skipping Community Edition features (compression, chunk skipping) - not available in Apache Edition';
END IF;
END $$;
"")";
// Act
string result = GetGeneratedCode(operation);
// Assert
Assert.Equal(SqlHelper.NormalizeSql(expected), SqlHelper.NormalizeSql(result));
}
[Fact]
public void Generate_Create_With_Compression_Segment_And_OrderBy_Generates_Correct_Sql()
{
// Arrange
CreateHypertableOperation operation = new()
{
TableName = "CompressedTable",
Schema = "public",
TimeColumnName = "Timestamp",
EnableCompression = true,
CompressionSegmentBy = ["TenantId", "DeviceId"],
CompressionOrderBy = ["Timestamp DESC", "Value ASC NULLS LAST"]
};
// Expected: implicit compress=true, plus segmentby/orderby strings
string expected = @".Sql(@""
SELECT create_hypertable('public.""""CompressedTable""""', 'Timestamp');
DO $$
DECLARE
license TEXT;
BEGIN
license := current_setting('timescaledb.license', true);
IF license IS NULL OR license != 'apache' THEN
EXECUTE 'ALTER TABLE """"public"""".""""CompressedTable"""" SET (timescaledb.compress = true, timescaledb.compress_segmentby = ''""""TenantId"""", """"DeviceId""""'', timescaledb.compress_orderby = ''""""Timestamp"""" DESC, """"Value"""" ASC NULLS LAST'')';
ELSE
RAISE WARNING 'Skipping Community Edition features (compression, chunk skipping) - not available in Apache Edition';
END IF;
END $$;
"")";
// Act
string result = GetGeneratedCode(operation);
// Assert
Assert.Equal(SqlHelper.NormalizeSql(expected), SqlHelper.NormalizeSql(result));
}
[Fact]
public void Generate_Alter_Adding_Compression_SegmentBy_Generates_Correct_Sql()
{
// Arrange
AlterHypertableOperation operation = new()
{
TableName = "Metrics",
Schema = "public",
// Adding segment by configuration
CompressionSegmentBy = ["DeviceId"],
OldCompressionSegmentBy = []
};
string expected = @".Sql(@""
DO $$
DECLARE
license TEXT;
BEGIN
license := current_setting('timescaledb.license', true);
IF license IS NULL OR license != 'apache' THEN
EXECUTE 'ALTER TABLE """"public"""".""""Metrics"""" SET (timescaledb.compress = true, timescaledb.compress_segmentby = ''""""DeviceId""""'')';
ELSE
RAISE WARNING 'Skipping Community Edition features (compression, chunk skipping) - not available in Apache Edition';
END IF;
END $$;
"")";
// Act
string result = GetGeneratedCode(operation);
// Assert
Assert.Equal(SqlHelper.NormalizeSql(expected), SqlHelper.NormalizeSql(result));
}
[Fact]
public void Generate_Alter_Modifying_Compression_OrderBy_Generates_Correct_Sql()
{
// Arrange
AlterHypertableOperation operation = new()
{
TableName = "Metrics",
Schema = "public",
// Changing from ASC to DESC
CompressionOrderBy = ["Timestamp DESC"],
OldCompressionOrderBy = ["Timestamp ASC"]
};
string expected = @".Sql(@""
DO $$
DECLARE
license TEXT;
BEGIN
license := current_setting('timescaledb.license', true);
IF license IS NULL OR license != 'apache' THEN
EXECUTE 'ALTER TABLE """"public"""".""""Metrics"""" SET (timescaledb.compress_orderby = ''""""Timestamp"""" DESC'')';
ELSE
RAISE WARNING 'Skipping Community Edition features (compression, chunk skipping) - not available in Apache Edition';
END IF;
END $$;
"")";
// Act
string result = GetGeneratedCode(operation);
// Assert
Assert.Equal(SqlHelper.NormalizeSql(expected), SqlHelper.NormalizeSql(result));
}
[Fact]
public void Generate_Alter_Removing_Compression_Configuration_Generates_Empty_Strings()
{
// Arrange
AlterHypertableOperation operation = new()
{
TableName = "Metrics",
Schema = "public",
EnableCompression = true,
OldEnableCompression = true,
// Removing both settings
CompressionSegmentBy = [],
OldCompressionSegmentBy = ["DeviceId"],
CompressionOrderBy = null,
OldCompressionOrderBy = ["Timestamp DESC"]
};
// TimescaleDB requires setting the value to '' (empty string) to clear it
string expected = @".Sql(@""
DO $$
DECLARE
license TEXT;
BEGIN
license := current_setting('timescaledb.license', true);
IF license IS NULL OR license != 'apache' THEN
EXECUTE 'ALTER TABLE """"public"""".""""Metrics"""" SET (timescaledb.compress_segmentby = '''', timescaledb.compress_orderby = '''')';
ELSE
RAISE WARNING 'Skipping Community Edition features (compression, chunk skipping) - not available in Apache Edition';
END IF;
END $$;
"")";
// Act
string result = GetGeneratedCode(operation);
// Assert
Assert.Equal(SqlHelper.NormalizeSql(expected), SqlHelper.NormalizeSql(result));
}
[Fact]
public void Generate_Alter_when_adding_and_removing_skip_columns_generates_correct_sql()
{
// Arrange
AlterHypertableOperation operation = new()
{
TableName = "Metrics",
Schema = "metrics_schema",
ChunkSkipColumns = ["host", "service"],
OldChunkSkipColumns = ["host", "region"]
};
string expected = @".Sql(@""
DO $$
DECLARE
license TEXT;
BEGIN
license := current_setting('timescaledb.license', true);
IF license IS NULL OR license != 'apache' THEN
EXECUTE 'SET timescaledb.enable_chunk_skipping = ''ON''';
EXECUTE 'SELECT enable_chunk_skipping(''metrics_schema.""""Metrics""""'', ''service'')';
EXECUTE 'SELECT disable_chunk_skipping(''metrics_schema.""""Metrics""""'', ''region'')';
ELSE
RAISE WARNING 'Skipping Community Edition features (compression, chunk skipping) - not available in Apache Edition';
END IF;
END $$;
"")";
// Act
string result = GetGeneratedCode(operation);
// Assert
Assert.Equal(SqlHelper.NormalizeSql(expected), SqlHelper.NormalizeSql(result));
}
[Fact]
public void Generate_Alter_when_no_properties_change_generates_no_sql()
{
// Arrange
AlterHypertableOperation operation = new()
{
TableName = "NoChangeTable",
Schema = "public",
EnableCompression = true,
OldEnableCompression = true,
ChunkTimeInterval = "7 days",
OldChunkTimeInterval = "7 days"
};
string expected = "";
// Act
string result = GetGeneratedCode(operation);
// Assert
Assert.Equal(expected, result);
}
[Fact]
public void Generate_Alter_WhenRemovingLastChunkSkipColumn_ShouldDisableCompression_IfNotExplicitlyEnabled()
{
// Arrange
AlterHypertableOperation operation = new()
{
TableName = "Logs",
Schema = "public",
OldEnableCompression = false,
OldChunkSkipColumns = ["trace_id"],
EnableCompression = false,
ChunkSkipColumns = []
};
string expected = @".Sql(@""
DO $$
DECLARE
license TEXT;
BEGIN
license := current_setting('timescaledb.license', true);
IF license IS NULL OR license != 'apache' THEN
EXECUTE 'ALTER TABLE """"public"""".""""Logs"""" SET (timescaledb.compress = false)';
EXECUTE 'SELECT disable_chunk_skipping(''public.""""Logs""""'', ''trace_id'')';
ELSE
RAISE WARNING 'Skipping Community Edition features (compression, chunk skipping) - not available in Apache Edition';
END IF;
END $$;
"")";
// Act
string result = GetGeneratedCode(operation);
// Assert
Assert.Equal(SqlHelper.NormalizeSql(expected), SqlHelper.NormalizeSql(result));
}
// --- Tests for MigrateData Parameter ---
[Fact]
public void Generate_Create_When_MigrateData_Is_False_Does_Not_Include_Migrate_Data_Parameter()
{
// Arrange
CreateHypertableOperation operation = new()
{
TableName = "Metrics",
Schema = "public",
TimeColumnName = "Timestamp",
MigrateData = false
};
string expected = @".Sql(@""
SELECT create_hypertable('public.""""Metrics""""', 'Timestamp');
"")";
// Act
string result = GetGeneratedCode(operation);
// Assert
Assert.Equal(SqlHelper.NormalizeSql(expected), SqlHelper.NormalizeSql(result));
}
[Fact]
public void Generate_Create_When_MigrateData_Is_True_Includes_Migrate_Data_Parameter()
{
// Arrange
CreateHypertableOperation operation = new()
{
TableName = "Metrics",
Schema = "public",
TimeColumnName = "Timestamp",
MigrateData = true
};
string expected = @".Sql(@""
SELECT create_hypertable('public.""""Metrics""""', 'Timestamp', migrate_data => true);
"")";
// Act
string result = GetGeneratedCode(operation);
// Assert
Assert.Equal(SqlHelper.NormalizeSql(expected), SqlHelper.NormalizeSql(result));
}
[Fact]
public void Generate_Create_When_MigrateData_True_With_All_Options_Generates_Comprehensive_Sql()
{
// Arrange
CreateHypertableOperation operation = new()
{
TableName = "CompleteTable",
Schema = "custom_schema",
TimeColumnName = "EventTime",
MigrateData = true,
ChunkTimeInterval = "1 day",
EnableCompression = true,
ChunkSkipColumns = ["DeviceId"],
AdditionalDimensions =
[
Dimension.CreateHash("LocationId", 4)
]
};
string expected = @".Sql(@""
SELECT create_hypertable('custom_schema.""""CompleteTable""""', 'EventTime', migrate_data => true, chunk_time_interval => INTERVAL '1 day');
SELECT add_dimension('custom_schema.""""CompleteTable""""', by_hash('LocationId', 4));
DO $$
DECLARE
license TEXT;
BEGIN
license := current_setting('timescaledb.license', true);
IF license IS NULL OR license != 'apache' THEN
EXECUTE 'ALTER TABLE """"custom_schema"""".""""CompleteTable"""" SET (timescaledb.compress = true)';
EXECUTE 'SET timescaledb.enable_chunk_skipping = ''ON''';
EXECUTE 'SELECT enable_chunk_skipping(''custom_schema.""""CompleteTable""""'', ''DeviceId'')';
ELSE
RAISE WARNING 'Skipping Community Edition features (compression, chunk skipping) - not available in Apache Edition';
END IF;
END $$;
"")";
// Act
string result = GetGeneratedCode(operation);
// Assert
Assert.Equal(SqlHelper.NormalizeSql(expected), SqlHelper.NormalizeSql(result));
}
[Fact]
public void Generate_Create_Default_MigrateData_Does_Not_Include_Parameter()
{
// Arrange - CreateHypertableOperation with default MigrateData (false)
CreateHypertableOperation operation = new()
{
TableName = "DefaultTable",
Schema = "public",
TimeColumnName = "Timestamp"
// MigrateData not explicitly set, defaults to false
};
string expected = @".Sql(@""
SELECT create_hypertable('public.""""DefaultTable""""', 'Timestamp');
"")";
// Act
string result = GetGeneratedCode(operation);
// Assert
Assert.Equal(SqlHelper.NormalizeSql(expected), SqlHelper.NormalizeSql(result));
Assert.DoesNotContain("migrate_data", result);
}
}
}