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
|
var base = require('./base');
var data = [
["#a hello there #b", ["a", "b"], [["a", "b", "hello there"]],
["#a hello there2 #ba", ["a", "ba"], ["a", "ba", "hello there2"]]],
["#c and #d like #e", ["c", "d", "e"], [["c", "e", "like"], ["d", "e", "like"]]],
// issue 86
["#f and #g and #h are cool", ["f", "g", "h", "f and g and h are cool"], [["f", "f and g and h are cool", ""], ["g", "f and g and h are cool", ""], ["h", "f and g and h are cool", ""]]],
["#i likes #j and #k", ["i", "j", "k"], ["i", "j", "likes"], ["i", "k", "likes"]],
["#q likes #r but doesn't like #l", ["q", "r", "l"], []],
];
/*
#t and #u like #v
#w #x #y
sometimes #z and #ab aren't friends
I like to work with #a
*/
base.run_tests({
done: function (errors, window) {
debugger;
var analyzeSentence = window.require('textanalysis.ui').analyzeSentence;
if (process.argv.length > 2) {
analyzeSentence(process.argv.slice(2).join(" "), true);
base.dump_graphviz(window.require('rz_core').force);
} else {
for (var k = 0; k < data.length; ++k) {
var sentence = data[k][0];
var expected_nodes = data[k][1];
var expected_links = data[k][2];
base.reset(window);
console.log('analyzing ' + sentence);
analyzeSentence(sentence, true);
var nodes = base.nodes(window);
var links = base.links(window);
if (nodes != expected_nodes) {
console.log('expected: ' + expected_nodes);
console.log('got: ' + nodes.join('|'));
}
if (links != expected_links) {
console.log('expected: ' + expected_links);
console.log('got: ' + links);
}
base.dump_graphviz(window.require('rz_core').force);
}
}
process.exit();
}
});
|