-
Notifications
You must be signed in to change notification settings - Fork 0
/
report.html
1091 lines (966 loc) · 54.5 KB
/
report.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title id="head-title">report.html</title>
<style type="text/css">body {
font-family: Helvetica, Arial, sans-serif;
font-size: 12px;
/* do not increase min-width as some may use split screens */
min-width: 800px;
color: #999;
}
h1 {
font-size: 24px;
color: black;
}
h2 {
font-size: 16px;
color: black;
}
p {
color: black;
}
a {
color: #999;
}
table {
border-collapse: collapse;
}
/******************************
* SUMMARY INFORMATION
******************************/
#environment td {
padding: 5px;
border: 1px solid #e6e6e6;
vertical-align: top;
}
#environment tr:nth-child(odd) {
background-color: #f6f6f6;
}
#environment ul {
margin: 0;
padding: 0 20px;
}
/******************************
* TEST RESULT COLORS
******************************/
span.passed,
.passed .col-result {
color: green;
}
span.skipped,
span.xfailed,
span.rerun,
.skipped .col-result,
.xfailed .col-result,
.rerun .col-result {
color: orange;
}
span.error,
span.failed,
span.xpassed,
.error .col-result,
.failed .col-result,
.xpassed .col-result {
color: red;
}
.col-links__extra {
margin-right: 3px;
}
/******************************
* RESULTS TABLE
*
* 1. Table Layout
* 2. Extra
* 3. Sorting items
*
******************************/
/*------------------
* 1. Table Layout
*------------------*/
#results-table {
border: 1px solid #e6e6e6;
color: #999;
font-size: 12px;
width: 100%;
}
#results-table th,
#results-table td {
padding: 5px;
border: 1px solid #e6e6e6;
text-align: left;
}
#results-table th {
font-weight: bold;
}
/*------------------
* 2. Extra
*------------------*/
.logwrapper {
max-height: 230px;
overflow-y: scroll;
background-color: #e6e6e6;
}
.logwrapper.expanded {
max-height: none;
}
.logwrapper.expanded .logexpander:after {
content: "collapse [-]";
}
.logwrapper .logexpander {
z-index: 1;
position: sticky;
top: 10px;
width: max-content;
border: 1px solid;
border-radius: 3px;
padding: 5px 7px;
margin: 10px 0 10px calc(100% - 80px);
cursor: pointer;
background-color: #e6e6e6;
}
.logwrapper .logexpander:after {
content: "expand [+]";
}
.logwrapper .logexpander:hover {
color: #000;
border-color: #000;
}
.logwrapper .log {
min-height: 40px;
position: relative;
top: -50px;
height: calc(100% + 50px);
border: 1px solid #e6e6e6;
color: black;
display: block;
font-family: "Courier New", Courier, monospace;
padding: 5px;
padding-right: 80px;
white-space: pre-wrap;
}
div.media {
border: 1px solid #e6e6e6;
float: right;
height: 240px;
margin: 0 5px;
overflow: hidden;
width: 320px;
}
.media-container {
display: grid;
grid-template-columns: 25px auto 25px;
align-items: center;
flex: 1 1;
overflow: hidden;
height: 200px;
}
.media-container--fullscreen {
grid-template-columns: 0px auto 0px;
}
.media-container__nav--right,
.media-container__nav--left {
text-align: center;
cursor: pointer;
}
.media-container__viewport {
cursor: pointer;
text-align: center;
height: inherit;
}
.media-container__viewport img,
.media-container__viewport video {
object-fit: cover;
width: 100%;
max-height: 100%;
}
.media__name,
.media__counter {
display: flex;
flex-direction: row;
justify-content: space-around;
flex: 0 0 25px;
align-items: center;
}
.collapsible td:not(.col-links) {
cursor: pointer;
}
.collapsible td:not(.col-links):hover::after {
color: #bbb;
font-style: italic;
cursor: pointer;
}
.col-result {
width: 130px;
}
.col-result:hover::after {
content: " (hide details)";
}
.col-result.collapsed:hover::after {
content: " (show details)";
}
#environment-header h2:hover::after {
content: " (hide details)";
color: #bbb;
font-style: italic;
cursor: pointer;
font-size: 12px;
}
#environment-header.collapsed h2:hover::after {
content: " (show details)";
color: #bbb;
font-style: italic;
cursor: pointer;
font-size: 12px;
}
/*------------------
* 3. Sorting items
*------------------*/
.sortable {
cursor: pointer;
}
.sortable.desc:after {
content: " ";
position: relative;
left: 5px;
bottom: -12.5px;
border: 10px solid #4caf50;
border-bottom: 0;
border-left-color: transparent;
border-right-color: transparent;
}
.sortable.asc:after {
content: " ";
position: relative;
left: 5px;
bottom: 12.5px;
border: 10px solid #4caf50;
border-top: 0;
border-left-color: transparent;
border-right-color: transparent;
}
.hidden, .summary__reload__button.hidden {
display: none;
}
.summary__data {
flex: 0 0 550px;
}
.summary__reload {
flex: 1 1;
display: flex;
justify-content: center;
}
.summary__reload__button {
flex: 0 0 300px;
display: flex;
color: white;
font-weight: bold;
background-color: #4caf50;
text-align: center;
justify-content: center;
align-items: center;
border-radius: 3px;
cursor: pointer;
}
.summary__reload__button:hover {
background-color: #46a049;
}
.summary__spacer {
flex: 0 0 550px;
}
.controls {
display: flex;
justify-content: space-between;
}
.filters,
.collapse {
display: flex;
align-items: center;
}
.filters button,
.collapse button {
color: #999;
border: none;
background: none;
cursor: pointer;
text-decoration: underline;
}
.filters button:hover,
.collapse button:hover {
color: #ccc;
}
.filter__label {
margin-right: 10px;
}
</style>
</head>
<body>
<h1 id="title">report.html</h1>
<p>Report generated on 07-Nov-2024 at 09:45:16 by <a href="https://pypi.python.org/pypi/pytest-html">pytest-html</a>
v4.1.1</p>
<div id="environment-header">
<h2>Environment</h2>
</div>
<table id="environment"></table>
<!-- TEMPLATES -->
<template id="template_environment_row">
<tr>
<td></td>
<td></td>
</tr>
</template>
<template id="template_results-table__body--empty">
<tbody class="results-table-row">
<tr id="not-found-message">
<td colspan="4">No results found. Check the filters.</th>
</tr>
</template>
<template id="template_results-table__tbody">
<tbody class="results-table-row">
<tr class="collapsible">
</tr>
<tr class="extras-row">
<td class="extra" colspan="4">
<div class="extraHTML"></div>
<div class="media">
<div class="media-container">
<div class="media-container__nav--left"><</div>
<div class="media-container__viewport">
<img src="" />
<video controls>
<source src="" type="video/mp4">
</video>
</div>
<div class="media-container__nav--right">></div>
</div>
<div class="media__name"></div>
<div class="media__counter"></div>
</div>
<div class="logwrapper">
<div class="logexpander"></div>
<div class="log"></div>
</div>
</td>
</tr>
</tbody>
</template>
<!-- END TEMPLATES -->
<div class="summary">
<div class="summary__data">
<h2>Summary</h2>
<div class="additional-summary prefix">
</div>
<p class="run-count">20 tests took 00:01:60.</p>
<p class="filter">(Un)check the boxes to filter the results.</p>
<div class="summary__reload">
<div class="summary__reload__button hidden" onclick="location.reload()">
<div>There are still tests running. <br />Reload this page to get the latest results!</div>
</div>
</div>
<div class="summary__spacer"></div>
<div class="controls">
<div class="filters">
<input checked="true" class="filter" name="filter_checkbox" type="checkbox" data-test-result="failed" />
<span class="failed">3 Failed,</span>
<input checked="true" class="filter" name="filter_checkbox" type="checkbox" data-test-result="passed" />
<span class="passed">17 Passed,</span>
<input checked="true" class="filter" name="filter_checkbox" type="checkbox" data-test-result="skipped" disabled/>
<span class="skipped">0 Skipped,</span>
<input checked="true" class="filter" name="filter_checkbox" type="checkbox" data-test-result="xfailed" disabled/>
<span class="xfailed">0 Expected failures,</span>
<input checked="true" class="filter" name="filter_checkbox" type="checkbox" data-test-result="xpassed" disabled/>
<span class="xpassed">0 Unexpected passes,</span>
<input checked="true" class="filter" name="filter_checkbox" type="checkbox" data-test-result="error" disabled/>
<span class="error">0 Errors,</span>
<input checked="true" class="filter" name="filter_checkbox" type="checkbox" data-test-result="rerun" disabled/>
<span class="rerun">0 Reruns</span>
</div>
<div class="collapse">
<button id="show_all_details">Show all details</button> / <button id="hide_all_details">Hide all details</button>
</div>
</div>
</div>
<div class="additional-summary summary">
</div>
<div class="additional-summary postfix">
</div>
</div>
<table id="results-table">
<thead id="results-table-head">
<tr>
<th class="sortable" data-column-type="result">Result</th>
<th class="sortable" data-column-type="testId">Test</th>
<th class="sortable" data-column-type="duration">Duration</th>
<th>Links</th>
</tr>
</thead>
</table>
</body>
<footer>
<div id="data-container" data-jsonblob="{"environment": {"Python": "3.12.7", "Platform": "Windows-10-10.0.19045-SP0", "Packages": {"pytest": "8.3.3", "pluggy": "1.5.0"}, "Plugins": {"html": "4.1.1", "metadata": "3.1.1"}}, "tests": {"test_first_auto.py::TestUnit::test_c_posting": [{"extras": [], "result": "Passed", "testId": "test_first_auto.py::TestUnit::test_c_posting", "duration": "00:00:06", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">test_first_auto.py::TestUnit::test_c_posting</td>", "<td class=\"col-duration\">00:00:06</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "test_first_auto.py::TestUnit::test_c_posting_time": [{"extras": [], "result": "Passed", "testId": "test_first_auto.py::TestUnit::test_c_posting_time", "duration": "00:00:04", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">test_first_auto.py::TestUnit::test_c_posting_time</td>", "<td class=\"col-duration\">00:00:04</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "test_first_auto.py::TestSanity::test_hp_sanity": [{"extras": [], "result": "Passed", "testId": "test_first_auto.py::TestSanity::test_hp_sanity", "duration": "00:00:04", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">test_first_auto.py::TestSanity::test_hp_sanity</td>", "<td class=\"col-duration\">00:00:04</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "test_first_auto.py::TestSmoke::test_smoke_navigation": [{"extras": [], "result": "Passed", "testId": "test_first_auto.py::TestSmoke::test_smoke_navigation", "duration": "00:00:05", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">test_first_auto.py::TestSmoke::test_smoke_navigation</td>", "<td class=\"col-duration\">00:00:05</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "test_first_auto.py::TestNonFunctional::test_p_loadtime": [{"extras": [], "result": "Passed", "testId": "test_first_auto.py::TestNonFunctional::test_p_loadtime", "duration": "00:00:05", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">test_first_auto.py::TestNonFunctional::test_p_loadtime</td>", "<td class=\"col-duration\">00:00:05</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "test_first_auto.py::TestSecurity::test_back_refresh": [{"extras": [], "result": "Failed", "testId": "test_first_auto.py::TestSecurity::test_back_refresh", "duration": "00:00:06", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">test_first_auto.py::TestSecurity::test_back_refresh</td>", "<td class=\"col-duration\">00:00:06</td>", "<td class=\"col-links\"></td>"], "log": "self = &lt;test_first_auto.TestSecurity object at 0x000001D0CC8CE810&gt;, driver = &lt;selenium.webdriver.chrome.webdriver.WebDriver (session=&quot;8e62a88cb3571d3ed607e373bb18da4d&quot;)&gt;\nwait = &lt;selenium.webdriver.support.wait.WebDriverWait (session=&quot;8e62a88cb3571d3ed607e373bb18da4d&quot;)&gt;\nassertion_handling = (&lt;function assertion_handling.&lt;locals&gt;.sa at 0x000001D0CC940400&gt;, [&#x27;Still accessing admin panel even after refreshing ...essing admin panel even after going back to the page&#x27;, &#x27;Still accessing admin panel even after leaving it previously&#x27;])\nlog_results = &lt;function log_results.&lt;locals&gt;.log at 0x000001D0CC9405E0&gt;\n\n @pytest.mark.security\n @pytest.mark.regression\n def test_back_refresh(self, driver, wait, assertion_handling, log_results):\n &quot;&quot;&quot;\n preconditions: Access to an admin panel.\n (Validate that refreshing or navigating back does not grant unauthorized access to the admin panel)\n references: 2.3, 2.4\n &quot;&quot;&quot;\n sa, errors = assertion_handling\n \n admin_login(driver)\n driver.refresh()\n sa(driver.current_url != f&quot;{base_url}/admin&quot;, &quot;Still accessing admin panel even after refreshing the page&quot;)\n \n driver.get(base_url)\n admin_login(driver)\n driver.get(base_url)\n driver.back()\n sa(driver.current_url != f&quot;{base_url}/admin&quot;, &quot;Still accessing admin panel even after going back to the page&quot;)\n \n driver.get(base_url)\n admin_login(driver)\n driver.get(base_url)\n driver.get(f&quot;{base_url}/admin&quot;)\n sa(driver.current_url != f&quot;{base_url}/admin&quot;, &quot;Still accessing admin panel even after leaving it previously&quot;)\n \n status = &quot;passed&quot; if not errors else &quot;failed&quot;\n log_results(status, errors)\n \n if errors:\n formatted_errors = &quot;\\n&quot;.join([f&quot;{i + 1}. {error}&quot; for i, error in enumerate(errors)])\n&gt; pytest.fail(formatted_errors)\nE Failed: 1. Still accessing admin panel even after refreshing the page\nE 2. Still accessing admin panel even after going back to the page\nE 3. Still accessing admin panel even after leaving it previously\n\ntest_first_auto.py:255: Failed\n"}], "test_first_auto.py::TestSecurity::test_login_form_logic": [{"extras": [], "result": "Passed", "testId": "test_first_auto.py::TestSecurity::test_login_form_logic", "duration": "00:00:05", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">test_first_auto.py::TestSecurity::test_login_form_logic</td>", "<td class=\"col-duration\">00:00:05</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "test_first_auto.py::TestUI::test_ui_hp": [{"extras": [], "result": "Passed", "testId": "test_first_auto.py::TestUI::test_ui_hp", "duration": "00:00:07", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">test_first_auto.py::TestUI::test_ui_hp</td>", "<td class=\"col-duration\">00:00:07</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "test_first_auto.py::TestUI::test_ui_gp": [{"extras": [], "result": "Passed", "testId": "test_first_auto.py::TestUI::test_ui_gp", "duration": "00:00:04", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">test_first_auto.py::TestUI::test_ui_gp</td>", "<td class=\"col-duration\">00:00:04</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "test_first_auto.py::TestUI::test_ui_lp": [{"extras": [], "result": "Passed", "testId": "test_first_auto.py::TestUI::test_ui_lp", "duration": "00:00:05", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">test_first_auto.py::TestUI::test_ui_lp</td>", "<td class=\"col-duration\">00:00:05</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "test_first_auto.py::TestUI::test_ui_ap": [{"extras": [], "result": "Passed", "testId": "test_first_auto.py::TestUI::test_ui_ap", "duration": "00:00:05", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">test_first_auto.py::TestUI::test_ui_ap</td>", "<td class=\"col-duration\">00:00:05</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "test_first_auto.py::TestNegative::test_c_posting_neg_empty_fields": [{"extras": [], "result": "Passed", "testId": "test_first_auto.py::TestNegative::test_c_posting_neg_empty_fields", "duration": "00:00:09", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">test_first_auto.py::TestNegative::test_c_posting_neg_empty_fields</td>", "<td class=\"col-duration\">00:00:09</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "test_first_auto.py::TestNegative::test_c_posting_neg_invalid_values": [{"extras": [], "result": "Failed", "testId": "test_first_auto.py::TestNegative::test_c_posting_neg_invalid_values", "duration": "00:00:08", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">test_first_auto.py::TestNegative::test_c_posting_neg_invalid_values</td>", "<td class=\"col-duration\">00:00:08</td>", "<td class=\"col-links\"></td>"], "log": "self = &lt;test_first_auto.TestNegative object at 0x000001D0CC8CF500&gt;, driver = &lt;selenium.webdriver.chrome.webdriver.WebDriver (session=&quot;ea5a7490658aec8eb73f083790448433&quot;)&gt;\nwait = &lt;selenium.webdriver.support.wait.WebDriverWait (session=&quot;ea5a7490658aec8eb73f083790448433&quot;)&gt;\nassertion_handling = (&lt;function assertion_handling.&lt;locals&gt;.sa at 0x000001D0CC9E8FE0&gt;, [&#x27;The success message was displayed even though the ...eld exceeded the allowed length&#x27;, &#x27;A comment appeared on the page despite exceeding the allowed comment field length&#x27;])\nlog_results = &lt;function log_results.&lt;locals&gt;.log at 0x000001D0CC9E9080&gt;\n\n @pytest.mark.functional\n def test_c_posting_neg_invalid_values(self, driver, wait, assertion_handling, log_results):\n &quot;&quot;&quot;\n preconditions: Comment form should restrict inputs exceeding the max field length.\n (Attempting to post comment with higher field length limits)\n references: 3.2\n &quot;&quot;&quot;\n sa, errors = assertion_handling\n \n driver.find_element(By.XPATH, &#x27;(//div[@class=&quot;game-item&quot;]/a)[1]&#x27;).click()\n \n # Exceeding name field length (81 characters for name, 800 for comment)\n driver.find_element(By.ID, &#x27;name&#x27;).clear()\n driver.find_element(By.ID, &#x27;comment&#x27;).clear()\n \n driver.find_element(By.ID, &#x27;name&#x27;).send_keys(randomstring(length=81))\n driver.find_element(By.ID, &#x27;comment&#x27;).send_keys(randomstring(length=800))\n driver.find_element(By.CSS_SELECTOR, &quot;button[type=&#x27;submit&#x27;]&quot;).click()\n \n sa(not driver.find_element(By.CLASS_NAME, &quot;success&quot;).is_displayed(),\n &quot;The success message was displayed even though the name field exceeded the allowed length&quot;)\n sa(not driver.find_elements(By.CSS_SELECTOR, &quot;ul li&quot;),\n &quot;A comment appeared on the page despite exceeding the allowed name field length&quot;)\n \n # Exceeding name field length (80 for name, 801 for comment)\n driver.find_element(By.ID, &#x27;name&#x27;).clear()\n driver.find_element(By.ID, &#x27;comment&#x27;).clear()\n \n driver.find_element(By.ID, &#x27;name&#x27;).send_keys(randomstring(length=80))\n driver.find_element(By.ID, &#x27;comment&#x27;).send_keys(randomstring(length=801))\n driver.find_element(By.CSS_SELECTOR, &quot;button[type=&#x27;submit&#x27;]&quot;).click()\n \n sa(not driver.find_element(By.CLASS_NAME, &quot;success&quot;).is_displayed(),\n &quot;The success message was displayed even though the comment field exceeded the allowed length&quot;)\n sa(not driver.find_elements(By.CSS_SELECTOR, &quot;ul li&quot;),\n &quot;A comment appeared on the page despite exceeding the allowed comment field length&quot;)\n \n status = &quot;passed&quot; if not errors else &quot;failed&quot;\n log_results(status, errors)\n \n if errors:\n formatted_errors = &quot;\\n&quot;.join([f&quot;{i + 1}. {error}&quot; for i, error in enumerate(errors)])\n&gt; pytest.fail(formatted_errors)\nE Failed: 1. The success message was displayed even though the name field exceeded the allowed length\nE 2. A comment appeared on the page despite exceeding the allowed name field length\nE 3. The success message was displayed even though the comment field exceeded the allowed length\nE 4. A comment appeared on the page despite exceeding the allowed comment field length\n\ntest_first_auto.py:642: Failed\n"}], "test_first_auto.py::TestNegative::test_d_c_neg": [{"extras": [], "result": "Passed", "testId": "test_first_auto.py::TestNegative::test_d_c_neg", "duration": "00:00:05", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">test_first_auto.py::TestNegative::test_d_c_neg</td>", "<td class=\"col-duration\">00:00:05</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "test_first_auto.py::TestNegative::test_a_g_neg": [{"extras": [], "result": "Failed", "testId": "test_first_auto.py::TestNegative::test_a_g_neg", "duration": "00:00:09", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">test_first_auto.py::TestNegative::test_a_g_neg</td>", "<td class=\"col-duration\">00:00:09</td>", "<td class=\"col-links\"></td>"], "log": "self = &lt;test_first_auto.TestNegative object at 0x000001D0CC8CFA40&gt;, driver = &lt;selenium.webdriver.chrome.webdriver.WebDriver (session=&quot;60331b2c8129aee2c57c155e5949f2b8&quot;)&gt;\nwait = &lt;selenium.webdriver.support.wait.WebDriverWait (session=&quot;60331b2c8129aee2c57c155e5949f2b8&quot;)&gt;\nassertion_handling = (&lt;function assertion_handling.&lt;locals&gt;.sa at 0x000001D0CC9E9580&gt;, [&#x27;Game was added despite field length exceeding limits&#x27;])\nexistence_checking = &lt;function existence_checking.&lt;locals&gt;.ec at 0x000001D0CC9E9260&gt;, log_results = &lt;function log_results.&lt;locals&gt;.log at 0x000001D0CC9E96C0&gt;\n\n @pytest.mark.negative\n def test_a_g_neg(self, driver, wait, assertion_handling, existence_checking, log_results):\n &quot;&quot;&quot;\n preconditions: Access to an admin panel.\n (Attempting to add a game while leaving mandatory fields empty or exceeding field length limits)\n references: 2.4.5\n &quot;&quot;&quot;\n sa, errors = assertion_handling\n \n admin_login(driver)\n sa(driver.current_url == f&quot;{base_url}/admin&quot;,\n &quot;Not accessing admin panel&quot;)\n \n new_game = randomstring()\n \n # Attempting to add a game without a description (required field test)\n driver.find_element(By.XPATH, &quot;//option[text()=&#x27;Add Game&#x27;]&quot;).click()\n driver.find_element(By.CSS_SELECTOR, &quot;input[placeholder=&#x27;Game Name&#x27;]&quot;).send_keys(new_game)\n driver.find_element(By.CSS_SELECTOR, &quot;input[placeholder=&#x27;Developer&#x27;]&quot;).send_keys(randomstring())\n driver.find_element(By.CSS_SELECTOR, &quot;input[placeholder=&#x27;Publisher&#x27;]&quot;).send_keys(randomstring())\n driver.find_element(By.CSS_SELECTOR, &quot;input[name=&#x27;releasedate&#x27;]&quot;).send_keys(date_generation())\n driver.find_element(By.CSS_SELECTOR, &quot;button[type=&#x27;submit&#x27;]&quot;).click()\n \n sa(len(driver.find_elements(By.CLASS_NAME, &quot;success&quot;)) == 0,\n &quot;Game was added despite missing required description field&quot;)\n sa(not existence_checking(Game, gamename=new_game), &quot;Game was added to the database despite the missing &quot;\n &quot;description&quot;)\n \n fields = [\n driver.find_element(By.CSS_SELECTOR, &quot;input[placeholder=&#x27;Game Name&#x27;]&quot;),\n driver.find_element(By.CSS_SELECTOR, &quot;textarea[placeholder=&#x27;Game Description&#x27;]&quot;),\n driver.find_element(By.CSS_SELECTOR, &quot;input[placeholder=&#x27;Developer&#x27;]&quot;),\n driver.find_element(By.CSS_SELECTOR, &quot;input[placeholder=&#x27;Publisher&#x27;]&quot;)\n ]\n for field in fields:\n field.clear()\n \n # Attempting to add a game with overflow values in name and description fields\n long_game_name = randomstring(length=101)\n driver.find_element(By.CSS_SELECTOR, &quot;input[placeholder=&#x27;Game Name&#x27;]&quot;).send_keys(long_game_name)\n driver.find_element(By.CSS_SELECTOR, &quot;textarea[placeholder=&#x27;Game Description&#x27;]&quot;).send_keys(\n randomstring(length=801))\n driver.find_element(By.CSS_SELECTOR, &quot;input[placeholder=&#x27;Developer&#x27;]&quot;).send_keys(randomstring())\n driver.find_element(By.CSS_SELECTOR, &quot;input[placeholder=&#x27;Publisher&#x27;]&quot;).send_keys(randomstring())\n driver.find_element(By.CSS_SELECTOR, &quot;input[name=&#x27;releasedate&#x27;]&quot;).send_keys(date_generation())\n driver.find_element(By.CSS_SELECTOR, &quot;button[type=&#x27;submit&#x27;]&quot;).click()\n \n sa(len(driver.find_elements(By.CLASS_NAME, &quot;success&quot;)) == 0, &quot;Game was added despite field length exceeding &quot;\n &quot;limits&quot;)\n sa(not existence_checking(Game, gamename=long_game_name), &quot;Game was incorrectly added to the database with &quot;\n &quot;overflow values&quot;)\n \n status = &quot;passed&quot; if not errors else &quot;failed&quot;\n log_results(status, errors)\n \n if errors:\n formatted_errors = &quot;\\n&quot;.join([f&quot;{i + 1}. {error}&quot; for i, error in enumerate(errors)])\n&gt; pytest.fail(formatted_errors)\nE Failed: 1. Game was added despite field length exceeding limits\n\ntest_first_auto.py:745: Failed\n"}], "test_first_auto.py::TestIntegration::test_routes_checking": [{"extras": [], "result": "Passed", "testId": "test_first_auto.py::TestIntegration::test_routes_checking", "duration": "00:00:05", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">test_first_auto.py::TestIntegration::test_routes_checking</td>", "<td class=\"col-duration\">00:00:05</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "test_first_auto.py::TestIntegration::test_a_g_a_c_d_g": [{"extras": [], "result": "Passed", "testId": "test_first_auto.py::TestIntegration::test_a_g_a_c_d_g", "duration": "00:00:06", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">test_first_auto.py::TestIntegration::test_a_g_a_c_d_g</td>", "<td class=\"col-duration\">00:00:06</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "test_first_auto.py::TestIntegration::test_acceptance": [{"extras": [], "result": "Passed", "testId": "test_first_auto.py::TestIntegration::test_acceptance", "duration": "00:00:05", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">test_first_auto.py::TestIntegration::test_acceptance</td>", "<td class=\"col-duration\">00:00:05</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "test_first_auto.py::TestFunctional::test_aud_g": [{"extras": [], "result": "Passed", "testId": "test_first_auto.py::TestFunctional::test_aud_g", "duration": "00:00:06", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">test_first_auto.py::TestFunctional::test_aud_g</td>", "<td class=\"col-duration\">00:00:06</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "test_first_auto.py::TestFunctional::test_d_c": [{"extras": [], "result": "Passed", "testId": "test_first_auto.py::TestFunctional::test_d_c", "duration": "00:00:11", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">test_first_auto.py::TestFunctional::test_d_c</td>", "<td class=\"col-duration\">00:00:11</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}]}, "renderCollapsed": ["passed"], "initialSort": "result", "title": "report.html"}"></div>
<script>
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
const { getCollapsedCategory, setCollapsedIds } = require('./storage.js')
class DataManager {
setManager(data) {
const collapsedCategories = [...getCollapsedCategory(data.renderCollapsed)]
const collapsedIds = []
const tests = Object.values(data.tests).flat().map((test, index) => {
const collapsed = collapsedCategories.includes(test.result.toLowerCase())
const id = `test_${index}`
if (collapsed) {
collapsedIds.push(id)
}
return {
...test,
id,
collapsed,
}
})
const dataBlob = { ...data, tests }
this.data = { ...dataBlob }
this.renderData = { ...dataBlob }
setCollapsedIds(collapsedIds)
}
get allData() {
return { ...this.data }
}
resetRender() {
this.renderData = { ...this.data }
}
setRender(data) {
this.renderData.tests = [...data]
}
toggleCollapsedItem(id) {
this.renderData.tests = this.renderData.tests.map((test) =>
test.id === id ? { ...test, collapsed: !test.collapsed } : test,
)
}
set allCollapsed(collapsed) {
this.renderData = { ...this.renderData, tests: [...this.renderData.tests.map((test) => (
{ ...test, collapsed }
))] }
}
get testSubset() {
return [...this.renderData.tests]
}
get environment() {
return this.renderData.environment
}
get initialSort() {
return this.data.initialSort
}
}
module.exports = {
manager: new DataManager(),
}
},{"./storage.js":8}],2:[function(require,module,exports){
const mediaViewer = require('./mediaviewer.js')
const templateEnvRow = document.getElementById('template_environment_row')
const templateResult = document.getElementById('template_results-table__tbody')
function htmlToElements(html) {
const temp = document.createElement('template')
temp.innerHTML = html
return temp.content.childNodes
}
const find = (selector, elem) => {
if (!elem) {
elem = document
}
return elem.querySelector(selector)
}
const findAll = (selector, elem) => {
if (!elem) {
elem = document
}
return [...elem.querySelectorAll(selector)]
}
const dom = {
getStaticRow: (key, value) => {
const envRow = templateEnvRow.content.cloneNode(true)
const isObj = typeof value === 'object' && value !== null
const values = isObj ? Object.keys(value).map((k) => `${k}: ${value[k]}`) : null
const valuesElement = htmlToElements(
values ? `<ul>${values.map((val) => `<li>${val}</li>`).join('')}<ul>` : `<div>${value}</div>`)[0]
const td = findAll('td', envRow)
td[0].textContent = key
td[1].appendChild(valuesElement)
return envRow
},
getResultTBody: ({ testId, id, log, extras, resultsTableRow, tableHtml, result, collapsed }) => {
const resultBody = templateResult.content.cloneNode(true)
resultBody.querySelector('tbody').classList.add(result.toLowerCase())
resultBody.querySelector('tbody').id = testId
resultBody.querySelector('.collapsible').dataset.id = id
resultsTableRow.forEach((html) => {
const t = document.createElement('template')
t.innerHTML = html
resultBody.querySelector('.collapsible').appendChild(t.content)
})
if (log) {
// Wrap lines starting with "E" with span.error to color those lines red
const wrappedLog = log.replace(/^E.*$/gm, (match) => `<span class="error">${match}</span>`)
resultBody.querySelector('.log').innerHTML = wrappedLog
} else {
resultBody.querySelector('.log').remove()
}
if (collapsed) {
resultBody.querySelector('.collapsible > td')?.classList.add('collapsed')
resultBody.querySelector('.extras-row').classList.add('hidden')
} else {
resultBody.querySelector('.collapsible > td')?.classList.remove('collapsed')
}
const media = []
extras?.forEach(({ name, format_type, content }) => {
if (['image', 'video'].includes(format_type)) {
media.push({ path: content, name, format_type })
}
if (format_type === 'html') {
resultBody.querySelector('.extraHTML').insertAdjacentHTML('beforeend', `<div>${content}</div>`)
}
})
mediaViewer.setup(resultBody, media)
// Add custom html from the pytest_html_results_table_html hook
tableHtml?.forEach((item) => {
resultBody.querySelector('td[class="extra"]').insertAdjacentHTML('beforeend', item)
})
return resultBody
},
}
module.exports = {
dom,
htmlToElements,
find,
findAll,
}
},{"./mediaviewer.js":6}],3:[function(require,module,exports){
const { manager } = require('./datamanager.js')
const { doSort } = require('./sort.js')
const storageModule = require('./storage.js')
const getFilteredSubSet = (filter) =>
manager.allData.tests.filter(({ result }) => filter.includes(result.toLowerCase()))
const doInitFilter = () => {
const currentFilter = storageModule.getVisible()
const filteredSubset = getFilteredSubSet(currentFilter)
manager.setRender(filteredSubset)
}
const doFilter = (type, show) => {
if (show) {
storageModule.showCategory(type)
} else {
storageModule.hideCategory(type)
}
const currentFilter = storageModule.getVisible()
const filteredSubset = getFilteredSubSet(currentFilter)
manager.setRender(filteredSubset)
const sortColumn = storageModule.getSort()
doSort(sortColumn, true)
}
module.exports = {
doFilter,
doInitFilter,
}
},{"./datamanager.js":1,"./sort.js":7,"./storage.js":8}],4:[function(require,module,exports){
const { redraw, bindEvents, renderStatic } = require('./main.js')
const { doInitFilter } = require('./filter.js')
const { doInitSort } = require('./sort.js')
const { manager } = require('./datamanager.js')
const data = JSON.parse(document.getElementById('data-container').dataset.jsonblob)
function init() {
manager.setManager(data)
doInitFilter()
doInitSort()
renderStatic()
redraw()
bindEvents()
}
init()
},{"./datamanager.js":1,"./filter.js":3,"./main.js":5,"./sort.js":7}],5:[function(require,module,exports){
const { dom, find, findAll } = require('./dom.js')
const { manager } = require('./datamanager.js')
const { doSort } = require('./sort.js')
const { doFilter } = require('./filter.js')
const {
getVisible,
getCollapsedIds,
setCollapsedIds,
getSort,
getSortDirection,
possibleFilters,
} = require('./storage.js')
const removeChildren = (node) => {
while (node.firstChild) {
node.removeChild(node.firstChild)
}
}
const renderStatic = () => {
const renderEnvironmentTable = () => {
const environment = manager.environment
const rows = Object.keys(environment).map((key) => dom.getStaticRow(key, environment[key]))
const table = document.getElementById('environment')
removeChildren(table)
rows.forEach((row) => table.appendChild(row))
}
renderEnvironmentTable()
}
const addItemToggleListener = (elem) => {
elem.addEventListener('click', ({ target }) => {
const id = target.parentElement.dataset.id
manager.toggleCollapsedItem(id)
const collapsedIds = getCollapsedIds()
if (collapsedIds.includes(id)) {
const updated = collapsedIds.filter((item) => item !== id)
setCollapsedIds(updated)
} else {
collapsedIds.push(id)
setCollapsedIds(collapsedIds)
}
redraw()
})
}
const renderContent = (tests) => {
const sortAttr = getSort(manager.initialSort)
const sortAsc = JSON.parse(getSortDirection())
const rows = tests.map(dom.getResultTBody)
const table = document.getElementById('results-table')
const tableHeader = document.getElementById('results-table-head')
const newTable = document.createElement('table')
newTable.id = 'results-table'
// remove all sorting classes and set the relevant
findAll('.sortable', tableHeader).forEach((elem) => elem.classList.remove('asc', 'desc'))
tableHeader.querySelector(`.sortable[data-column-type="${sortAttr}"]`)?.classList.add(sortAsc ? 'desc' : 'asc')
newTable.appendChild(tableHeader)
if (!rows.length) {
const emptyTable = document.getElementById('template_results-table__body--empty').content.cloneNode(true)
newTable.appendChild(emptyTable)
} else {
rows.forEach((row) => {
if (!!row) {
findAll('.collapsible td:not(.col-links', row).forEach(addItemToggleListener)
find('.logexpander', row).addEventListener('click',
(evt) => evt.target.parentNode.classList.toggle('expanded'),
)
newTable.appendChild(row)
}
})
}
table.replaceWith(newTable)
}
const renderDerived = () => {
const currentFilter = getVisible()
possibleFilters.forEach((result) => {
const input = document.querySelector(`input[data-test-result="${result}"]`)
input.checked = currentFilter.includes(result)
})
}
const bindEvents = () => {
const filterColumn = (evt) => {
const { target: element } = evt
const { testResult } = element.dataset
doFilter(testResult, element.checked)
const collapsedIds = getCollapsedIds()
const updated = manager.renderData.tests.map((test) => {
return {
...test,
collapsed: collapsedIds.includes(test.id),
}
})
manager.setRender(updated)
redraw()
}
const header = document.getElementById('environment-header')
header.addEventListener('click', () => {
const table = document.getElementById('environment')
table.classList.toggle('hidden')
header.classList.toggle('collapsed')
})
findAll('input[name="filter_checkbox"]').forEach((elem) => {
elem.addEventListener('click', filterColumn)
})
findAll('.sortable').forEach((elem) => {
elem.addEventListener('click', (evt) => {
const { target: element } = evt
const { columnType } = element.dataset
doSort(columnType)
redraw()
})
})
document.getElementById('show_all_details').addEventListener('click', () => {
manager.allCollapsed = false
setCollapsedIds([])
redraw()
})
document.getElementById('hide_all_details').addEventListener('click', () => {
manager.allCollapsed = true
const allIds = manager.renderData.tests.map((test) => test.id)
setCollapsedIds(allIds)
redraw()
})
}
const redraw = () => {
const { testSubset } = manager
renderContent(testSubset)
renderDerived()
}
module.exports = {
redraw,
bindEvents,
renderStatic,
}
},{"./datamanager.js":1,"./dom.js":2,"./filter.js":3,"./sort.js":7,"./storage.js":8}],6:[function(require,module,exports){
class MediaViewer {
constructor(assets) {
this.assets = assets
this.index = 0
}
nextActive() {
this.index = this.index === this.assets.length - 1 ? 0 : this.index + 1
return [this.activeFile, this.index]
}
prevActive() {
this.index = this.index === 0 ? this.assets.length - 1 : this.index -1
return [this.activeFile, this.index]
}
get currentIndex() {
return this.index
}
get activeFile() {
return this.assets[this.index]
}
}
const setup = (resultBody, assets) => {
if (!assets.length) {
resultBody.querySelector('.media').classList.add('hidden')
return
}
const mediaViewer = new MediaViewer(assets)
const container = resultBody.querySelector('.media-container')
const leftArrow = resultBody.querySelector('.media-container__nav--left')
const rightArrow = resultBody.querySelector('.media-container__nav--right')
const mediaName = resultBody.querySelector('.media__name')
const counter = resultBody.querySelector('.media__counter')
const imageEl = resultBody.querySelector('img')
const sourceEl = resultBody.querySelector('source')
const videoEl = resultBody.querySelector('video')
const setImg = (media, index) => {
if (media?.format_type === 'image') {
imageEl.src = media.path
imageEl.classList.remove('hidden')
videoEl.classList.add('hidden')
} else if (media?.format_type === 'video') {
sourceEl.src = media.path
videoEl.classList.remove('hidden')
imageEl.classList.add('hidden')
}
mediaName.innerText = media?.name
counter.innerText = `${index + 1} / ${assets.length}`
}
setImg(mediaViewer.activeFile, mediaViewer.currentIndex)
const moveLeft = () => {
const [media, index] = mediaViewer.prevActive()
setImg(media, index)
}
const doRight = () => {
const [media, index] = mediaViewer.nextActive()
setImg(media, index)
}
const openImg = () => {
window.open(mediaViewer.activeFile.path, '_blank')
}
if (assets.length === 1) {
container.classList.add('media-container--fullscreen')
} else {
leftArrow.addEventListener('click', moveLeft)
rightArrow.addEventListener('click', doRight)
}
imageEl.addEventListener('click', openImg)
}
module.exports = {
setup,
}
},{}],7:[function(require,module,exports){
const { manager } = require('./datamanager.js')
const storageModule = require('./storage.js')
const genericSort = (list, key, ascending, customOrder) => {
let sorted
if (customOrder) {
sorted = list.sort((a, b) => {
const aValue = a.result.toLowerCase()
const bValue = b.result.toLowerCase()
const aIndex = customOrder.findIndex((item) => item.toLowerCase() === aValue)
const bIndex = customOrder.findIndex((item) => item.toLowerCase() === bValue)
// Compare the indices to determine the sort order
return aIndex - bIndex
})
} else {
sorted = list.sort((a, b) => a[key] === b[key] ? 0 : a[key] > b[key] ? 1 : -1)
}
if (ascending) {
sorted.reverse()
}
return sorted
}
const durationSort = (list, ascending) => {
const parseDuration = (duration) => {
if (duration.includes(':')) {
// If it's in the format "HH:mm:ss"
const [hours, minutes, seconds] = duration.split(':').map(Number)
return (hours * 3600 + minutes * 60 + seconds) * 1000
} else {
// If it's in the format "nnn ms"
return parseInt(duration)
}
}
const sorted = list.sort((a, b) => parseDuration(a['duration']) - parseDuration(b['duration']))
if (ascending) {
sorted.reverse()
}
return sorted
}
const doInitSort = () => {
const type = storageModule.getSort(manager.initialSort)
const ascending = storageModule.getSortDirection()
const list = manager.testSubset
const initialOrder = ['Error', 'Failed', 'Rerun', 'XFailed', 'XPassed', 'Skipped', 'Passed']
storageModule.setSort(type)
storageModule.setSortDirection(ascending)
if (type?.toLowerCase() === 'original') {
manager.setRender(list)
} else {
let sortedList
switch (type) {
case 'duration':
sortedList = durationSort(list, ascending)
break
case 'result':
sortedList = genericSort(list, type, ascending, initialOrder)
break
default:
sortedList = genericSort(list, type, ascending)
break
}
manager.setRender(sortedList)
}
}
const doSort = (type, skipDirection) => {
const newSortType = storageModule.getSort(manager.initialSort) !== type
const currentAsc = storageModule.getSortDirection()
let ascending
if (skipDirection) {
ascending = currentAsc
} else {
ascending = newSortType ? false : !currentAsc
}
storageModule.setSort(type)
storageModule.setSortDirection(ascending)
const list = manager.testSubset
const sortedList = type === 'duration' ? durationSort(list, ascending) : genericSort(list, type, ascending)
manager.setRender(sortedList)
}
module.exports = {
doInitSort,
doSort,
}
},{"./datamanager.js":1,"./storage.js":8}],8:[function(require,module,exports){
const possibleFilters = [
'passed',
'skipped',
'failed',
'error',
'xfailed',
'xpassed',
'rerun',
]
const getVisible = () => {
const url = new URL(window.location.href)
const settings = new URLSearchParams(url.search).get('visible')
const lower = (item) => {
const lowerItem = item.toLowerCase()
if (possibleFilters.includes(lowerItem)) {
return lowerItem
}
return null
}
return settings === null ?
possibleFilters :