-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.ts
126 lines (107 loc) · 3.21 KB
/
util.ts
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
import { Selector } from "testcafe";
const ENTER = "↵";
const DELETE = "←";
export const GAME_ID = "#wordle-app-game";
export const getSelector = (
value: string,
element: string = "div",
attribute: string = "class"
) => {
return `${element}[${attribute}*='${value}']`;
};
export const clickLetter = async (t: TestController, letter: string) => {
const gameApp = Selector(GAME_ID);
const gameKeyboard = gameApp.find(getSelector("Keyboard-module_keyboard"));
const key = gameKeyboard.find(`button[data-key="${letter}"]`);
await t.click(key);
};
export const enterWord = async (t: TestController, word: string) => {
for (const letter of word) {
await clickLetter(t, letter);
}
await clickLetter(t, ENTER);
await t.wait(4000);
};
export const revertWord = async (t: TestController) => {
for (let i = 0; i < 5; i++) {
await clickLetter(t, DELETE);
}
};
type Evaluation = "correct" | "absent" | "present" | "tbd" | "empty";
type Reveal = {
letter: string | null;
evaluation: Evaluation;
};
export const evaluateRow = async (rowIndex: number): Promise<Reveal[]> => {
const gameApp = Selector(GAME_ID);
const gameRow = gameApp.find(getSelector("Row-module_row")).nth(rowIndex);
const gameTiles = gameRow.find(getSelector("Tile-module_tile"));
const rowReveal: Reveal[] = [];
for (let i = 0; i < 5; i++) {
const gameTile = gameTiles.nth(i);
const letter = await gameTile.textContent;
const evaluation = (await gameTile.getAttribute(
"data-state"
)) as Evaluation;
rowReveal.push({
letter,
evaluation,
});
}
return rowReveal;
};
export const getRandomWord = (wordList: string[]): string => {
const len = wordList.length;
const index = Math.floor(Math.random() * len);
return wordList.splice(index, 1)[0];
};
export const filterWordList = (
wordList: string[],
result: Reveal[]
): string[] => {
// A letter can be marked absent and present at same time for repeat letters in the list hence we filter the absent list.
const { absent } = result.reduce(
(acc: { present: string[]; absent: string[] }, { letter, evaluation }) => {
if (letter) {
if (evaluation === "absent" && !acc.present.includes(letter)) {
acc.absent.push(letter);
} else {
acc.present.push(letter);
let index = acc.absent.indexOf(letter);
if (index > -1) {
acc.absent.splice(index, 1);
}
}
}
return acc;
},
{
present: [],
absent: [],
}
);
const newList = wordList.filter((word) => {
// filter out absent letters
if (absent.some((absentLetter) => word.includes(absentLetter))) {
return false;
}
for (let i = 0; i < result.length; i++) {
const { letter, evaluation } = result[i];
if (letter) {
// filter out words that don't have correct letter in place
if (evaluation === "correct" && word[i] !== letter) {
return false;
}
// filter out words that are present but in wrong place
if (
evaluation === "present" &&
(word[i] === letter || !word.includes(letter))
) {
return false;
}
}
}
return true;
});
return newList;
};