-
-
Notifications
You must be signed in to change notification settings - Fork 552
Expand file tree
/
Copy pathStoreOptionsTests.cs
More file actions
456 lines (357 loc) · 13.3 KB
/
Copy pathStoreOptionsTests.cs
File metadata and controls
456 lines (357 loc) · 13.3 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
using System;
using System.Linq;
using System.Text.Json;
using JasperFx;
using JasperFx.Descriptors;
using JasperFx.MultiTenancy;
using Marten;
using Marten.Events;
using Marten.Services;
using Marten.Storage;
using Marten.Testing.Documents;
using Marten.Testing.Harness;
using Npgsql;
using Shouldly;
using Weasel.Core;
using Weasel.Postgresql.Connections;
using Xunit;
namespace CoreTests;
public class StoreOptionsTests
{
[Fact]
public void sticky_connections_are_off_by_default()
{
new StoreOptions()
.UseStickyConnectionLifetimes.ShouldBeFalse();
}
[Fact]
public void STJ_is_the_default_serializer()
{
new StoreOptions().Serializer().ShouldBeOfType<SystemTextJsonSerializer>();
}
[Fact]
public void DefaultAutoCreateShouldBeCreateOrUpdate()
{
var settings = new StoreOptions();
Assert.Equal(AutoCreate.CreateOrUpdate, settings.AutoCreateSchemaObjects);
}
[Fact]
public void DefaultAutoCreateShouldBeCreateOrUpdateWhenProvidingNoConfig()
{
var store = DocumentStore.For(ConnectionSource.ConnectionString);
Assert.Equal(AutoCreate.CreateOrUpdate, store.Options.AutoCreateSchemaObjects);
}
[Fact(Skip = "sample usage code")]
public void using_auto_create_field()
{
#region sample_autocreateschemaobjects
var store = DocumentStore.For(opts =>
{
// Marten will create any new objects that are missing,
// attempt to update tables if it can, but drop and replace
// tables that it cannot patch.
opts.AutoCreateSchemaObjects = AutoCreate.All;
// Marten will create any new objects that are missing or
// attempt to update tables if it can. Will *never* drop
// any existing objects, so no data loss
opts.AutoCreateSchemaObjects = AutoCreate.CreateOrUpdate;
// Marten will create missing objects on demand, but
// will not change any existing schema objects
opts.AutoCreateSchemaObjects = AutoCreate.CreateOnly;
// Marten will not create or update any schema objects
// and throws an exception in the case of a schema object
// not reflecting the Marten configuration
opts.AutoCreateSchemaObjects = AutoCreate.None;
});
#endregion
}
[Fact]
public void CannotBuildStoreWithoutConnection()
{
var e = Assert.Throws<InvalidOperationException>(() => DocumentStore.For(_ => { }));
Assert.Contains("No tenancy is configured", e.Message);
}
[Fact]
public void add_document_types()
{
using var store = DocumentStore.For(options =>
{
options.Connection(ConnectionSource.ConnectionString);
options.RegisterDocumentType<User>();
options.RegisterDocumentType(typeof(Company));
options.RegisterDocumentTypes(new[] { typeof(Target), typeof(Issue) });
});
// 9.0: AllDocumentMappings is lazy (#4303); read through the public
// AllKnownDocumentTypes() accessor.
((IReadOnlyStoreOptions)store.Options).AllKnownDocumentTypes()
.OrderBy(x => x.DocumentType.Name)
.Select(x => x.DocumentType.Name)
.ShouldBe(["Company", "Issue", "Target", "User"]);
}
[Fact]
public void default_logger_is_the_nullo()
{
var options = new StoreOptions();
options.Logger().ShouldBeOfType<NulloMartenLogger>();
options.Logger(null);
// doesn't matter, nullo is the default
options.Logger().ShouldBeOfType<NulloMartenLogger>();
}
[Fact]
public void can_overwrite_the_logger()
{
var logger = new ConsoleMartenLogger();
var options = new StoreOptions();
options.Logger(logger);
options.Logger().ShouldBeSameAs(logger);
}
public class RecordingLogger: IMartenSessionLogger
{
public NpgsqlCommand LastCommand;
public Exception LastException;
public int OnBeforeExecuted { get; set; }
public void LogFailure(Exception ex, string message)
{
}
public void RecordSavedChanges(IDocumentSession session, IChangeSet commit)
{
}
public void OnBeforeExecute(NpgsqlCommand command)
{
OnBeforeExecuted++;
}
public void OnBeforeExecute(NpgsqlBatch batch)
{
}
public void LogSuccess(NpgsqlCommand command)
{
LastCommand = command;
}
public void LogFailure(NpgsqlCommand command, Exception ex)
{
LastCommand = command;
LastException = ex;
}
public void LogSuccess(NpgsqlBatch batch)
{
}
public void LogFailure(NpgsqlBatch batch, Exception ex)
{
}
}
public void using_console_logger()
{
#region sample_plugging-in-marten-logger
var store = DocumentStore.For(_ =>
{
_.Logger(new ConsoleMartenLogger());
});
#endregion
#region sample_plugging-in-session-logger
using var session = store.LightweightSession();
// Replace the logger for only this one session
session.Logger = new RecordingLogger();
#endregion
}
[Fact]
public void single_tenancy_by_default()
{
var store = DocumentStore.For(_ =>
{
_.Connection(ConnectionSource.ConnectionString);
});
store.Tenancy.ShouldBeOfType<DefaultTenancy>();
}
[Fact]
public void default_ddl_rules()
{
var options = new StoreOptions();
options.Advanced.Migrator.TableCreation.ShouldBe(CreationStyle.CreateIfNotExists);
options.Advanced.Migrator.UpsertRights.ShouldBe(SecurityRights.Invoker);
}
[Fact]
public void ensure_patch_system_transform_functions_and_feature_schemas_are_added_only_once()
{
var options = new StoreOptions();
options.Connection(ConnectionSource.ConnectionString);
var store1 = new DocumentStore(options);
// pass with the same options and check it does not throw ArgumentException
// "An item with the same key has already been added. Key: <transform function name/feature schema name>"
Should.NotThrow(() =>
{
var store2 = new DocumentStore(options);
});
}
[Fact]
public void default_enum_storage_should_be_integer()
{
var storeOptions = new StoreOptions();
storeOptions.EnumStorage.ShouldBe(EnumStorage.AsInteger);
}
[Fact]
public void default_duplicated_field_enum_storage_should_be_the_same_as_enum_storage()
{
var storeOptions = new StoreOptions();
storeOptions.Advanced.DuplicatedFieldEnumStorage.ShouldBe(storeOptions.EnumStorage);
}
[Theory]
[InlineData(EnumStorage.AsInteger)]
[InlineData(EnumStorage.AsString)]
public void duplicated_field_enum_storage_should_be_the_same_as_enum_storage(EnumStorage enumStorage)
{
var storeOptions = new StoreOptions();
storeOptions.UseSystemTextJsonForSerialization(enumStorage);
storeOptions.Advanced.DuplicatedFieldEnumStorage.ShouldBe(storeOptions.EnumStorage);
}
[Fact]
public void duplicated_field_enum_storage_should_be_the_same_as_enum_storage_when_enum_storage_was_updated()
{
var storeOptions = new StoreOptions();
storeOptions.UseSystemTextJsonForSerialization(EnumStorage.AsInteger);
storeOptions.Advanced.DuplicatedFieldEnumStorage.ShouldBe(storeOptions.EnumStorage);
//update EnumStorage
storeOptions.UseSystemTextJsonForSerialization(EnumStorage.AsString);
storeOptions.EnumStorage.ShouldBe(EnumStorage.AsString);
storeOptions.Advanced.DuplicatedFieldEnumStorage.ShouldBe(storeOptions.EnumStorage);
}
[Fact]
public void enum_storage_should_not_change_when_duplicated_field_enum_storage_was_changed()
{
var storeOptions = new StoreOptions();
storeOptions.UseSystemTextJsonForSerialization(EnumStorage.AsInteger);
storeOptions.Advanced.DuplicatedFieldEnumStorage.ShouldBe(storeOptions.EnumStorage);
//set DuplicatedFieldEnumStorage
storeOptions.Advanced.DuplicatedFieldEnumStorage = EnumStorage.AsString;
storeOptions.EnumStorage.ShouldBe(EnumStorage.AsInteger);
storeOptions.Advanced.DuplicatedFieldEnumStorage.ShouldBe(EnumStorage.AsString);
}
[Fact]
public void
duplicated_field_enum_storage_after_it_had_value_assigned_should_not_change_when_enum_storage_was_updated()
{
var storeOptions = new StoreOptions();
storeOptions.UseSystemTextJsonForSerialization(EnumStorage.AsInteger);
storeOptions.Advanced.DuplicatedFieldEnumStorage.ShouldBe(storeOptions.EnumStorage);
//set DuplicatedFieldEnumStorage
storeOptions.Advanced.DuplicatedFieldEnumStorage = EnumStorage.AsInteger;
//update EnumStorage
storeOptions.UseSystemTextJsonForSerialization(EnumStorage.AsString);
storeOptions.EnumStorage.ShouldBe(EnumStorage.AsString);
storeOptions.Advanced.DuplicatedFieldEnumStorage.ShouldNotBe(storeOptions.EnumStorage);
storeOptions.Advanced.DuplicatedFieldEnumStorage.ShouldBe(EnumStorage.AsInteger);
}
public void set_the_maximum_name_length()
{
#region sample_setting-name-data-length
var store = DocumentStore.For(_ =>
{
// If you have overridden NAMEDATALEN in your
// Postgresql database to 100
_.NameDataLength = 100;
});
#endregion
}
[Fact]
public void SettingConnectionString_ShouldSetupDefaultNpgsqlDataSourceFactory()
{
// Given
// When
using var store = DocumentStore.For(ConnectionSource.ConnectionString);
// Then
store.Options.NpgsqlDataSourceFactory.ShouldBeOfType<DefaultNpgsqlDataSourceFactory>();
}
[Fact]
public void SettingConnectionDataSource_ShouldRespectCurrentTenancySettings()
{
// Given
var options = new StoreOptions();
options.MultiTenantedWithSingleServer(ConnectionSource.ConnectionString);
// When
options.Connection(new NpgsqlDataSourceBuilder(ConnectionSource.ConnectionString).Build());
// Then
options.NpgsqlDataSourceFactory.ShouldBeOfType<SingleNpgsqlDataSourceFactory>();
options.Tenancy.ShouldBeOfType<SingleServerMultiTenancy>();
}
[Fact]
public void SettingCustomDataSourceFactory_ShouldRespectDefaultTenancySettings()
{
// Given
var options = new StoreOptions();
options.Connection(ConnectionSource.ConnectionString);
// When
options.DataSourceFactory(new DummyNpgsqlDataSourceFactory());
// Then
options.NpgsqlDataSourceFactory.ShouldBeOfType<DummyNpgsqlDataSourceFactory>();
options.Tenancy.ShouldBeOfType<DefaultTenancy>();
}
[Fact]
public void SettingCustomDataSourceFactory_ShouldRespectCurrentTenancySettings()
{
// Given
var options = new StoreOptions();
options.MultiTenantedWithSingleServer(ConnectionSource.ConnectionString);
// When
options.DataSourceFactory(new DummyNpgsqlDataSourceFactory());
// Then
options.NpgsqlDataSourceFactory.ShouldBeOfType<DummyNpgsqlDataSourceFactory>();
options.Tenancy.ShouldBeOfType<SingleServerMultiTenancy>();
}
[Fact]
public void SettingCustomDataSourceFactory_ShouldSetTenancyIfItsNotDefinedYet()
{
// Given
var options = new StoreOptions();
// When
options.DataSourceFactory(new DummyNpgsqlDataSourceFactory(), ConnectionSource.ConnectionString);
// Then
options.NpgsqlDataSourceFactory.ShouldBeOfType<DummyNpgsqlDataSourceFactory>();
options.Tenancy.ShouldBeOfType<DefaultTenancy>();
}
[InlineData(true)]
[InlineData(false)]
[Theory]
public void use_base_system_text_json_serialization_options(bool indented)
{
// Given
var options = new StoreOptions();
// When
options.UseSystemTextJsonForSerialization(new JsonSerializerOptions
{
WriteIndented = indented,
});
// Then
var json = options.Serializer().ToJson(new
{
Field1 = 10,
Field2 = 20,
});
if (indented)
{
json.ShouldContain('\n');
}
else
{
json.ShouldNotContain('\n');
}
}
[Fact]
public void default_tenant_id_style_is_case_sensitive()
{
new StoreOptions().TenantIdStyle.ShouldBe(TenantIdStyle.CaseSensitive);
}
[Fact]
public void can_generate_options_description()
{
// just a smoke test
var description = new OptionsDescription(new StoreOptions());
}
// #4617 PR 3: the per_tenant_events_flag nested class moved to
// src/TenantPartitionedEventsTests/Config/per_tenant_events_flag_guards.cs
// so every per-tenant-partitioning guard lives alongside its companions
// (schema_groundwork_for_partitioned_events, etc).
private class DummyNpgsqlDataSourceFactory: INpgsqlDataSourceFactory
{
public NpgsqlDataSource Create(string connectionString) =>
new NpgsqlDataSourceBuilder(connectionString).Build();
}
}