-
-
Notifications
You must be signed in to change notification settings - Fork 552
Expand file tree
/
Copy pathMartenRegistryTests.cs
More file actions
229 lines (180 loc) · 6.62 KB
/
Copy pathMartenRegistryTests.cs
File metadata and controls
229 lines (180 loc) · 6.62 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
using System;
using System.Linq;
using JasperFx.Core.Reflection;
using Marten;
using Marten.Linq.Members;
using Marten.Linq.Parsing;
using Marten.Schema;
using Marten.Storage;
using Marten.Storage.Metadata;
using Marten.Testing.Documents;
using Marten.Testing.Harness;
using Shouldly;
using Weasel.Postgresql.Tables;
using Xunit;
namespace DocumentDbTests.Configuration;
public class MartenRegistryTests: OneOffConfigurationsContext
{
private readonly StorageFeatures theStorage;
public MartenRegistryTests()
{
var store = SeparateStore(_ =>
{
_.Schema.For<Organization>()
.Duplicate(x => x.Name).Duplicate(x => x.OtherName, configure: x =>
{
x.Name = "mt_special";
})
.GinIndexJsonData(x => x.Name = "my_gin_index")
.IndexLastModified(x => x.IsConcurrent = true)
.IndexCreatedAt(x => x.IsConcurrent = true)
.SoftDeletedWithIndex(x => x.Method = IndexMethod.brin);
_.Schema.For<User>().PropertySearching(PropertySearching.JSON_Locator_Only);
});
theStorage = store.StorageFeatures;
}
[Fact]
public void property_searching_override()
{
theStorage.MappingFor(typeof(User)).As<DocumentMapping>()
.PropertySearching.ShouldBe(PropertySearching.JSON_Locator_Only);
}
[Fact]
public void picks_up_searchable_on_property()
{
theStorage.MappingFor(typeof(Organization)).As<DocumentMapping>()
.QueryMembers
.MemberFor(nameof(Organization.Name)).ShouldBeOfType<DuplicatedField>();
}
[Fact]
public void picks_up_searchable_on_field()
{
theStorage.MappingFor(typeof(Organization)).As<DocumentMapping>()
.QueryMembers
.MemberFor(nameof(Organization.OtherName)).ShouldBeOfType<DuplicatedField>();
}
[Fact]
public void searchable_field_is_also_indexed()
{
var mapping = theStorage.MappingFor(typeof(Organization)).As<DocumentMapping>();
var index = mapping.IndexesFor("name").Single();
index.Name.ShouldBe("mt_doc_martenregistrytests_organization_idx_name");
index.Columns.ShouldHaveTheSameElementsAs("name");
}
[Fact]
public void can_customize_the_index_on_a_searchable_field()
{
var mapping = theStorage.MappingFor(typeof(Organization)).As<DocumentMapping>();
var index = mapping.IndexesFor("other_name").Single();
index.Name.ShouldBe("mt_special");
index.Columns.ShouldHaveTheSameElementsAs("other_name");
}
[Fact]
public void can_set_up_gin_index_on_json_data()
{
var mapping = theStorage.MappingFor(typeof(Organization)).As<DocumentMapping>();
var index = mapping.IndexesFor("data").Single();
index.Name.ShouldBe("my_gin_index");
index.Method.ShouldBe(IndexMethod.gin);
index.Mask.ShouldBe("? jsonb_path_ops");
}
[Fact]
public void mapping_is_set_to_containment_if_gin_index_is_added()
{
var mapping = theStorage.MappingFor(typeof(Organization)).As<DocumentMapping>();
mapping.PropertySearching.ShouldBe(PropertySearching.ContainmentOperator);
}
[Fact]
public void mt_last_modified_index_is_added()
{
var mapping = theStorage.MappingFor(typeof(Organization)).As<DocumentMapping>();
var index = mapping.IndexesFor(SchemaConstants.LastModifiedColumn).Single();
index.IsConcurrent.ShouldBe(true);
}
[Fact]
public void mt_created_at_index_is_added()
{
var mapping = theStorage.MappingFor(typeof(Organization)).As<DocumentMapping>();
var index = mapping.IndexesFor(SchemaConstants.CreatedAtColumn).Single();
index.IsConcurrent.ShouldBe(true);
}
[Fact]
public void mt_deleted_at_index_is_added()
{
var mapping = theStorage.MappingFor(typeof(Organization)).As<DocumentMapping>();
var index = mapping.IndexesFor(SchemaConstants.DeletedAtColumn).Single();
var ddl = index.ToDDL(new DocumentTable(mapping));
ddl
.ShouldContain("WHERE (mt_deleted)", Case.Insensitive);
index.Method.ShouldBe(IndexMethod.brin);
}
[Fact]
public void tenant_id_index_is_added()
{
var store = SeparateStore(_ =>
{
_.Policies.AllDocumentsAreMultiTenanted();
_.Schema.For<TenantIdIndexCustomer>();
});
var mapping = store.StorageFeatures.MappingFor(typeof(TenantIdIndexCustomer)).As<DocumentMapping>();
mapping.Indexes.Single(x => x.Columns.Length == 1 && x.Columns[0] == TenantIdColumn.Name).ShouldNotBeNull();
}
public class Organization
{
public Guid Id { get; set; }
public string Name { get; set; }
public string OtherName;
public string OtherProp;
public string OtherField { get; set; }
}
#region sample_index-tenant-id-via-attribute
[IndexedTenantId]
public class TenantIdIndexCustomer
{
public Guid Id { get; set; }
}
#endregion
#region sample_organizationregistry
public class OrganizationRegistry: MartenRegistry
{
public OrganizationRegistry()
{
For<Organization>().Duplicate(x => x.OtherName);
For<User>().Duplicate(x => x.UserName);
}
}
#endregion
internal static void sample_storeoptions_schema()
{
#region sample_using_storeoptions_schema
var store = DocumentStore.For(opts =>
{
opts.Connection(ConnectionSource.ConnectionString);
opts.Schema.For<Organization>()
.Duplicate(x => x.OtherName);
opts.Schema
.For<User>().Duplicate(x => x.UserName);
});
#endregion
}
[Fact]
public void using_registry_include()
{
#region sample_including_a_custom_martenregistry
var store = DocumentStore.For(opts =>
{
opts.Schema.For<Organization>().Duplicate(x => x.Name);
opts.Schema.Include<OrganizationRegistry>();
opts.Connection(ConnectionSource.ConnectionString);
});
#endregion
var organizations = store
.Options.Storage.MappingFor(typeof(Organization));
organizations.DuplicatedFields.Any(x => x.MemberName == nameof(Organization.OtherName))
.ShouldBeTrue();
organizations.DuplicatedFields.Any(x => x.MemberName == nameof(Organization.Name))
.ShouldBeTrue();
store.Options.Storage.MappingFor(typeof(User)).DuplicatedFields
.Single().MemberName.ShouldBe(nameof(User.UserName));
}
}