-
Notifications
You must be signed in to change notification settings - Fork 0
/
hn-blacklist.js
1215 lines (966 loc) · 31.3 KB
/
hn-blacklist.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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// ==UserScript==
// @name HN Blacklist
// @author booleandilemma
// @description Hide Hacker News submissions from sources you don't want to see
// @homepageURL https://greasyfork.org/en/scripts/427213-hn-blacklist
// @match https://news.ycombinator.com/
// @match https://news.ycombinator.com/news*
// @version 3.0.0
// @grant GM.getValue
// @grant GM.setValue
// @license GPL-3.0
// ==/UserScript==
"use strict";
const UserScriptName = "HN Blacklist";
const UserScriptVersion = "3.0.0";
/**
* Logs an info message to the console.
* @param {string} message - Specifies the message to log.
*/
function logInfo(message) {
console.info(`${UserScriptName}: ${message}`);
}
/**
* Logs a warning message to the console.
* @param {string} message - Specifies the message to log.
*/
function logWarning(message) {
console.warn(`${UserScriptName}: ${message}`);
}
/**
* Logs an error message to the console.
* @param {string} message - Specifies the message to log.
*/
function logError(message) {
console.error(`${UserScriptName}: ${message}`);
}
async function saveInputsAsync() {
const filtersElement = document.getElementById("filters");
const filterText = filtersElement.value.trim();
const chkfilterEvenWithTestFailuresElement = document.getElementById("chkfilterEvenWithTestFailures");
/* eslint-disable no-undef */
await GM.setValue("filters", filterText);
await GM.setValue("filterEvenWithTestFailures", chkfilterEvenWithTestFailuresElement.checked);
/* eslint-enable no-undef */
alert("Filters saved! Please refresh the page.");
}
/**
* An entry for filtering submissions.
*/
class Entry {
/**
* Creates an entry.
* @param {string} input - Something the user wants to filter by.
* It can begin with "source:", "title:", or "user:".
*/
constructor(input) {
/**
* isValid indicates whether or not the entry is valid.
* @type {boolean}
* @public
*/
this.isValid = null;
/**
* prefix indicates the type of thing to filter by. It can be "source:", "title:", or "user:".
* @type {string}
* @public
*/
this.prefix = null;
/**
* text indicates the value of the source, title, or user to filter by.
* @type {string}
* @public
*/
this.text = null;
this.#buildEntry(input);
}
/**
* Determines if the input is valid.
* @param {string} input - Something the user wants to filter by.
* It can begin with "source:", "title:", or "user:".
* @returns {boolean} A boole indicating whether or not the entry is valid.
*/
#isValidInput(input) {
if (input.startsWith("source:")
|| input.startsWith("title:")
|| input.startsWith("user:")) {
return true;
}
return false;
}
#buildEntry(input) {
this.isValid = this.#isValidInput(input);
if (this.isValid) {
const prefix = input.substring(0, input.indexOf(":"));
const text = input.substring(input.indexOf(":") + 1);
this.prefix = prefix;
this.text = text;
} else {
this.prefix = null;
this.text = input;
}
}
}
/**
* A high-level summary of the results of what was done.
*/
class FilterResults {
constructor() {
/**
* submissionsFilteredBySource indicates the number of submissions filtered by source.
* @type {number}
* @public
*/
this.submissionsFilteredBySource = 0;
/**
* submissionsFilteredByTitle indicates the number of submissions filtered by title.
* @type {number}
* @public
*/
this.submissionsFilteredByTitle = 0;
/**
* submissionsFilteredByUser indicates the number of submissions filtered by user.
* @type {number}
* @public
*/
this.submissionsFilteredByUser = 0;
}
/**
* A function for getting the total number of submissions filtered out.
* @returns {number} The total number of submissions filtered by all categories.
*/
getTotalSubmissionsFilteredOut() {
return this.submissionsFilteredBySource
+ this.submissionsFilteredByTitle
+ this.submissionsFilteredByUser;
}
}
/**
* This defines an object for interacting with the HN page itself, at a low-level.
*/
class PageEngine {
/**
* Get the thing holding the list of submissions.
*/
getSubmissionTable() {
const submissions = this.getSubmissions();
if (submissions == null || submissions.length === 0) {
return null;
}
return submissions[0].parentElement;
}
/**
* Get the list of submissions.
*/
getSubmissions() {
return document.querySelectorAll(".athing");
}
/**
* Updates the specified submission to the specified rank.
* @param {?object} submission - Specifies the HN submission.
* @param {number} newRank - Specifies the new rank to set on the specified submission.
*/
setRank(submission, newRank) {
if (submission === null) {
logWarning("submission is null");
return;
}
let titleIndex = 0;
for (let i = 0; i < submission.childNodes.length; i++) {
const childNode = submission.childNodes[i];
if (childNode.className === "title") {
titleIndex++;
}
if (titleIndex === 1) {
const rank = childNode.innerText;
if (rank === null) {
logWarning("rank is null");
return;
}
childNode.innerText = `${newRank}.`;
return;
}
}
logWarning(`no rank found: ${JSON.stringify(submission)}`);
}
/**
* Updates the ranks of all of the remaining submissions on the current HN page.
* This function is intended to be called after the submissions have been filtered.
* This is because once the submissions are filtered, there is a gap in the rankings.
* For example, if the 3rd submission is removed, the remaining submissions will have
* ranks of: 1, 2, 4, 5, etc.
* This function will correct the remaining submissions to have ranks of: 1, 2, 3, 4, etc.
* This is accomplished by passing in the top rank on the current HN page _before_
* any filtering is done. For example, if the current HN page is the first one,
* the top rank will be "1", and so numbering will start from 1. If the current page
* is the second one, the top rank will be "31".
* @param {number} topRank - Specifies the top rank to start numbering from.
*/
reindexSubmissions(topRank) {
const submissions = this.getSubmissions();
for (let i = 0; i < submissions.length; i++) {
this.setRank(submissions[i], topRank + i);
}
}
/**
* Scans the list of submissions on the current HN page
* and returns the rank of the first submission in the list.
* @returns {?number} The rank of the first HN submission.
*/
getTopRank() {
const submissions = this.getSubmissions();
if (submissions == null) {
logWarning("submissions are null");
return null;
}
if (submissions.length === 0) {
logWarning("submissions are empty");
return null;
}
const topRank = this.getRank(submissions[0]);
return topRank;
}
/**
* Returns the source of the specified titleInfo.
* @param {?object} titleInfo - An element containing the submission headline and source.
*/
getSource(titleInfo) {
if (titleInfo === null) {
logWarning("titleInfo is null");
return null;
}
const titleText = titleInfo.innerText;
const lastParenIndex = titleText.lastIndexOf("(");
if (lastParenIndex < 0) {
return null;
}
const source = titleText.substring(lastParenIndex + 1, titleText.length - 1).trim();
return source;
}
/**
* Returns the titleText (i.e. headline) of the specified titleInfo.
* @param {?object} titleInfo - An element containing the submission headline and source.
*/
getTitleText(titleInfo) {
if (titleInfo === null) {
logWarning("titleInfo is null");
return null;
}
const titleText = titleInfo.innerText;
const lastParenIndex = titleText.lastIndexOf("(");
if (lastParenIndex < 0) {
return titleText;
}
return titleText.substring(0, lastParenIndex);
}
/**
* @param {?object} submission - Specifies the HN submission.
* @returns {?number} The "rank" of an HN submission.
* The rank is defined as the number to the far left of the submission.
*/
getRank(submission) {
if (submission === null) {
logWarning("submission is null");
return null;
}
let titleIndex = 0;
for (let i = 0; i < submission.childNodes.length; i++) {
const childNode = submission.childNodes[i];
if (childNode.className === "title") {
titleIndex++;
}
if (titleIndex === 1) {
const rank = childNode.innerText;
if (rank === null) {
logWarning("rank is null");
return null;
}
return parseInt(rank.replace(".", "").trim(), 10);
}
}
logWarning(`no rank found: ${JSON.stringify(submission)}`);
return null;
}
/**
* Returns the titleInfo of the specified submission.
* This is an element containing the headline and the source
* of the submission.
* @param {?object} submission - Specifies the HN submission.
*/
getTitleInfo(submission) {
if (submission === null) {
logWarning("submission is null");
return null;
}
let titleIndex = 0;
for (let i = 0; i < submission.childNodes.length; i++) {
const childNode = submission.childNodes[i];
if (childNode.className === "title") {
titleIndex++;
}
if (titleIndex === 2) {
return childNode;
}
}
logWarning(`no titleInfo found: ${JSON.stringify(submission)}`);
return null;
}
/**
* Returns the submitter of the specified submission.
* @param {?object} submission - Specifies the HN submission.
* @returns {?string} the username of the submitter.
*/
getSubmitter(submission) {
if (submission === null) {
logWarning("submission is null");
return null;
}
const { nextSibling } = submission;
if (nextSibling === null) {
// TODO: this might be a bug
const rank = this.getRank(submission);
logWarning(`nextSibling is null. rank is: ${rank}`);
return null;
}
const userLink = nextSibling.querySelector(".hnuser");
if (userLink == null) {
const rank = this.getRank(submission);
logWarning(`userLink is null. rank is: ${rank}`);
return null;
}
const hrefUser = userLink.getAttribute("href");
if (hrefUser == null) {
logWarning("hrefUser is null");
return null;
}
return hrefUser.replace("user?id=", "");
}
/**
* Returns an object representing the different parts of the specified submission.
* These are: title, source, rank, and rowIndex.
* @param {?object} submission - Specifies the HN submission.
*/
getSubmissionInfo(submission) {
if (submission === null) {
return null;
}
const titleInfo = this.getTitleInfo(submission);
const rank = this.getRank(submission);
const submitter = this.getSubmitter(submission);
const titleText = this.getTitleText(titleInfo);
const source = this.getSource(titleInfo);
const { rowIndex } = submission;
return {
title: titleText,
source,
submitter,
rank,
rowIndex,
};
}
/**
* Filters out (i.e. deletes) all submissions on the
* current HN page with a domain source contained in the specified blacklist.
* @param {Entry[]} blacklistEntries - A list containing entries to filter on.
* @returns {number} A number indicating how many submissions were filtered out.
*/
filterSubmissionsBySource(blacklistEntries) {
const submissions = this.getSubmissions();
const submissionTable = this.getSubmissionTable();
let submissionsFiltered = 0;
blacklistEntries.forEach((entry) => {
if (entry.prefix !== "source") {
return;
}
for (let i = 0; i < submissions.length; i++) {
const submissionInfo = this.getSubmissionInfo(submissions[i]);
if (submissionInfo.source != null && submissionInfo.source === entry.text.toLowerCase()) {
logInfo(`Source blacklisted - removing ${JSON.stringify(submissionInfo)}`);
// Delete the submission
submissionTable.deleteRow(submissionInfo.rowIndex);
// Delete the submission comments link
submissionTable.deleteRow(submissionInfo.rowIndex);
// Delete the spacer row after the submission
submissionTable.deleteRow(submissionInfo.rowIndex);
submissionsFiltered++;
}
}
});
return submissionsFiltered;
}
/**
* Filters out (i.e. deletes) all submissions on the
* current HN page with a title substring contained in the specified blacklist.
* @param {Entry[]} blacklistEntries - A list containing entries to filter on.
* @returns {number} A number indicating how many submissions were filtered out.
*/
filterSubmissionsByTitle(blacklistEntries) {
const submissions = this.getSubmissions();
const submissionTable = this.getSubmissionTable();
let submissionsFiltered = 0;
blacklistEntries.forEach((entry) => {
if (entry.prefix !== "title") {
return;
}
for (let j = 0; j < submissions.length; j++) {
const submissionInfo = this.getSubmissionInfo(submissions[j]);
if (submissionInfo.title.toLowerCase().includes(entry.text.toLowerCase())) {
logInfo(`Title keyword blacklisted - removing ${JSON.stringify(submissionInfo)}`);
// Delete the submission
submissionTable.deleteRow(submissionInfo.rowIndex);
// Delete the submission comments link
submissionTable.deleteRow(submissionInfo.rowIndex);
// Delete the spacer row after the submission
submissionTable.deleteRow(submissionInfo.rowIndex);
submissionsFiltered++;
}
}
});
return submissionsFiltered;
}
/**
* Filters out (i.e. deletes) all submissions on the
* current HN page submitted by the specified user.
* @param {Entry[]} blacklistEntries - A list containing entries to filter on.
* @returns {number} A number indicating how many submissions were filtered out.
*/
filterSubmissionsByUser(blacklistEntries) {
const submissions = this.getSubmissions();
const submissionTable = this.getSubmissionTable();
let submissionsFiltered = 0;
blacklistEntries.forEach((entry) => {
if (entry.prefix !== "user") {
return;
}
for (let j = 0; j < submissions.length; j++) {
const submissionInfo = this.getSubmissionInfo(submissions[j]);
if (submissionInfo.submitter != null
&& submissionInfo.submitter.toLowerCase() === entry.text.toLowerCase()) {
logInfo(`User blacklisted - removing ${JSON.stringify(submissionInfo)}`);
// Delete the submission
submissionTable.deleteRow(submissionInfo.rowIndex);
// Delete the submission comments link
submissionTable.deleteRow(submissionInfo.rowIndex);
// Delete the spacer row after the submission
submissionTable.deleteRow(submissionInfo.rowIndex);
submissionsFiltered++;
}
}
});
return submissionsFiltered;
}
displayResults(resultsRow) {
const mainTable = document.getElementById("hnmain");
/*
* HN adds an extra child to the mainTable,
* so we have to do this to get the tbody.
* I'm not sure why HN does this.
* This assumes the tbody will be the last child.
*/
const childCount = mainTable.childNodes.length;
const tbody = mainTable.childNodes[childCount - 1];
tbody.appendChild(resultsRow);
}
}
/**
* This defines an object for orchestrating the high-level filtering logic.
* It also handles user input and displaying results.
*/
class Blacklister {
/**
* Builds a list of entries from user input.
* @param {PageEngine} pageEngine -
* The page engine is responsible for low-level interaction with HN.
* @param {set} blacklistInput - A set containing the things to filter on.
*/
constructor(pageEngine, blacklistInput) {
this.pageEngine = pageEngine;
this.blacklistEntries = this.buildEntries(blacklistInput);
}
/**
* Builds a list of entries from user input.
* @param {set} blacklistInput - A set containing the things to filter on.
* @returns {Entry[]} An array of entries.
*/
buildEntries(blacklistInput) {
const entries = [];
blacklistInput.forEach((input) => {
if (input != null) {
entries.push(new Entry(input));
}
});
return entries;
}
/**
* Warns the user about invalid entries.
* @param {Entry[]} blacklistEntries - A list of entries containing the submissions to filter out.
*/
warnAboutInvalidBlacklistEntries() {
this.blacklistEntries.forEach((entry) => {
if (!entry.isValid) {
logError(`"${entry.text}" is an invalid entry and will be skipped. `
+ `Entries must begin with "source:", "title:", or "user:".`);
}
});
}
/**
* Filters out (i.e. deletes) all submissions on the
* current HN page matching one or more provided entries.
* After filtering is performed, the page is reindexed.
* See the reindexSubmissions function of PageEngine for details.
* @returns {FilterResults} An object containing how many submissions were filtered out.
*/
filterSubmissions() {
const topRank = this.pageEngine.getTopRank();
const validEntries = this.blacklistEntries.filter((e) => e.isValid);
const submissionsFilteredBySource = this.pageEngine.filterSubmissionsBySource(validEntries);
const submissionsFilteredByTitle = this.pageEngine.filterSubmissionsByTitle(validEntries);
const submissionsFilteredByUser = this.pageEngine.filterSubmissionsByUser(validEntries);
const filterResults = new FilterResults();
filterResults.submissionsFilteredBySource = submissionsFilteredBySource;
filterResults.submissionsFilteredByTitle = submissionsFilteredByTitle;
filterResults.submissionsFilteredByUser = submissionsFilteredByUser;
if (filterResults.getTotalSubmissionsFilteredOut() > 0) {
logInfo("Reindexing submissions");
this.pageEngine.reindexSubmissions(topRank);
} else {
logInfo("Nothing filtered");
}
return filterResults;
}
displayUI(testResults, filterText, filterEvenWithTestFailures) {
const hnBlacklistTable = document.getElementById("hnBlacklist");
if (hnBlacklistTable != null) {
hnBlacklistTable.remove();
}
const statsRow = document.createElement("tr");
let testResultsMessage = `Test Results: ${testResults.testCount - testResults.failCount}/${testResults.testCount} Passed.`;
if (testResults.failCount > 0) {
testResultsMessage += " Check the log for details.";
}
const stats = `
<td>
<table id="hnBlacklist">
<tbody>
<tr>
<td>
<p style="text-decoration:underline;">
<a href="https://greasyfork.org/en/scripts/427213-hn-blacklist">${UserScriptName} ${UserScriptVersion}</a>
</p>
</td>
</tr>
<tr>
<td>
<textarea id="filters" style="width:300px;height:150px">${filterText}</textarea>
</td>
</tr>
<tr>
<td>
<input id="chkfilterEvenWithTestFailures" type="checkbox">Filter even with test failures</input>
</td>
</tr>
<tr>
<td>
<button id="btnSaveFilters">Save</button>
</td>
</tr>
<tr>
<td>
<p id="filteredResults"></p>
</td>
</tr>
<tr>
<td id="validityResults"></td>
</tr>
<tr>
<td id="testResults">${testResultsMessage}</td>
</tr>
<tr>
<td id="executionTimeResults"></td>
</tr>
</tbody>
</table>
</td>`;
statsRow.innerHTML = stats;
this.pageEngine.displayResults(statsRow);
document.getElementById("chkfilterEvenWithTestFailures").checked = filterEvenWithTestFailures;
document.getElementById("btnSaveFilters").onclick = saveInputsAsync;
}
/**
* Displays results to the user.
* @param {number} timeTaken - The time the script took to execute.
* @param {FilterResults} filterResults - High-level results of what was done.
* @param {TestResults} testResults - A summary of test results.
*/
displayResults(timeTaken, filterResults, testResults) {
let entryValidityMessage = "Entry Validity: ";
if (this.blacklistEntries.length > 0) {
const invalidEntriesExist = this.blacklistEntries.some((e) => !e.isValid);
const errorMessage = "One or more of your entries is invalid. Check the log for details";
entryValidityMessage += invalidEntriesExist ? errorMessage : "All entries valid";
} else {
entryValidityMessage += "No entries supplied";
}
let filteredMessage = "Filtered: ";
if (testResults.failCount > 0) {
if (!testResults.filterEvenWithTestFailures) {
filteredMessage += "One or more tests failed - did not try to filter";
} else {
filteredMessage += `${filterResults.submissionsFilteredBySource} by source, ${filterResults.submissionsFilteredByTitle} by title, ${filterResults.submissionsFilteredByUser} by user`;
}
} else {
filteredMessage += `${filterResults.submissionsFilteredBySource} by source, ${filterResults.submissionsFilteredByTitle} by title, ${filterResults.submissionsFilteredByUser} by user`;
}
document.getElementById("filteredResults").innerText = filteredMessage;
document.getElementById("validityResults").innerText = entryValidityMessage;
document.getElementById("executionTimeResults").innerText = `Execution Time: ${timeTaken} ms`;
}
}
class TestResults {
constructor() {
this.filterEvenWithTestFailures = null;
this.failCount = null;
this.testCount = null;
this.resultsSummary = null;
}
}
class Tester {
constructor() {
this.results = [];
this.failCount = 0;
this.testCount = 0;
}
runTests(testClass) {
const tests = this.#getTests(Object.getPrototypeOf(testClass));
for (let i = 0; i < tests.length; i++) {
this.#runTest(testClass, tests[i]);
}
const testResults = new TestResults();
testResults.failCount = this.failCount;
testResults.testCount = this.testCount;
testResults.summary = this.#getSummary();
return testResults;
}
#getTests(testClass) {
return Object.getOwnPropertyNames(testClass).filter((p) => p.startsWith("test_"));
}
#runTest(testClass, testToRun) {
this.testCount++;
try {
testClass[testToRun](this);
} catch (error) {
const result = {
name: testToRun,
status: error.status ?? "failed",
message: error.message,
stackTrace: error.stack,
};
if (result.status === "failed") {
this.failCount++;
}
this.results.push(result);
return result;
}
const result = {
name: testToRun,
status: "passed",
};
this.results.push(result);
return result;
}
failWith(result) {
result.status = "failed"; // eslint-disable-line no-param-reassign
throw result;
}
#getSummary() {
let summary;
if (this.failCount === 0) {
summary = `Tests Results ${this.testCount}/${this.testCount} Passed`;
} else {
summary = `Tests Results ${this.testCount - this.failCount}/${this.testCount} Passed ${JSON.stringify(this.results, null, 2)}`;
}
return summary;
}
}
/**
* This class contains several tests for testing the correctness of the PageEngine.
* As the PageEngine is the closest code in this userscript to HN,
* it's most susceptible to breaking if the HN developers change something.
* Therefore, it's good to have tests for all of its functionality.
*/
class PageEngineTester {
constructor(pageEngine) {
this.pageEngine = pageEngine;
}
test_getSubmissionTable_ableToGetSubmissionTable(tester) {
// Arrange
// Act
let table;
try {
table = this.pageEngine.getSubmissionTable();
} catch {
// Empty
}
// Assert
if (table == null) {
tester.failWith({
message: "Unable to obtain submission table",
});
}
}
test_getSubmissions_numberOfSubmissionsIsCorrect(tester) {
// Arrange
const expectedLength = 30;
// Act
const { submissions, result } = this.getSubmissionsWithResult();
// Assert
if (submissions == null) {
tester.failWith(result);
}
if (submissions.length !== expectedLength) {
tester.failWith({
message: `Submissions length is wrong. expected ${expectedLength}, got ${submissions.length}`,
});
}
}
test_getRank_ableToGetRank(tester) {
// Arrange
const { submissions, result } = this.getSubmissionsWithResult();
if (submissions == null) {
tester.failWith(result);
}
// Arbitrarily testing the 5th submission.
if (submissions.length < 5) {
tester.failWith({
message: "Submissions length less than 5, can't get a rank",
});
}
// Act
let firstRankOnPage = null;
try {
firstRankOnPage = this.pageEngine.getRank(submissions[0]);
} catch {
// Empty
}
// Assert
if (firstRankOnPage == null) {
tester.failWith({
message: "First submission rank is null",
});
}
let fifthRank = null;
try {
fifthRank = this.pageEngine.getRank(submissions[4]);
} catch {
// Empty
}
if (fifthRank == null) {
tester.failWith({
message: "Fifth submission rank is null",
});
}
/*
* We offset the rank like this so that this test will work
* on any submissions page.
*/
if (fifthRank !== (firstRankOnPage + 4)) {
tester.failWith({
message: "Unable to obtain submission rank",
});
}
}
test_getTopRank_ableToGetTopRank(tester) {
// Arrange
// Act
let topRank = null;
try {
topRank = this.pageEngine.getTopRank();
} catch {
// Empty
}
// Assert
if (topRank == null) {
tester.failWith({
message: "Unable to get top rank",
});
}
}
test_getSubmitter_ableToGetSubmitter(tester) {
// Arrange
const { submissions, result } = this.getSubmissionsWithResult();
if (submissions == null) {
tester.failWith(result);
}
// Arbitrarily testing the 5th submission.
if (submissions.length < 5) {
tester.failWith({
message: "Submissions length less than 5, can't get a rank",
});
}