forked from demian85/gnip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.js
93 lines (79 loc) · 2.09 KB
/
test.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
var Gnip = require('./lib/index');
var async = require('async');
var _ = require('underscore');
var stream = new Gnip.Stream({
url: 'https://stream.gnip.com:443/accounts/xxx/publishers/twitter/streams/track/dev.json',
user: 'xxx',
password: 'xxx'
});
stream.on('ready', function () {
console.log('Stream ready!');
});
stream.on('tweet', function (tweet) {
console.log('New tweet: ' + tweet.body);
});
stream.on('error', function (err) {
console.error(err);
});
var rules = new Gnip.Rules({
url: 'https://api.gnip.com:443/accounts/xxx/publishers/twitter/streams/track/dev/rules.json',
user: 'xxx',
password: 'xxx'
});
rules.live.removeAll(function (err) {
if (err) throw err;
rules.clearCache();
rules.update(['nodeJS'], function (err) {
if (err) throw err;
stream.start();
async.series([
async.apply(test, ['ford', 'peugeot']),
async.apply(test, ['peugeot']),
async.apply(test, ['volkswagen', 'audi', { value: 'ferrari' }]),
async.apply(testGetRulesByIds)
], function (err) {
if (err) throw err;
});
});
});
function test(r, cb) {
console.log('Testing rule update...');
rules.update(r, function (err) {
if (err) throw err;
async.series([
function (cb) {
rules.getAll(function (err, rules) {
if (err) throw err;
console.log('Local rules:')
console.log(rules)
cb();
});
},
function (cb) {
rules.live.getAll(function (err, rules) {
if (err) throw err;
console.log('Live rules:')
console.log(rules)
cb();
})
}
], cb);
});
}
function testGetRulesByIds(cb) {
console.log('Testing get rules by id...');
rules.live.getAll(function (err, allRules) {
if (err) throw err;
if (_.isEmpty(allRules)) {
console.log('Could not execute test because no rules exist');
return cb();
}
var ids = [allRules[0].id];
rules.live.getByIds(ids, function (err, rules) {
if (err) throw err;
console.log('Live rules by id:');
console.log(rules);
cb();
});
});
}