-
Notifications
You must be signed in to change notification settings - Fork 857
/
Copy pathboolean.js
286 lines (249 loc) · 9.44 KB
/
boolean.js
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
import { frameworks, url, initSurvey, getQuestionValue, getQuestionJson } from "../helper";
import { ClientFunction, Selector, fixture, test } from "testcafe";
const title = "boolean";
var json = {
questions: [
{
type: "boolean",
name: "bool",
title: "Are you 21 or older?",
isRequired: true,
},
],
};
var jsonCheckbox = {
questions: [
{
type: "boolean",
name: "bool",
title: "Are you 21 or older?",
renderAs: "checkbox",
isRequired: true,
},
],
};
var jsonCheckbox2 = {
elements: [
{
type: "boolean",
name: "bool",
title: "Are you 21 or older?",
titleLocation: "hidden",
renderAs: "checkbox",
},
],
};
var jsonRadio = {
questions: [
{
type: "boolean",
name: "bool",
title: "Are you 21 or older?",
isRequired: true,
renderAs: "radio"
},
],
};
frameworks.forEach((framework) => {
fixture`${framework} ${title}`.page`${url}${framework}`.beforeEach(
async (t) => {
await initSurvey(framework, json);
}
);
test("checked class", async (t) => {
const label = Selector("div label");
await t
.expect(label.classNames).notContains("sd-boolean--checked")
.click("div label", { offsetX: 4 })
.expect(label.classNames).notContains("sd-boolean--checked")
.click("div label")
.expect(label.classNames).contains("sd-boolean--checked");
});
test("click on true label in intermediate state", async (t) => {
let questionValue = await getQuestionValue();
await t.expect(questionValue).eql(undefined);
await t.click(Selector(".sd-boolean__thumb-ghost").nth(1));
questionValue = await getQuestionValue();
await t.expect(questionValue).eql(true);
});
test("click on false label in intermediate state", async (t) => {
let questionValue = await getQuestionValue();
await t.expect(questionValue).eql(undefined);
await t.click(".sd-boolean__label:first-of-type");
questionValue = await getQuestionValue();
await t.expect(questionValue).eql(false);
});
test("click on right side of switch in intermediate state", async (t) => {
let questionValue = await getQuestionValue();
await t.expect(questionValue).eql(undefined);
await t.click(Selector(".sd-boolean"), { offsetX: -4 });
questionValue = await getQuestionValue();
await t.expect(questionValue).eql(true);
});
test("click on left side of switch in intermediate state", async (t) => {
let questionValue = await getQuestionValue();
await t.expect(questionValue).eql(undefined);
await t.click(Selector(".sd-boolean"), { offsetX: 4 });
questionValue = await getQuestionValue();
await t.expect(questionValue).eql(false);
});
test("check arrow keydowns", async (t) => {
await ClientFunction(() => { document.querySelector(".sd-boolean input").focus(); })();
await t
.expect(getQuestionValue()).eql(undefined)
.pressKey("right")
.expect(getQuestionValue()).ok()
.pressKey("left")
.expect(getQuestionValue()).eql(false);
});
});
frameworks.forEach((framework) => {
fixture`${framework} ${title}`.page`${url}${framework}`.beforeEach(
async (t) => {
await initSurvey(framework, json, undefined, true);
}
);
test("click on question title state editable", async (t) => {
var newTitle = "MyText";
var json = JSON.parse(await getQuestionJson());
let questionValue = await getQuestionValue();
await t.expect(questionValue).eql(undefined);
var outerSelector = ".sd-question__title";
var innerSelector = ".sv-string-editor";
await t
.click(outerSelector)
.selectEditableContent(outerSelector + " " + innerSelector, outerSelector + " " + innerSelector)
.typeText(outerSelector + " " + innerSelector, newTitle)
.click("body");
questionValue = await getQuestionValue();
await t.expect(questionValue).eql(undefined);
json = JSON.parse(await getQuestionJson());
await t.expect(json.title).eql(newTitle);
});
test("click on true label in intermediate state editable", async (t) => {
var newLabelTrue = "MyText";
var json = JSON.parse(await getQuestionJson());
var labelFalse = json.labelFalse;
let questionValue = await getQuestionValue();
await t.expect(questionValue).eql(undefined);
var outerSelector = Selector(".sd-boolean__label").nth(1);
await t
.click(outerSelector)
.typeText(outerSelector.find(".sv-string-editor"), newLabelTrue, { replace: true })
.click("body", { offsetX: 0, offsetY: 0 });
questionValue = await getQuestionValue();
await t.expect(questionValue).eql(undefined);
json = JSON.parse(await getQuestionJson());
await t
.expect(json.labelFalse).eql(labelFalse)
.expect(json.labelTrue).eql(newLabelTrue);
});
test("click on false label in intermediate state editable", async (t) => {
var newLabelFalse = "MyText";
var json = JSON.parse(await getQuestionJson());
var labelTrue = json.labelTrue;
let questionValue = await getQuestionValue();
await t.expect(questionValue).eql(undefined);
var outerSelector = ".sd-boolean__label:nth-of-type(1)";
var innerSelector = ".sv-string-editor";
await t
.click(outerSelector)
.typeText(outerSelector + " " + innerSelector, newLabelFalse, { replace: true })
.click("body", { offsetX: 0, offsetY: 0 });
questionValue = await getQuestionValue();
await t.expect(questionValue).eql(undefined);
json = JSON.parse(await getQuestionJson());
await t
.expect(json.labelFalse).eql(newLabelFalse)
.expect(json.labelTrue).eql(labelTrue);
});
});
frameworks.forEach((framework) => {
fixture`${framework} ${title}`.page`${url}${framework}`;
test("check first clink on boolean-checkbox input", async (t) => {
await initSurvey(framework, jsonCheckbox);
const selector = Selector(".sd-selectbase input");
await t
.click(selector)
.expect(selector.checked).ok();
});
test("test radio boolean", async (t) => {
await initSurvey(framework, jsonRadio);
await t
.expect(Selector("input[type=radio]").nth(0).checked).notOk()
.expect(Selector("input[type=radio]").nth(1).checked).notOk()
.click(Selector(".sv-string-viewer").withText("No"))
.expect(Selector("input[type=radio]").nth(0).checked).ok()
.expect(Selector("input[type=radio]").nth(1).checked).notOk()
.click(Selector(".sv-string-viewer").withText("Yes"))
.expect(Selector("input[type=radio]").nth(0).checked).notOk()
.expect(Selector("input[type=radio]").nth(1).checked).ok();
});
});
frameworks.forEach((framework) => {
fixture`${framework} ${title}`
.page`${url}${framework}`;
test("Check actions", async (t) => {
await initSurvey(framework, jsonCheckbox2, { onGetQuestionTitleActions: (_, options) => {
options.titleActions = [
{
title: "Click me",
action: () => {
const q = options.question;
if (!q.description) {
q.description = "Description!";
} else {
q.descriptionLocation = q.descriptionLocation === "hidden" ? "default" : "hidden";
}
},
}];
} });
await t
.expect(Selector(".sv-string-viewer").withText("21").exists).ok()
.expect(Selector(".sv-string-viewer").withText("Description!").exists).notOk()
.click(Selector(".sd-action__title").withText("Click me"))
.expect(Selector(".sv-string-viewer").withText("Description!").exists).ok()
.click(Selector(".sd-action__title").withText("Click me"))
.expect(Selector("div").withText("Description!").exists).notOk()
.click(Selector(".sd-action__title").withText("Click me"))
.expect(Selector(".sv-string-viewer").withText("Description!").exists).ok();
});
test("test radio boolean with values", async (t) => {
const checkQuestionValue = ClientFunction(
(val) => {
return window["survey"].getQuestionByName("q").value == val;
}
);
await initSurvey(framework, {
"elements": [{
"type": "boolean",
"name": "q",
"title": "Are you 21 or older?",
"valueTrue": "Yes",
"valueFalse": "No",
"renderAs": "radio"
}],
"showQuestionNumbers": false
});
await t
.expect(Selector("input[type=radio]").nth(0).checked).notOk()
.expect(Selector(".sd-item").nth(0).hasClass("sd-radio--checked")).notOk()
.expect(Selector("input[type=radio]").nth(1).checked).notOk()
.expect(Selector(".sd-item").nth(1).hasClass("sd-radio--checked")).notOk()
.expect(checkQuestionValue(null)).ok()
.click(Selector(".sv-string-viewer").withText("No"))
.expect(Selector("input[type=radio]").nth(0).checked).ok()
.expect(Selector(".sd-item").nth(0).hasClass("sd-radio--checked")).ok()
.expect(Selector("input[type=radio]").nth(1).checked).notOk()
.expect(Selector(".sd-item").nth(1).hasClass("sd-radio--checked")).notOk()
.expect(checkQuestionValue("No")).ok()
.click(Selector(".sv-string-viewer").withText("Yes"))
.expect(Selector("input[type=radio]").nth(0).checked).notOk()
.expect(Selector("input[type=radio]").nth(1).checked).ok()
.expect(checkQuestionValue("Yes")).ok()
.click(Selector(".sv-string-viewer").withText("No"))
.expect(Selector("input[type=radio]").nth(0).checked).ok()
.expect(Selector("input[type=radio]").nth(1).checked).notOk()
.expect(checkQuestionValue("No")).ok();
});
});