forked from gneu77/lru-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperformance-report.html
129 lines (128 loc) · 5.56 KB
/
performance-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
<html><head><meta charset="utf-8"/><title>Performance Test Report</title><style type="text/css">html, body {
font-family: Arial, Helvetica, sans-serif;
font-size: 1rem;
margin: 0;
padding: 0;
color: #333;
}
body {
padding: 1rem;
font-size: 0.85rem;
}
header {
display: flex;
align-items: center;
}
#title {
margin: 0;
flex-grow: 1;
}
#logo {
height: 4rem;
}
#timestamp {
font-weight: bold;
color: #666;
margin-bottom: 0.5rem;
}
#summary {
color: #999;
margin-bottom: 1rem;
}
.suite-info {
padding: 1rem;
background-color: #eee;
border-bottom: 2px solid #999;
color: #999;
display: flex;
align-items: center;
}
.suite-info .suite-path {
font-weight: bold;
word-break: break-all;
flex-grow: 1;
}
.suite-info .suite-time {
margin-left: 0.5rem;
padding: 0.2rem 0.3rem;
font-size: 0.75rem;
}
.suite-info .suite-time.warn {
background-color: #D8000C;
color: #fff;
}
.suite-table {
width: 100%;
font-size: 0.85rem;
margin-bottom: 1em;
}
.suite-table td {
padding: 0.5rem;
}
.suite-table tr.passed {
background-color: #DFF2BF;
color: #4F8A10;
}
.suite-table tr.pending {
background-color: #FEEFB3;
color: #9F6000;
}
.suite-table tr.failed {
background-color: #FFBABA;
color: #D8000C;
}
.suite-table td {
font-size: 0.85rem;
border-bottom: 1px solid #aaa;
vertical-align: top;
}
.suite-table td.suite {
font-weight: bold;
width: 20%;
}
.suite-table td.test {
font-style: italic;
width: 60%;
}
.suite-table td.test .failureMsg {
font-size: 1rem;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
}
.suite-table td.result {
width: 20%;
text-align: right;
}
/* CONSOLE LOGS */
.suite-consolelog {
margin-bottom: 2rem;
padding: 1rem;
background-color: #efefef;
}
.suite-consolelog-header {
font-weight: bold;
}
.suite-consolelog-item {
padding: 0.5rem;
}
.suite-consolelog-item pre {
margin: 0;
}
.suite-consolelog-item-origin {
color: #777;
font-weight: bold;
}
.suite-consolelog-item-message {
color: #000;
font-size: 1rem;
padding: 0 0.5rem;
}
</style></head><header><h1 id="title">Performance Test Report</h1></header><div id="metadata-container"><div id="timestamp">Start: 2018-12-19 18:31:04</div><div id="summary">
14 tests --
14 passed /
0 failed /
0 pending
</div></div><div class="suite-info"><div class="suite-path">E:\work\node\lru-cache\src\test\performance.test.js</div><div class="suite-time warn">58.006s</div></div><table class="suite-table" cellspacing="0" cellpadding="0"><tr class="passed"><td class="suite">Performance Javascript Object</td><td class="test">should measure the time for 1000000 inserts and 5000000 updates in a normal Javascript Object</td><td class="result">passed in 1.335s</td></tr><tr class="passed"><td class="suite">Performance Javascript Object</td><td class="test">should measure the time for 30000000 by-key-accesses on normal Javascript Object</td><td class="result">passed in 1.804s</td></tr><tr class="passed"><td class="suite">Performance Javascript Object</td><td class="test">should measure the time for 1000000 deletes from Javascript Object</td><td class="result">passed in 0.218s</td></tr><tr class="passed"><td class="suite">Performance Javascript Map</td><td class="test">should measure the time for 1000000 inserts and 5000000 updates in a normal Javascript Map</td><td class="result">passed in 1.094s</td></tr><tr class="passed"><td class="suite">Performance Javascript Map</td><td class="test">should measure the time for 30000000 'get' calls on normal Javascript Map</td><td class="result">passed in 0.025s</td></tr><tr class="passed"><td class="suite">Performance Javascript Map</td><td class="test">should measure the time for 1000000 'delete' calls on normal Javascript Map</td><td class="result">passed in 0.205s</td></tr><tr class="passed"><td class="suite">Performance LruMap</td><td class="test">should measure the time for 1000000 inserts and 5000000 updates in LruMap with infinite maxSize</td><td class="result">passed in 1.456s</td></tr><tr class="passed"><td class="suite">Performance LruMap</td><td class="test">should measure the time for 30000000 'getWithoutLruChange' calls on LruMap</td><td class="result">passed in 4.034s</td></tr><tr class="passed"><td class="suite">Performance LruMap</td><td class="test">should measure the time for 30000000 'get' calls on LruMap (making the corresponding entry the most recently used)</td><td class="result">passed in 5.966s</td></tr><tr class="passed"><td class="suite">Performance LruMap</td><td class="test">should measure the time for 1000000 'delete' calls on LruMap</td><td class="result">passed in 0.5s</td></tr><tr class="passed"><td class="suite">Performance LruMap</td><td class="test">should measure the time for 1000000 inserts and 5000000 updates in LruMap with maxSize 3</td><td class="result">passed in 1.824s</td></tr><tr class="passed"><td class="suite">Performance LruCache without listeners</td><td class="test">should measure the time for 1000000 inserts and 5000000 updates in LruCache with infinite maxSize and no event listener</td><td class="result">passed in 20.829s</td></tr><tr class="passed"><td class="suite">Performance LruCache without listeners</td><td class="test">should measure the time for 30000000 'get' calls on LruCache (should not be much slower compared to LruMap)</td><td class="result">passed in 6.846s</td></tr><tr class="passed"><td class="suite">Performance LruCache without listeners</td><td class="test">should measure the time for 1000000 inserts and 5000000 updates in LruCache with maxSize 3 and no event listener</td><td class="result">passed in 8.211s</td></tr></table></html>