forked from youiest/youiest-unionize
-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.js
132 lines (115 loc) · 2.61 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
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
userId = "nicolsondsouza";
var toUser = {
"_id": "nicolsondsouza",
"inbox": [],
"outbox": []
};
var fromUser = {
"_id": "eliasmoosman",
"inbox": [],
"outbox": []
}
var unknowUser = {
"_id": "unknown",
"inbox": [],
"outbox": []
}
if(Meteor.isServer){
//test publish
Meteor.publish(null,function(){
return W.find({});
});
Meteor.publish(null,function(){
return WI.find({});
});
}
// creating test data
var nicolsonData1 = {
"_id": Random.id(),
"from": fromUser._id,
"to": toUser._id,
"picture_low": Random.id()
}
var nicolsonData2 = {
"_id": Random.id(),
"from": fromUser._id,
"to": toUser._id,
"picture_low": Random.id()
}
// TinyTest
if(Meteor.isServer){
Meteor.users.allow({
insert: function (userId, post) {
return true;
},
remove: function (userId, post) {
return true;
},
update: function(userId, post){
return true;
}
});
// Tinytest.add("init - clear DB",function(test){
// // empty DB on each test;
// WI.remove({});
// W.remove({});
// // create user for test
// WI.insert(fromUser);
// WI.insert(toUser);
// WI.insert(unknowUser);
// test.equal(true,W.find().count() == WI.find().count());
// });
}
if(Meteor.isClient){
// Tinytest.add("insert - from WI",function(test, next){
// var testFlag = true;
// Unionize.connect(nicolsonData1);
// // W.insert(nicolsonData1);
// // Tracker.autorun(function(computation){
// var count = WI.find({
// "_id": nicolsonData1.from,
// "outbox": {$elemMatch: {"_id": nicolsonData1._id}}
// }).count();
// if(count){
// // computation.stop();
// testFlag = false;
// // console.log("from WI not found");
// test.equal(true,true, "from WI not found");
// if(next)
// next();
// }
// // });
// // Meteor.setTimeout(function(){
// // if(testFlag){
// // test.equal(true,false,"timeout after 2 sec");
// // next();
// // }
// // },2000);
// });
Tinytest.add("insert - to WI",function(test, next){
// var testFlag = true;
// W.insert(nicolsonData1);
// Tracker.autorun(function(computation){
var count = WI.find({
"_id": nicolsonData1.to,
"inbox": {$elemMatch: {"_id": nicolsonData1._id}}
}).count();
if(count){
// computation.stop();
// console.log("Data requested not found")
test.equal(count,1,"Data requested not found");
// test.equal(true,true);
if(next)
next();
}
// });
// Meteor.setTimeout(function(){
// if(testFlag){
// test.equal(true,false,"timeout after 2 sec");
// if(next)
// next();
// }
// },2000);
});
window.Tinytest = Tinytest;
}