-
-
Notifications
You must be signed in to change notification settings - Fork 382
Expand file tree
/
Copy pathSearchFormTest.cs
More file actions
309 lines (276 loc) · 9.87 KB
/
SearchFormTest.cs
File metadata and controls
309 lines (276 loc) · 9.87 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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License
// See the LICENSE file in the project root for more information.
// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone
namespace UnitTest.Components;
public class SearchFormTest : BootstrapBlazorTestBase
{
[Fact]
public async Task Filter_Ok()
{
var filterKeyValueAction = new FilterKeyValueAction();
var stringSearchMetadata = new StringSearchMetadata()
{
PlaceHolder = "placeholder-val",
Value = "foo-name-value"
};
var searchItem = new SearchItem(nameof(Foo.Name), typeof(string), "Name") { Cols = 6 };
var cut = Context.Render<SearchForm>(pb =>
{
pb.Add(a => a.OnChanged, action =>
{
filterKeyValueAction = action;
return Task.CompletedTask;
});
pb.Add(a => a.ItemsPerRow, 4);
pb.Add(a => a.RowType, RowType.Inline);
pb.Add(a => a.LabelAlign, Alignment.Right);
pb.Add(a => a.LabelWidth, 120);
pb.Add(a => a.ShowLabel, true);
pb.Add(a => a.ShowLabelTooltip, true);
pb.Add(a => a.GroupType, EditorFormGroupType.GroupBox);
pb.Add(a => a.ShowUnsetGroupItemsOnTop, true);
pb.Add(a => a.Items, new List<ISearchItem>()
{
searchItem
});
});
cut.Contains("col-sm-6");
cut.Contains("form-inline-end");
searchItem.Metadata = stringSearchMetadata;
cut.Render();
cut.Contains("placeholder-val");
cut.Contains("foo-name-value");
// 改变搜索项值
await stringSearchMetadata.ValueChangedHandler("test1");
Assert.Single(filterKeyValueAction.Filters);
Assert.Equal("test1", filterKeyValueAction.Filters[0].FieldValue);
}
[Fact]
public void SearchFormLocalizerOptions_Ok()
{
var searchFormLocalizerOptions = new SearchFormLocalizerOptions()
{
NumberStartValueLabelText = "Start-Text",
NumberEndValueLabelText = "End-Text"
};
var cut = Context.Render<SearchForm>(pb =>
{
pb.Add(a => a.SearchFormLocalizerOptions, searchFormLocalizerOptions);
pb.Add(a => a.Items, new List<ISearchItem>()
{
new SearchItem(nameof(Foo.Count), typeof(int), nameof(Foo.Count))
});
});
cut.Contains("Start-Text");
cut.Contains("End-Text");
}
[Fact]
public void ToFilter_Ok()
{
List<ISearchItem>? items = null;
var filter = items.ToFilter();
Assert.NotNull(filter);
}
[Fact]
public void LabelAlign_Ok()
{
var stringSearchMetadata = new StringSearchMetadata()
{
PlaceHolder = "placeholder-val",
Value = "foo-name-value"
};
var cut = Context.Render<SearchForm>(pb =>
{
pb.Add(a => a.RowType, RowType.Inline);
pb.Add(a => a.LabelAlign, Alignment.Center);
pb.Add(a => a.Items, new List<ISearchItem>()
{
new SearchItem(nameof(Foo.Name), typeof(string), "Name")
{
Text = "Name-Updated",
GroupName = "Group1",
GroupOrder = 1,
Metadata = stringSearchMetadata
},
new SearchItem(nameof(Foo.Address), typeof(string), "Address")
{
Metadata = stringSearchMetadata
}
});
});
cut.Contains("form-inline form-inline-center");
cut.Render(pb =>
{
pb.Add(a => a.RowType, RowType.Normal);
});
cut.DoesNotContain("form-inline form-inline-center");
}
[Fact]
public void Group_Ok()
{
var cut = Context.Render<SearchForm>(pb =>
{
pb.Add(a => a.ShowUnsetGroupItemsOnTop, true);
pb.Add(a => a.Items, new List<ISearchItem>()
{
new SearchItem(nameof(Foo.Name), typeof(string), "Name")
{
GroupName = "Group1",
GroupOrder= 1,
Metadata = new StringSearchMetadata()
},
new SearchItem(nameof(Foo.Address), typeof(string), "Address")
{
Metadata = new StringSearchMetadata()
}
});
});
// 查找标签一共有两个第一个应该是 Address 第二个应该是 Name
var labels = cut.FindAll(".bb-search-form label");
Assert.Equal(2, labels.Count);
Assert.Equal("Address", labels[0].TextContent);
Assert.Equal("Name", labels[1].TextContent);
}
[Fact]
public void Buttons_Ok()
{
var foo = new Foo();
var cut = Context.Render<SearchForm>(pb =>
{
pb.Add(a => a.Buttons, builder =>
{
builder.OpenComponent<Button>(0);
builder.CloseComponent();
});
});
cut.Contains("bb-editor-footer form-footer");
}
[Fact]
public void Metadata_Ok()
{
var cut = Context.Render<SearchForm>(pb =>
{
pb.Add(a => a.Items, new List<ISearchItem>()
{
new SearchItem(nameof(Foo.Count), typeof(string), nameof(Foo.Count))
{
Metadata = new NumberSearchMetadata()
},
new SearchItem(nameof(Foo.DateTime), typeof(string), nameof(Foo.DateTime))
{
Metadata = new DateTimeSearchMetadata()
},
new SearchItem(nameof(Foo.DateTime), typeof(string), nameof(Foo.DateTime))
{
Metadata = new DateTimeRangeSearchMetadata()
},
new SearchItem(nameof(Foo.Education), typeof(string), nameof(Foo.Education))
{
Metadata = new SelectSearchMetadata()
},
new SearchItem(nameof(Foo.Education), typeof(string), nameof(Foo.Education))
{
Metadata = new MultipleSelectSearchMetadata()
},
new SearchItem(nameof(Foo.Education), typeof(string), nameof(Foo.Education))
{
Metadata = new CheckboxListSearchMetadata()
}
});
});
}
[Fact]
public void GetFilter_Ok()
{
var item = new SearchItem(nameof(Foo.Education), typeof(string), nameof(Foo.Education));
var action = item.GetFilter();
Assert.Null(action);
item.Metadata = new StringSearchMetadata() { Value = "test" };
action = item.GetFilter();
Assert.NotNull(action);
}
[Fact]
public void BuildSearchMetadata_Enum_Ok()
{
var options = new SearchFormLocalizerOptions();
var item = new SearchItem("Name", typeof(EnumEducation));
item.Metadata = item.BuildSearchMetadata(options);
Assert.IsType<SelectSearchMetadata>(item.Metadata);
item.Reset();
}
[Fact]
public void BuildSearchMetadata_Number_Ok()
{
var options = new SearchFormLocalizerOptions();
var item = new SearchItem("Name", typeof(int));
item.Metadata = item.BuildSearchMetadata(options);
Assert.IsType<NumberSearchMetadata>(item.Metadata);
item.Reset();
}
[Fact]
public void BuildSearchMetadata_Bool_Ok()
{
var options = new SearchFormLocalizerOptions();
var item = new SearchItem("Name", typeof(bool));
item.Metadata = item.BuildSearchMetadata(options);
Assert.IsType<SelectSearchMetadata>(item.Metadata);
item.Reset();
}
[Fact]
public void BuildSearchMetadata_DateTimeRange_Ok()
{
var options = new SearchFormLocalizerOptions();
var item = new SearchItem("Name", typeof(DateTime));
item.Metadata = item.BuildSearchMetadata(options);
Assert.IsType<DateTimeRangeSearchMetadata>(item.Metadata);
item.Reset();
}
[Fact]
public void BuildSearchMetadata_DateTime_Ok()
{
var item = new SearchItem("Name", typeof(DateTime)) { Metadata = new DateTimeSearchMetadata() };
Assert.IsType<DateTimeSearchMetadata>(item.Metadata);
item.Reset();
}
[Fact]
public void Reset_Ok()
{
var item = new SearchItem("Name", typeof(string));
// Metadata 为空时不报错
item.Reset();
}
[Fact]
public async Task CustomMetadata_Ok()
{
var filterKeyValueAction = new FilterKeyValueAction();
var cut = Context.Render<SearchForm>(pb =>
{
pb.Add(a => a.OnChanged, action =>
{
filterKeyValueAction = action;
return Task.CompletedTask;
});
pb.Add(a => a.Items, new List<ISearchItem>()
{
new SearchItem(nameof(Foo.Name), typeof(string), "Name")
{
Metadata = new CustomeMetadata() { Value = "foo-name-value" }
}
});
});
cut.Contains("value=\"foo-name-value\"");
}
class CustomeMetadata : StringSearchMetadata
{
public override RenderFragment? RenderContent() => builder =>
{
builder.OpenComponent<BootstrapInput<string>>(0);
builder.AddAttribute(10, nameof(BootstrapInput<>.Value), Value);
builder.AddAttribute(20, nameof(BootstrapInput<>.OnValueChanged), ValueChangedHandler);
builder.AddAttribute(30, nameof(BootstrapInput<>.ShowLabel), true);
builder.AddAttribute(60, nameof(BootstrapInput<>.SkipValidate), true);
builder.CloseComponent();
};
}
}