mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
50 lines
1.4 KiB
JavaScript
50 lines
1.4 KiB
JavaScript
module("Discourse.Utilities");
|
|
|
|
var utils = Discourse.Utilities;
|
|
|
|
test("emailValid", function() {
|
|
ok(utils.emailValid('Bob@example.com'), "allows upper case in the first part of emails");
|
|
ok(utils.emailValid('bob@EXAMPLE.com'), "allows upper case in the email domain");
|
|
});
|
|
|
|
|
|
var validUpload = utils.validateFilesForUpload;
|
|
|
|
test("validateFilesForUpload", function() {
|
|
ok(!validUpload(null), "no files are invalid");
|
|
ok(!validUpload(undefined), "undefined files are invalid");
|
|
ok(!validUpload([]), "empty array of files is invalid");
|
|
});
|
|
|
|
test("uploading one file", function() {
|
|
this.stub(bootbox, "alert");
|
|
|
|
ok(!validUpload([1, 2]));
|
|
ok(bootbox.alert.calledOnce);
|
|
});
|
|
|
|
test("ensures an image upload", function() {
|
|
var html = { type: "text/html" };
|
|
this.stub(bootbox, "alert");
|
|
|
|
ok(!validUpload([html]));
|
|
ok(bootbox.alert.calledOnce);
|
|
});
|
|
|
|
test("prevents files that are too big from being uploaded", function() {
|
|
var image = { type: "image/png", size: 10 * 1024 };
|
|
Discourse.SiteSettings.max_upload_size_kb = 5;
|
|
this.stub(bootbox, "alert");
|
|
|
|
ok(!validUpload([image]));
|
|
ok(bootbox.alert.calledOnce);
|
|
});
|
|
|
|
test("allows valid uploads to go through", function() {
|
|
var image = { type: "image/png", size: 10 * 1024 };
|
|
Discourse.SiteSettings.max_upload_size_kb = 15;
|
|
this.stub(bootbox, "alert");
|
|
|
|
ok(validUpload([image]));
|
|
ok(!bootbox.alert.calledOnce);
|
|
});
|