forked from belisarius222/Meteor-handlebar-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelpers_tests.js
233 lines (174 loc) · 7.89 KB
/
helpers_tests.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
window.testCollection = new Meteor.Collection('test', { connection: null });
Tinytest.add('Handlebar helpers - init session templates', function (test) {
test.equal(Blaze.toHTML(Template.test_helpers_00), "Hi");
});
Tinytest.add('Handlebar helpers - init session helpers', function (test) {
test.notEqual(Blaze._globalHelpers['$'], undefined, '$: Blaze loaded after session_helpers?');
// test.notEqual(Blaze._globalHelpers['find'], undefined, 'find: Blaze loaded after session_helpers?');
// test.notEqual(Blaze._globalHelpers['findOne'], undefined, 'findOne: Blaze loaded after session_helpers?');
});
Tinytest.add('Handlebar helpers - test {{getSession}}', function (test) {
Session.set('test', undefined);
var onscreen = function() { return Blaze.toHTML(Template.test_helpers_10); };
test.isTrue(onscreen() == '', 'getSession should be empty or set from last session');
Session.set('test', 'jlfkjsdfldf');
test.equal(onscreen(), "jlfkjsdfldf", 'getSession dont return as expected');
Session.set('test', 'ok');
test.equal(onscreen(), "ok", 'getSession dont return "ok" as expected');
});
Tinytest.add('Handlebar helpers - {{sessionEquals}} String', function (test) {
//Template.test_helpers_20
Session.set('test', undefined);
var onscreen = function() { return Blaze.toHTML(Template.test_helpers_20); };
test.isTrue(onscreen() == '');
Session.set('test', 'sdfsdfdsf');
test.equal(onscreen(), 'true');
Session.set('test', 'ok');
test.isTrue(onscreen() == '');
});
Tinytest.add('Handlebar helpers - {{sessionEquals}} Integer', function (test) {
//Template.test_helpers_21
Session.set('test', undefined);
var onscreen = function() { return Blaze.toHTML(Template.test_helpers_21); };
var onscreen2 = function() { return Blaze.toHTML(Template.test_helpers_22); };
var onscreen3 = function() { return Blaze.toHTML(Template.test_helpers_20); };
test.isTrue(onscreen() == '');
Session.set('test', 1);
test.equal(onscreen(), 'true');
test.isTrue(onscreen2() == '');
test.isTrue(onscreen3() == '');
Session.set('test', 'ok');
test.isTrue(onscreen() == '');
});
//XXX: Only string and int can be passed as parametre for helpers?
Tinytest.add('Handlebar helpers - {{sessionEquals}} Array', function (test) {
//Test of arrays
//Template.test_helpers_23
Session.set('test', undefined);
var onscreen = function() { return Blaze.toHTML(Template.test_helpers_23); };
//test.equal(onscreen(), 'false');
Session.set('test', ['a', 'b', 'c']);
// Setting this to false - should be true - but arrays are not supported
test.isTrue(onscreen() == '', 'Issue 617, This fails due to lack of support for value input as array');
Session.set('test', 'ok');
test.isTrue(onscreen() == '');
});
//XXX: Only string and int can be passed as parametre for helpers?
Tinytest.add('Handlebar helpers - {{sessionEquals}} Objects', function (test) {
Template.test_helpers_24.helpers({
value: function() {
return {foo: 'bar'};
}
});
//Test of arrays
//Template.test_helpers_23
Session.set('test', undefined);
var onscreen = function() { return Blaze.toHTML(Template.test_helpers_24); };
// Should be notEqual
test.equal(typeof Template.test_helpers_24, 'object', 'Blaze does not support objects as input in helpers');
//test.equal(onscreen(), 'false');
Session.set('test', {foo: 'bar'});
// Should be true
// test.isTrue(onscreen() == '', 'Issue 617, This fails due to lack of support for value input as objects');
Session.set('test', 'ok');
// Should be false
//test.isTrue(onscreen() == '');
});
Tinytest.add('Handlebar helpers - {{sessionEquals}} Boolean', function (test) {
//Template.test_helpers_24
Session.set('test', undefined);
var onscreen1 = function() { return Blaze.toHTML(Template.test_helpers_25); };
var onscreen2 = function() { return Blaze.toHTML(Template.test_helpers_26); };
var onscreen3 = function() { return Blaze.toHTML(Template.test_helpers_27); }; //Test if sessionEquals
test.isTrue(onscreen1() == '');
Session.set('test', true);
test.equal(onscreen1(), 'true');
test.isTrue(onscreen2() == '');
test.equal(onscreen3(), 'Test is true');
Session.set('test', false);
test.isTrue(onscreen1() == '');
test.equal(onscreen2(), 'true');
test.equal(onscreen3(), 'Test is false');
});
Tinytest.add('Handlebar helpers - {{getText}}', function (test) {
//Template.test_helpers_24
Session.set('test', undefined);
var onscreen1 = function() { return Blaze.toHTML(Template.test_helpers_40); };
var onscreen2 = function() { return Blaze.toHTML(Template.test_helpers_41); };
var onscreen3 = function() { return Blaze.toHTML(Template.test_helpers_42); };
var onscreen4 = function() { return Blaze.toHTML(Template.test_helpers_43); };
var onscreen5 = function() { return Blaze.toHTML(Template.test_helpers_44); };
var onscreen6 = function() { return Blaze.toHTML(Template.test_helpers_45); };
var onscreen7 = function() { return Blaze.toHTML(Template.test_helpers_46); };
Helpers.setDictionary({
'say.hello.to.me': {
en: 'Say hello to Me :)'
},
'foo.bar': {
da: 'Hej Foo', en: 'Hello Foo'
}
});
Helpers.setLanguage('en');
test.equal(onscreen1(), 'say hello to me :)');
test.equal(onscreen2(), 'Say hello to me :)');
test.equal(onscreen3(), 'Say Hello To Me :)');
test.equal(onscreen4(), 'SAY HELLO TO ME :)');
test.equal(onscreen5(), 'Say hello to Me :)');
Helpers.setLanguage('da');
test.equal(onscreen1(), 'say hello to me :)');
test.equal(onscreen2(), 'Say hello to me :)');
test.equal(onscreen3(), 'Say Hello To Me :)');
test.equal(onscreen4(), 'SAY HELLO TO ME :)');
test.equal(onscreen5(), 'Say hello to Me :)');
// Check keys not found
test.equal(onscreen6(), '[this.is.not.found]');
Helpers.setLanguage('da');
test.equal(onscreen7(), 'hej foo');
Helpers.setLanguage('en');
test.equal(onscreen7(), 'hello foo');
});
// Tinytest.addAsync("Handlebar helpers - test {{findOne}} and {{find}}", function (test, onComplete) {
// testCollection.insert({ a: 1, b:2 });
// var onscreen1 = Template.test_helpers_30.render(); //findOne
// var onscreen2 = Template.test_helpers_31.render(); //find
// var onscreen3 = Template.test_helpers_32.render(); //with find
// var onscreen4 = Template.test_helpers_33.render(); //with find return a
// var onscreen5 = Template.test_helpers_34.render(); //each find return a
// test.notEqual(Template.test_helpers_30, undefined, 'findOne');
// test.notEqual(Template.test_helpers_31, undefined, 'find');
// test.notEqual(Template.test_helpers_32, undefined, 'with');
// test.notEqual(Template.test_helpers_33, undefined, 'with return a');
// test.notEqual(Template.test_helpers_34, undefined, 'each return a');
// test.equal(onscreen1(), '[object Object]', '{{findOne}}');
// test.equal(onscreen2(), '[object Object]', '{{find}}');
// test.equal(onscreen3(), 'ok', 'with {{findOne}}');
// test.equal(onscreen4(), '1', 'with {{findOne}}');
// test.equal(onscreen5(), '1', 'each {{find}}');
// //console.log(onscreen5());
// testCollection.remove({}); //Remove all
// test.equal(onscreen1(), '<!--empty-->', '{{findOne}}');
// test.equal(onscreen2(), '[object Object]', '{{find}}'); //Guess this allways returns an object
// //test.equal(onscreen3(), 'ok', 'with {{findOne}}');
// test.equal(onscreen4(), '<!--empty-->', 'with {{findOne}}');
// test.equal(onscreen5(), 'none', 'each {{find}}');
// //console.log(onscreen5());
// onComplete();
// });
//Test API:
//test.isFalse(v, msg)
//test.isTrue(v, msg)
//test.equalactual, expected, message, not
//test.length(obj, len)
//test.include(s, v)
//test.isNaN(v, msg)
//test.isUndefined(v, msg)
//test.isNotNull
//test.isNull
//test.throws(func)
//test.instanceOf(obj, klass)
//test.notEqual(actual, expected, message)
//test.runId()
//test.exception(exception)
//test.expect_fail()
//test.ok(doc)
//test.fail(doc)