-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDateInputTests.cs
More file actions
263 lines (193 loc) · 8.96 KB
/
DateInputTests.cs
File metadata and controls
263 lines (193 loc) · 8.96 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
using System.Threading.Tasks;
using FluentAssertions;
using Microsoft.Playwright;
using NUnit.Framework;
using Playwright.ReactUI.Controls;
using Playwright.ReactUI.Controls.Constants;
using Playwright.ReactUI.Tests.Helpers;
namespace Playwright.ReactUI.Tests.Controls;
public class DateInputTests : TestsBase
{
[Test]
public async Task IsVisible_Return_True_When_DateInput_Is_Visible()
{
var dateInput = await GetDateInputAsync("default").ConfigureAwait(false);
await dateInput.WaitForAsync().ConfigureAwait(false);
var actual = await dateInput.IsVisibleAsync().ConfigureAwait(false);
actual.Should().BeTrue();
}
[Test]
public async Task IsVisible_Return_False_When_DateInput_Is_Not_Exists()
{
var visibleDateInput = await GetDateInputAsync("default").ConfigureAwait(false);
var notExistingDateInput = new DateInput(Page.GetByTestId("HiddenDatePicker"));
await visibleDateInput.WaitForAsync().ConfigureAwait(false);
var actual = await notExistingDateInput.IsVisibleAsync().ConfigureAwait(false);
actual.Should().BeFalse();
}
[Test]
public async Task IsDisabled_Return_True_When_DateInput_Is_Disabled()
{
var dateInput = await GetDateInputAsync("disabled").ConfigureAwait(false);
var actual = await dateInput.IsDisabledAsync().ConfigureAwait(false);
actual.Should().BeTrue();
}
[Test]
public async Task IsDisabled_Return_False_When_DateInput_Is_Enabled()
{
var dateInput = await GetDateInputAsync("default").ConfigureAwait(false);
var actual = await dateInput.IsDisabledAsync().ConfigureAwait(false);
actual.Should().BeFalse();
}
[Test]
public async Task HasError_Return_True_When_DateInput_With_Error()
{
var dateInput = await GetDateInputAsync("error").ConfigureAwait(false);
var actual = await dateInput.HasErrorAsync().ConfigureAwait(false);
actual.Should().BeTrue();
}
[Test]
public async Task HasError_Return_False_When_DateInput_Without_Error()
{
var dateInput = await GetDateInputAsync("default").ConfigureAwait(false);
var actual = await dateInput.HasErrorAsync().ConfigureAwait(false);
actual.Should().BeFalse();
}
[Test]
public async Task HasWarning_Return_True_When_DateInput_With_Warning()
{
var dateInput = await GetDateInputAsync("warning").ConfigureAwait(false);
var actual = await dateInput.HasWarningAsync().ConfigureAwait(false);
actual.Should().BeTrue();
}
[Test]
public async Task HasWarning_Return_False_When_DateInput_Without_Warning()
{
var dateInput = await GetDateInputAsync("default").ConfigureAwait(false);
var actual = await dateInput.HasWarningAsync().ConfigureAwait(false);
actual.Should().BeFalse();
}
[Test]
public async Task GetValue_Return_Value_When_DateInput_Value_Is_Not_Empty()
{
var dateInput = await GetDateInputAsync("filled").ConfigureAwait(false);
var actual = await dateInput.GetValueAsync().ConfigureAwait(false);
actual.Should().Be("01.01.2024");
}
[Test]
public async Task GetValue_Return_Empty_When_DateInput_Value_Is_Empty()
{
var dateInput = await GetDateInputAsync("default").ConfigureAwait(false);
var actual = await dateInput.GetValueAsync().ConfigureAwait(false);
actual.Should().BeEmpty();
}
[Test]
public async Task Fill_New_Value()
{
var dateInput = await GetDateInputAsync("default").ConfigureAwait(false);
await dateInput.NativeInputLocator.Expect().ToBeEmptyAsync().ConfigureAwait(false);
await dateInput.FillAsync("02.01.2024").ConfigureAwait(false);
await dateInput.NativeInputLocator.Expect().ToHaveValueAsync("02.01.2024").ConfigureAwait(false);
}
[Test]
public async Task Fill_Rewrite_Existing_Value()
{
var dateInput = await GetDateInputAsync("filled").ConfigureAwait(false);
await dateInput.NativeInputLocator.Expect().ToHaveValueAsync("01.01.2024").ConfigureAwait(false);
await dateInput.FillAsync("02.01.2024").ConfigureAwait(false);
await dateInput.NativeInputLocator.Expect().ToHaveValueAsync("02.01.2024").ConfigureAwait(false);
}
[Test]
public async Task Fill_With_Empty_String()
{
var dateInput = await GetDateInputAsync("filled").ConfigureAwait(false);
await dateInput.NativeInputLocator.Expect().ToHaveValueAsync("01.01.2024").ConfigureAwait(false);
await dateInput.FillAsync(string.Empty).ConfigureAwait(false);
await dateInput.NativeInputLocator.Expect().ToBeEmptyAsync().ConfigureAwait(false);
}
[Test]
public async Task Clear()
{
var dateInput = await GetDateInputAsync("filled").ConfigureAwait(false);
await dateInput.NativeInputLocator.Expect().ToHaveValueAsync("01.01.2024").ConfigureAwait(false);
await dateInput.ClearAsync().ConfigureAwait(false);
await dateInput.NativeInputLocator.Expect().ToBeEmptyAsync().ConfigureAwait(false);
}
[Test]
public async Task Click()
{
var dateInput = await GetDateInputAsync("default").ConfigureAwait(false);
await dateInput.RootLocator.Expect().Not.ToBeFocusedAsync().ConfigureAwait(false);
await dateInput.ClickAsync().ConfigureAwait(false);
await dateInput.RootLocator.Expect().ToBeFocusedAsync().ConfigureAwait(false);
}
[Test]
public async Task Hover()
{
var dateInput = await GetDateInputAsync("with-tooltip").ConfigureAwait(false);
await dateInput.WaitForAsync().ConfigureAwait(false);
var tooltipLocator = Page.GetByText("TooltipText");
await tooltipLocator.WaitForAsync(new LocatorWaitForOptions { State = WaitForSelectorState.Hidden })
.ConfigureAwait(false);
await dateInput.HoverAsync().ConfigureAwait(false);
await tooltipLocator.Expect().ToBeVisibleAsync().ConfigureAwait(false);
}
[Test]
public async Task Focus_And_Blur()
{
var dateInput = await GetDateInputAsync("default").ConfigureAwait(false);
await dateInput.RootLocator.Expect().Not.ToBeFocusedAsync().ConfigureAwait(false);
await dateInput.FocusAsync().ConfigureAwait(false);
await dateInput.RootLocator.Expect().ToBeFocusedAsync().ConfigureAwait(false);
await dateInput.BlurAsync().ConfigureAwait(false);
await dateInput.RootLocator.Expect().Not.ToBeFocusedAsync().ConfigureAwait(false);
}
[Test]
public async Task GetTooltip()
{
var dateInput = await GetDateInputAsync("with-tooltip").ConfigureAwait(false);
await dateInput.RootLocator.HoverAsync().ConfigureAwait(false);
var tooltip = await dateInput.GetTooltipAsync(TooltipType.Information).ConfigureAwait(false);
await tooltip.RootLocator.Expect().ToHaveTextAsync("TooltipText").ConfigureAwait(false);
}
[Test]
public async Task HasAttribute_Return_True_When_Attribute_Exist()
{
var dateInput = await GetDateInputAsync("default").ConfigureAwait(false);
var actual = await dateInput.HasAttributeAsync("data-tid").ConfigureAwait(false);
actual.Should().BeTrue();
}
[Test]
public async Task HasAttribute_Return_False_When_Attribute_Not_Exist()
{
var dateInput = await GetDateInputAsync("default").ConfigureAwait(false);
var actual = await dateInput.HasAttributeAsync("data-tid-2").ConfigureAwait(false);
actual.Should().BeFalse();
}
[Test]
public async Task GetAttribute_Return_Attribute_Value_When_Attribute_Exist_With_Value()
{
var dateInput = await GetDateInputAsync("default").ConfigureAwait(false);
var actual = await dateInput.GetAttributeValueAsync("data-tid").ConfigureAwait(false);
actual.Should().Be("DateInputId");
}
[Test]
public async Task GetAttribute_Return_Empty_When_Attribute_Exist_Without_Value()
{
var dateInput = await GetDateInputAsync("default").ConfigureAwait(false);
var actual = await dateInput.GetAttributeValueAsync("data-attribute-without-value").ConfigureAwait(false);
actual.Should().BeEmpty();
}
[Test]
public async Task GetAttribute_Return_Null_When_Attribute_Not_Exist()
{
var dateInput = await GetDateInputAsync("default").ConfigureAwait(false);
var actual = await dateInput.GetAttributeValueAsync("data-tid-2").ConfigureAwait(false);
actual.Should().BeNull();
}
private async Task<DateInput> GetDateInputAsync(string storyName)
{
await Page.GotoAsync(StorybookUrl.Get($"dateinput--{storyName}")).ConfigureAwait(false);
return new DateInput(Page.GetByTestId("DateInputId"));
}
}