-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathContentstackClientResetTests.cs
More file actions
476 lines (388 loc) · 17 KB
/
ContentstackClientResetTests.cs
File metadata and controls
476 lines (388 loc) · 17 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
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using AutoFixture;
using Contentstack.Core.Configuration;
using Contentstack.Core.Unit.Tests.Helpers;
using Contentstack.Core.Unit.Tests.Mokes;
using Newtonsoft.Json.Linq;
using Xunit;
namespace Contentstack.Core.Unit.Tests
{
/// <summary>
/// Unit tests for ContentstackClient.ResetLivePreview() method
/// Tests timeline state clearing, configuration preservation, and edge cases
/// </summary>
[Trait("Category", "TimelinePreview")]
[Trait("Category", "Reset")]
public class ContentstackClientResetTests : ContentstackClientTestBase
{
#region Positive Test Cases
[Fact]
public void ResetLivePreview_ClearsTimelineProperties()
{
// Arrange
var client = CreateClientWithTimeline();
var config = client.GetLivePreviewConfig();
// Set timeline properties
config.PreviewTimestamp = "2024-11-29T14:30:00.000Z";
config.ReleaseId = "test_release_123";
// Act
client.ResetLivePreview();
// Assert
Assert.Null(config.PreviewTimestamp);
Assert.Null(config.ReleaseId);
}
[Fact]
public void ResetLivePreview_ClearsPreviewResponse()
{
// Arrange
var client = CreateClientWithTimeline();
var config = client.GetLivePreviewConfig();
config.PreviewResponse = CreateMockPreviewResponse();
// Verify response is set
Assert.NotNull(config.PreviewResponse);
// Act
client.ResetLivePreview();
// Assert
Assert.Null(config.PreviewResponse);
}
[Fact]
public void ResetLivePreview_ClearsFingerprintProperties()
{
// Arrange
var client = CreateClientWithTimeline();
var config = client.GetLivePreviewConfig();
// Set fingerprint properties
SetInternalProperty(config, "PreviewResponseFingerprintPreviewTimestamp", "fingerprint_timestamp");
SetInternalProperty(config, "PreviewResponseFingerprintReleaseId", "fingerprint_release");
SetInternalProperty(config, "PreviewResponseFingerprintLivePreview", "fingerprint_hash");
// Act
client.ResetLivePreview();
// Assert
Assert.Null(GetInternalProperty<string>(config, "PreviewResponseFingerprintPreviewTimestamp"));
Assert.Null(GetInternalProperty<string>(config, "PreviewResponseFingerprintReleaseId"));
Assert.Null(GetInternalProperty<string>(config, "PreviewResponseFingerprintLivePreview"));
}
[Fact]
public void ResetLivePreview_ClearsContentTypeContext()
{
// Arrange
var client = CreateClientWithTimeline();
var config = client.GetLivePreviewConfig();
// Set content type context
SetInternalProperty(config, "ContentTypeUID", "test_content_type");
// Act
client.ResetLivePreview();
// Assert
Assert.Null(GetInternalProperty<string>(config, "ContentTypeUID"));
}
[Fact]
public void ResetLivePreview_ClearsEntryContext()
{
// Arrange
var client = CreateClientWithTimeline();
var config = client.GetLivePreviewConfig();
// Set entry context
SetInternalProperty(config, "EntryUID", "test_entry");
// Act
client.ResetLivePreview();
// Assert
Assert.Null(GetInternalProperty<string>(config, "EntryUID"));
}
[Fact]
public void ResetLivePreview_ClearsLivePreviewHash()
{
// Arrange
var client = CreateClientWithTimeline();
var config = client.GetLivePreviewConfig();
// Set live preview hash
SetInternalProperty(config, "LivePreview", "test_hash_123");
// Act
client.ResetLivePreview();
// Assert
Assert.Null(GetInternalProperty<string>(config, "LivePreview"));
}
[Fact]
public void ResetLivePreview_PreservesBaseConfiguration()
{
// Arrange
var client = CreateClientWithTimeline();
var config = client.GetLivePreviewConfig();
var originalEnable = config.Enable;
var originalHost = config.Host;
var originalManagementToken = config.ManagementToken;
var originalPreviewToken = config.PreviewToken;
// Act
client.ResetLivePreview();
// Assert - Base configuration should be preserved
Assert.Equal(originalEnable, config.Enable);
Assert.Equal(originalHost, config.Host);
Assert.Equal(originalManagementToken, config.ManagementToken);
Assert.Equal(originalPreviewToken, config.PreviewToken);
}
[Fact]
public void ResetLivePreview_PreservesClientConfiguration()
{
// Arrange
var client = CreateClientWithTimeline();
var originalApiKey = client.GetApplicationKey();
var originalAccessToken = client.GetAccessToken();
var originalEnvironment = client.GetEnvironment();
var originalVersion = client.GetVersion();
// Act
client.ResetLivePreview();
// Assert - Client configuration should be preserved
Assert.Equal(originalApiKey, client.GetApplicationKey());
Assert.Equal(originalAccessToken, client.GetAccessToken());
Assert.Equal(originalEnvironment, client.GetEnvironment());
Assert.Equal(originalVersion, client.GetVersion());
}
[Fact]
public void ResetLivePreview_MultipleCallsIdempotent()
{
// Arrange
var client = CreateClientWithTimeline();
var config = client.GetLivePreviewConfig();
// Set up timeline state
config.PreviewTimestamp = "2024-11-29T14:30:00.000Z";
config.ReleaseId = "test_release";
config.PreviewResponse = CreateMockPreviewResponse();
// Act - Multiple resets
client.ResetLivePreview();
client.ResetLivePreview();
client.ResetLivePreview();
// Assert - Should be safe to call multiple times
Assert.Null(config.PreviewTimestamp);
Assert.Null(config.ReleaseId);
Assert.Null(config.PreviewResponse);
}
[Fact]
public void ResetLivePreview_AfterComplexTimelineOperations()
{
// Arrange
var client = CreateClientWithTimeline();
var config = client.GetLivePreviewConfig();
// Set up complex timeline state
config.PreviewTimestamp = "2024-11-29T14:30:00.000Z";
config.ReleaseId = "complex_release_123";
config.PreviewResponse = JObject.Parse(@"{
""entry"": {
""uid"": ""complex_entry"",
""title"": ""Complex Test Entry"",
""nested"": {
""deep"": {
""structure"": ""value""
}
},
""array"": [1, 2, 3, 4, 5]
}
}");
SetInternalProperty(config, "ContentTypeUID", "complex_ct");
SetInternalProperty(config, "EntryUID", "complex_entry");
SetInternalProperty(config, "LivePreview", "complex_hash");
SetInternalProperty(config, "PreviewResponseFingerprintPreviewTimestamp", "complex_timestamp");
SetInternalProperty(config, "PreviewResponseFingerprintReleaseId", "complex_release");
SetInternalProperty(config, "PreviewResponseFingerprintLivePreview", "complex_hash");
// Act
client.ResetLivePreview();
// Assert - All complex state cleared
Assert.Null(config.PreviewTimestamp);
Assert.Null(config.ReleaseId);
Assert.Null(config.PreviewResponse);
Assert.Null(GetInternalProperty<string>(config, "ContentTypeUID"));
Assert.Null(GetInternalProperty<string>(config, "EntryUID"));
Assert.Null(GetInternalProperty<string>(config, "LivePreview"));
Assert.Null(GetInternalProperty<string>(config, "PreviewResponseFingerprintPreviewTimestamp"));
Assert.Null(GetInternalProperty<string>(config, "PreviewResponseFingerprintReleaseId"));
Assert.Null(GetInternalProperty<string>(config, "PreviewResponseFingerprintLivePreview"));
}
[Fact]
public async Task ResetLivePreview_AfterLivePreviewQuery_ClearsAllState()
{
// Arrange
var client = CreateClientWithLivePreview();
var mockHandler = new TimelineMockHttpHandler().ForSuccessfulLivePreview();
client.Plugins.Add(mockHandler);
var query = CreateLivePreviewQuery(
contentTypeUid: "reset_test_ct",
entryUid: "reset_test_entry",
previewTimestamp: "2024-11-29T14:30:00.000Z",
releaseId: "reset_test_release"
);
// Execute live preview query to set up state
await client.LivePreviewQueryAsync(query);
var config = client.GetLivePreviewConfig();
// Verify state is set
Assert.Equal("2024-11-29T14:30:00.000Z", config.PreviewTimestamp);
Assert.Equal("reset_test_release", config.ReleaseId);
// Act
client.ResetLivePreview();
// Assert - All state cleared
Assert.Null(config.PreviewTimestamp);
Assert.Null(config.ReleaseId);
Assert.Null(config.PreviewResponse);
Assert.Null(GetInternalProperty<string>(config, "ContentTypeUID"));
Assert.Null(GetInternalProperty<string>(config, "EntryUID"));
Assert.Null(GetInternalProperty<string>(config, "LivePreview"));
}
[Fact]
public void ResetLivePreview_DoesNotAffectForkedClients()
{
// Arrange
var parentClient = CreateClientWithTimeline();
var forkedClient = parentClient.Fork();
// Set different timeline states
parentClient.GetLivePreviewConfig().PreviewTimestamp = "2024-11-29T10:00:00.000Z";
forkedClient.GetLivePreviewConfig().PreviewTimestamp = "2024-11-29T14:00:00.000Z";
// Act - Reset parent client only
parentClient.ResetLivePreview();
// Assert - Parent is reset but fork is unaffected
Assert.Null(parentClient.GetLivePreviewConfig().PreviewTimestamp);
Assert.Equal("2024-11-29T14:00:00.000Z", forkedClient.GetLivePreviewConfig().PreviewTimestamp);
}
#endregion
#region Negative Test Cases
[Fact]
public void ResetLivePreview_WithNullConfig_HandlesGracefully()
{
// Arrange
var client = CreateClient();
SetInternalProperty(client, "LivePreviewConfig", null);
// Act & Assert - Should not throw
var exception = Record.Exception(() => client.ResetLivePreview());
Assert.Null(exception);
}
[Fact]
public void ResetLivePreview_DisabledLivePreview_NoException()
{
// Arrange
var client = CreateClientWithLivePreview(enabled: false);
// Act & Assert - Should not throw
var exception = Record.Exception(() => client.ResetLivePreview());
Assert.Null(exception);
}
[Fact]
public void ResetLivePreview_AlreadyClearedState_HandlesCorrectly()
{
// Arrange
var client = CreateClientWithTimeline();
var config = client.GetLivePreviewConfig();
// Clear all state first
config.PreviewTimestamp = null;
config.ReleaseId = null;
config.PreviewResponse = null;
SetInternalProperty(config, "ContentTypeUID", null);
SetInternalProperty(config, "EntryUID", null);
SetInternalProperty(config, "LivePreview", null);
// Act & Assert - Should not throw with already cleared state
var exception = Record.Exception(() => client.ResetLivePreview());
Assert.Null(exception);
// Verify state remains cleared
Assert.Null(config.PreviewTimestamp);
Assert.Null(config.ReleaseId);
Assert.Null(config.PreviewResponse);
}
[Fact]
public void ResetLivePreview_WithCorruptedState_HandlesGracefully()
{
// Arrange
var client = CreateClientWithTimeline();
var config = client.GetLivePreviewConfig();
// Create corrupted state
config.PreviewTimestamp = "invalid-timestamp-format";
config.PreviewResponse = JObject.Parse("{}"); // Empty invalid response
// Act & Assert - Should not throw with corrupted state
var exception = Record.Exception(() => client.ResetLivePreview());
Assert.Null(exception);
// Assert - Corrupted state is cleared
Assert.Null(config.PreviewTimestamp);
Assert.Null(config.PreviewResponse);
}
#endregion
#region Performance and Edge Cases
[Fact]
public void ResetLivePreview_Performance_FastExecution()
{
// Arrange
var client = CreateClientWithTimeline();
var config = client.GetLivePreviewConfig();
// Set up state to reset
config.PreviewTimestamp = "2024-11-29T14:30:00.000Z";
config.ReleaseId = "perf_test_release";
config.PreviewResponse = CreateMockPreviewResponse();
var iterations = 1000;
var startTime = DateTime.UtcNow;
// Act - Multiple resets to test performance
for (int i = 0; i < iterations; i++)
{
// Set some state
config.PreviewTimestamp = $"2024-11-{(i % 12) + 1:D2}-01T00:00:00.000Z";
config.ReleaseId = $"perf_release_{i}";
// Reset
client.ResetLivePreview();
}
var duration = DateTime.UtcNow - startTime;
// Assert - Should be very fast (under 100ms for 1000 resets)
Assert.True(duration.TotalMilliseconds < 100,
$"ResetLivePreview took {duration.TotalMilliseconds}ms for {iterations} operations");
}
[Fact]
public void ResetLivePreview_ConcurrentCalls_ThreadSafe()
{
// Arrange
var client = CreateClientWithTimeline();
var config = client.GetLivePreviewConfig();
config.PreviewTimestamp = "2024-11-29T14:30:00.000Z";
var tasks = new Task[10];
// Act - Concurrent reset calls
for (int i = 0; i < tasks.Length; i++)
{
tasks[i] = Task.Run(() =>
{
try
{
client.ResetLivePreview();
}
catch (Exception ex)
{
// Should not throw
throw new Exception($"Concurrent reset failed: {ex.Message}", ex);
}
});
}
// Assert - All tasks should complete without exception
var exception = Record.Exception(() => Task.WaitAll(tasks));
Assert.Null(exception);
// Final state should be cleared
Assert.Null(config.PreviewTimestamp);
Assert.Null(config.ReleaseId);
Assert.Null(config.PreviewResponse);
}
[Fact]
public void ResetLivePreview_MemoryEfficiency_ReleasesReferences()
{
// Arrange
var client = CreateClientWithTimeline();
var config = client.GetLivePreviewConfig();
// Create large objects to test memory release
var largeResponse = JObject.Parse(@"{
""entry"": {
""large_field"": """ + new string('x', 10000) + @""",
""another_large_field"": """ + new string('y', 10000) + @"""
}
}");
config.PreviewResponse = largeResponse;
// Act
client.ResetLivePreview();
// Force garbage collection
largeResponse = null;
GC.Collect();
GC.WaitForPendingFinalizers();
GC.Collect();
// Assert - References should be cleared
Assert.Null(config.PreviewResponse);
}
#endregion
}
}