/*global waitsFor:true expect:true describe:true beforeEach:true it:true */ (function() { describe("Discourse.Utilities", function() { describe("categoryUrlId", function() { it("returns the slug when it exists", function() { return expect(Discourse.Utilities.categoryUrlId({ slug: 'hello' })).toBe("hello"); }); it("returns id-category when slug is an empty string", function() { return expect(Discourse.Utilities.categoryUrlId({ id: 123, slug: '' })).toBe("123-category"); }); return it("returns id-category without a slug", function() { return expect(Discourse.Utilities.categoryUrlId({ id: 456 })).toBe("456-category"); }); }); describe("Cooking", function() { var cook; cook = function(contents, opts) { opts = opts || {}; opts.mentionLookup = opts.mentionLookup || (function() { return false; }); return Discourse.Utilities.cook(contents, opts); }; it("surrounds text with paragraphs", function() { return expect(cook("hello")).toBe("

hello

"); }); it("automatically handles trivial newlines", function() { return expect(cook("1\n2\n3")).toBe("

1
\n2
\n3

"); }); it("handles quotes properly", function() { var cooked; cooked = cook("1[quote=\"bob, post:1\"]my quote[/quote]2", { topicId: 2, lookupAvatar: function(name) { return "" + name; } }); return expect(cooked).toBe("

1

\n

2

"); }); it("includes no avatar if none is found", function() { var cooked; cooked = cook("1[quote=\"bob, post:1\"]my quote[/quote]2", { topicId: 2, lookupAvatar: function(name) { return null; } }); return expect(cooked).toBe("

1

\n

2

"); }); describe("Links", function() { it("allows links to contain query params", function() { expect(cook("Youtube: http://www.youtube.com/watch?v=1MrpeBRkM5A")). toBe('

Youtube: http://www.youtube.com/watch?v=1MrpeBRkM5A

'); }); it("escapes double underscores in URLs", function() { return expect(cook("Derpy: http://derp.com?__test=1")).toBe('

Derpy: http://derp.com?__test=1

'); }); it("autolinks something that begins with www", function() { return expect(cook("Atwood: www.codinghorror.com")).toBe('

Atwood: www.codinghorror.com

'); }); it("autolinks a URL with http://www", function() { return expect(cook("Atwood: http://www.codinghorror.com")).toBe('

Atwood: http://www.codinghorror.com

'); }); it("autolinks a URL", function() { return expect(cook("EvilTrout: http://eviltrout.com")).toBe('

EvilTrout: http://eviltrout.com

'); }); it("supports markdown style links", function() { return expect(cook("here is [an example](http://twitter.com)")).toBe('

here is an example

'); }); return it("autolinks a URL with parentheses (like Wikipedia)", function() { return expect(cook("Batman: http://en.wikipedia.org/wiki/The_Dark_Knight_(film)")) .toBe('

Batman: http://en.wikipedia.org/wiki/The_Dark_Knight_(film)

'); }); }); describe("Mentioning", function() { it("translates mentions to links", function() { return expect(cook("Hello @sam", { mentionLookup: (function() { return true; }) })).toBe("

Hello @sam

"); }); it("adds a mention class", function() { return expect(cook("Hello @EvilTrout")).toBe("

Hello @EvilTrout

"); }); it("won't add mention class to an email address", function() { return expect(cook("robin@email.host")).toBe("

robin@email.host

"); }); it("won't be affected by email addresses that have a number before the @ symbol", function() { return expect(cook("hanzo55@yahoo.com")).toBe("

hanzo55@yahoo.com

"); }); return it("supports a @mention at the beginning of a post", function() { return expect(cook("@EvilTrout yo")).toBe("

@EvilTrout yo

"); }); }); return describe("Oneboxing", function() { it("doesn't onebox a link within a list", function() { return expect(cook("- http://www.textfiles.com/bbs/MINDVOX/FORUMS/ethics\n\n- http://drupal.org")).not.toMatch(/onebox/); }); it("adds a onebox class to a link on its own line", function() { return expect(cook("http://test.com")).toMatch(/onebox/); }); it("supports multiple links", function() { return expect(cook("http://test.com\nhttp://test2.com")).toMatch(/onebox[\s\S]+onebox/m); }); it("doesn't onebox links that have trailing text", function() { return expect(cook("http://test.com bob")).not.toMatch(/onebox/); }); return it("works with links that have underscores in them", function() { return expect(cook("http://en.wikipedia.org/wiki/Homicide:_Life_on_the_Street")). toBe("

http://en.wikipedia.org/wiki/Homicide:_Life_on_the_Street

"); }); }); }); return describe("emailValid", function() { it("allows upper case in first part of emails", function() { return expect(Discourse.Utilities.emailValid('Bob@example.com')).toBe(true); }); return it("allows upper case in domain of emails", function() { return expect(Discourse.Utilities.emailValid('bob@EXAMPLE.com')).toBe(true); }); }); }); }).call(this);