-
-
Notifications
You must be signed in to change notification settings - Fork 381
Expand file tree
/
Copy pathSearchFormTest.cs
More file actions
180 lines (166 loc) · 6.04 KB
/
SearchFormTest.cs
File metadata and controls
180 lines (166 loc) · 6.04 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
// 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.Filter, filterKeyValueAction);
pb.Add(a => a.OnFilterChanged, action =>
{
filterKeyValueAction = action;
return Task.CompletedTask;
});
pb.Add(a => a.FilterChanged, EventCallback.Factory.Create<FilterKeyValueAction>(this, v =>
{
filterKeyValueAction = v;
}));
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 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")
{
GroupName = "Group1",
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 ShowUnsetGroupItemsOnTop_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",
MetaData = new StringSearchMetaData()
},
new SearchItem(nameof(Foo.Address), typeof(string), "Address")
{
MetaData = new StringSearchMetaData()
}
});
});
}
[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 filterKeyValueAction = new FilterKeyValueAction();
var cut = Context.Render<SearchForm>(pb =>
{
pb.Add(a => a.Filter, filterKeyValueAction);
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);
}
}