mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 14:19:49 +08:00
88 lines
2.8 KiB
JavaScript
88 lines
2.8 KiB
JavaScript
module("Discourse.Computed", {
|
|
setup: function() {
|
|
sinon.stub(I18n, "t", function(scope) {
|
|
return "%@ translated: " + scope;
|
|
});
|
|
},
|
|
|
|
teardown: function() {
|
|
I18n.t.restore();
|
|
}
|
|
});
|
|
|
|
var testClass = Em.Object.extend({
|
|
same: Discourse.computed.propertyEqual('cookies', 'biscuits'),
|
|
diff: Discourse.computed.propertyNotEqual('cookies', 'biscuits'),
|
|
exclaimyUsername: Discourse.computed.fmt('username', "!!! %@ !!!"),
|
|
multiple: Discourse.computed.fmt('username', 'mood', "%@ is %@"),
|
|
translatedExclaimyUsername: Discourse.computed.i18n('username', "!!! %@ !!!"),
|
|
translatedMultiple: Discourse.computed.i18n('username', 'mood', "%@ is %@"),
|
|
userUrl: Discourse.computed.url('username', "/users/%@")
|
|
});
|
|
|
|
test("propertyEqual", function() {
|
|
var t = testClass.create({
|
|
cookies: 10,
|
|
biscuits: 10
|
|
});
|
|
|
|
ok(t.get('same'), "it is true when the properties are the same");
|
|
t.set('biscuits', 9);
|
|
ok(!t.get('same'), "it isn't true when one property is different");
|
|
});
|
|
|
|
test("propertyNotEqual", function() {
|
|
var t = testClass.create({
|
|
cookies: 10,
|
|
biscuits: 10
|
|
});
|
|
|
|
ok(!t.get('diff'), "it isn't true when the properties are the same");
|
|
t.set('biscuits', 9);
|
|
ok(t.get('diff'), "it is true when one property is different");
|
|
});
|
|
|
|
|
|
test("fmt", function() {
|
|
var t = testClass.create({
|
|
username: 'eviltrout',
|
|
mood: "happy"
|
|
});
|
|
|
|
equal(t.get('exclaimyUsername'), '!!! eviltrout !!!', "it inserts the string");
|
|
equal(t.get('multiple'), "eviltrout is happy", "it inserts multiple strings");
|
|
|
|
t.set('username', 'codinghorror');
|
|
equal(t.get('multiple'), "codinghorror is happy", "it supports changing properties");
|
|
t.set('mood', 'ecstatic');
|
|
equal(t.get('multiple'), "codinghorror is ecstatic", "it supports changing another property");
|
|
});
|
|
|
|
|
|
test("i18n", function() {
|
|
var t = testClass.create({
|
|
username: 'eviltrout',
|
|
mood: "happy"
|
|
});
|
|
|
|
equal(t.get('translatedExclaimyUsername'), '%@ translated: !!! eviltrout !!!', "it inserts the string and then translates");
|
|
equal(t.get('translatedMultiple'), "%@ translated: eviltrout is happy", "it inserts multiple strings and then translates");
|
|
|
|
t.set('username', 'codinghorror');
|
|
equal(t.get('translatedMultiple'), "%@ translated: codinghorror is happy", "it supports changing properties");
|
|
t.set('mood', 'ecstatic');
|
|
equal(t.get('translatedMultiple'), "%@ translated: codinghorror is ecstatic", "it supports changing another property");
|
|
});
|
|
|
|
|
|
test("url without a prefix", function() {
|
|
var t = testClass.create({ username: 'eviltrout' });
|
|
equal(t.get('userUrl'), "/users/eviltrout");
|
|
});
|
|
|
|
test("url with a prefix", function() {
|
|
Discourse.BaseUri = "/prefixed/";
|
|
var t = testClass.create({ username: 'eviltrout' });
|
|
equal(t.get('userUrl'), "/prefixed/users/eviltrout");
|
|
});
|