forked from cesine/d3-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathd3.layout.cloud-spec.js
248 lines (199 loc) · 7.99 KB
/
d3.layout.cloud-spec.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
(function() {
/* globals require, describe, it, expect, console, d3 */
'use strict';
try {
var locald3;
var cloud;
var Canvas;
try {
locald3 = d3;
cloud = d3.layout.cloud;
} catch (e) {
Canvas = require("canvas");
locald3 = require("d3");
cloud = require("../");
}
var calculateAndScaleMeaningfulWords = function(text) {
var frequencyCount = {},
whitespaceRegEx = /\s+/g,
nonEnglishCharactersRegEx = /[^A-Za-z0-9]/g,
LIMIT_WORDS_IN_CLOUD = 500,
leastFrequentCount,
mostFrequentCount;
var isMeaningLess = function(word) {
if (word.length <= 3) {
return true;
}
};
// Build frequency count
text.split(whitespaceRegEx).map(function(word) {
word = word.replace(nonEnglishCharactersRegEx, '');
if (isMeaningLess(word)) {
return;
}
frequencyCount[word] = (frequencyCount[word] || 0) + 1;
});
// Convert frequency count hash into an array with the x most frequent words
frequencyCount = locald3.entries(frequencyCount).sort(function(a, b) {
return b.value - a.value;
}).slice(0, LIMIT_WORDS_IN_CLOUD);
// Make font size relative to the range between the most frequent and least frequent words
// leastFrequentCount = +frequencyCount[frequencyCount.length - 1].value || 1;
// mostFrequentCount = +frequencyCount[0].value;
// frequencyCount.map(function(wordNode) {
// wordNode.size = leastFrequentCount + (wordNode.size - leastFrequentCount) / (mostFrequentCount - leastFrequentCount);
// });
return frequencyCount;
};
var SHORT_TEXT = "Hello world normally you want more words than this example.";
var wordsByFrequency = calculateAndScaleMeaningfulWords(SHORT_TEXT);
var WIDTH = 960 * 1;
var HEIGHT = 600 * 1;
describe('d3.layout.cloud', function() {
describe('construction', function() {
it('should return an object', function() {
var myCloud = cloud();
expect(myCloud).toBeDefined();
});
it('should support the new operator', function() {
var Cloud = cloud;
var myNewedCloud = new Cloud();
expect(myNewedCloud).toBeDefined();
});
});
describe('configuration', function() {
it('should support immediate configuration', function() {
var myChainConfiguredCloud = cloud()
.padding(0)
.size([WIDTH, HEIGHT])
.font('Impact')
.text(function(word) {
return word.key;
})
.on('end', function() {
// Normally draw here
});
expect(myChainConfiguredCloud).toBeDefined();
expect(myChainConfiguredCloud.size()).toEqual([WIDTH, HEIGHT]);
});
it('should support delayed configuration', function() {
var myConfiguredCloud = cloud();
expect(myConfiguredCloud).toBeDefined();
myConfiguredCloud.padding(10);
myConfiguredCloud.size([WIDTH, HEIGHT]);
expect(myConfiguredCloud.size()).toEqual([WIDTH, HEIGHT]);
myConfiguredCloud.font('Impact');
myConfiguredCloud.text(function(word) {
return word.key;
});
});
});
describe('words()', function() {
var myWordCloud = cloud()
.padding(0)
.size([WIDTH, HEIGHT])
.font('Impact')
.text(function(word) {
return word.key;
})
.on('end', function() {
// Normally draw here
});
it('should have a words() function which sets and/or returns the words in the cloud', function() {
myWordCloud.words(wordsByFrequency);
expect(myWordCloud.words().length).toEqual(9);
});
it('should have word objects with minimally key, and value', function() {
myWordCloud.words(wordsByFrequency);
var sampleWordObject = myWordCloud.words()[1];
expect(sampleWordObject.key).toEqual('world');
expect(sampleWordObject.value).toEqual(1);
});
});
describe('size()', function() {
var mySizeCloud = cloud()
.size([300, 400]);
it('should have a size() function which sets and/or returns the size of the svg of the cloud', function() {
expect(mySizeCloud.size()).toEqual([300, 400]);
});
it('should survive an invalid a size()', function() {
expect(mySizeCloud.size([null, null]).size()).toEqual([256, 256]);
});
it('should survive a string size()', function() {
expect(mySizeCloud.size(['22', '505.4']).size()).toEqual([22, 505.4]);
});
it('should survive a negative size()', function() {
expect(mySizeCloud.size([-20, -30.5]).size()).toEqual([256, 256]);
});
});
describe('start()', function() {
var myStartedCloud = cloud()
.canvas(function() {
if (typeof document !== 'undefined') {
return document.createElement('canvas');
} else {
return new Canvas(1, 1);
}
})
.padding(0)
.size([WIDTH, HEIGHT])
.font('Impact')
.text(function(word) {
return word.key;
})
.on('end', function() {
// Normally draw here
});
it('should add svg attributes', function() {
expect(wordsByFrequency[2].key).toEqual('normally');
expect(wordsByFrequency[2].value).toEqual(1);
myStartedCloud.words(wordsByFrequency);
var sampleWordObject = myStartedCloud.words()[1];
expect(sampleWordObject.key).toEqual('world');
expect(sampleWordObject.value).toEqual(1);
expect(sampleWordObject.text).toBeUndefined();
expect(sampleWordObject.font).toBeUndefined();
expect(sampleWordObject.style).toBeUndefined();
expect(sampleWordObject.weight).toBeUndefined();
expect(sampleWordObject.rotate).toBeUndefined();
expect(sampleWordObject.size).toBeUndefined();
expect(sampleWordObject.padding).toBeUndefined();
expect(sampleWordObject.width).toBeUndefined();
expect(sampleWordObject.height).toBeUndefined();
expect(sampleWordObject.xoff).toBeUndefined();
expect(sampleWordObject.yoff).toBeUndefined();
expect(sampleWordObject.x1).toBeUndefined();
expect(sampleWordObject.y1).toBeUndefined();
expect(sampleWordObject.x0).toBeUndefined();
expect(sampleWordObject.y0).toBeUndefined();
expect(sampleWordObject.hasText).toBeUndefined();
expect(sampleWordObject.x).toBeUndefined();
expect(sampleWordObject.y).toBeUndefined();
myStartedCloud.start();
expect(sampleWordObject.text).toEqual(sampleWordObject.key);
expect(sampleWordObject.font).toEqual('Impact');
expect(sampleWordObject.style).toEqual('normal');
expect(sampleWordObject.weight).toEqual('normal');
expect(sampleWordObject.rotate).toBeDefined();
expect(sampleWordObject.size).toBeDefined();
expect(sampleWordObject.padding).toBeDefined();
expect(sampleWordObject.width).toBeDefined();
expect(sampleWordObject.height).toBeDefined();
expect(sampleWordObject.xoff).toBeDefined();
expect(sampleWordObject.yoff).toBeDefined();
expect(sampleWordObject.x1).toBeDefined();
expect(sampleWordObject.y1).toBeDefined();
expect(sampleWordObject.x0).toBeDefined();
expect(sampleWordObject.y0).toBeDefined();
expect(sampleWordObject.hasText).toBeDefined();
expect(sampleWordObject.x).toBeDefined();
expect(sampleWordObject.y).toBeDefined();
// expect(sampleWordObject.sprite).toBeDefined();
});
});
});
} catch (e) {
console.log(e);
console.log(e, e.stack);
}
})();