2014-12-29 12:59:16 +00:00
|
|
|
window.onload = function() {
|
|
|
|
|
|
|
|
// textCleanup
|
|
|
|
test( "textCleanup", function() {
|
|
|
|
|
|
|
|
var source = "Some\nValue\n\n\nTest"
|
|
|
|
var should = "Some\nValue\n\nTest"
|
|
|
|
var result = App.Utils.textCleanup( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "Some\nValue\n\n \n\n\nTest"
|
|
|
|
should = "Some\nValue\n\nTest"
|
|
|
|
result = App.Utils.textCleanup( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "Some\n\rValue\n\r\n\r\n\rTest"
|
|
|
|
should = "Some\nValue\n\nTest"
|
|
|
|
result = App.Utils.textCleanup( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "Some\n\rValue\n\r\n\r\n\rTest\r"
|
|
|
|
should = "Some\nValue\n\nTest"
|
|
|
|
result = App.Utils.textCleanup( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "Some\r\nValue\r\n\r\n\r\nTest\r\n"
|
|
|
|
should = "Some\nValue\n\nTest"
|
|
|
|
result = App.Utils.textCleanup( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "Some\r\nValue\r\n\r\n\r\n\r\n\r\n\r\nTest\r\n"
|
|
|
|
should = "Some\nValue\n\nTest"
|
|
|
|
result = App.Utils.textCleanup( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
2014-12-29 23:25:57 +00:00
|
|
|
source = "> Welcome!\n> \n> Thank you for installing Zammad.\n> \n> You will find ..."
|
|
|
|
should = "> Welcome!\n>\n> Thank you for installing Zammad.\n>\n> You will find ..."
|
|
|
|
result = App.Utils.textCleanup( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
|
2014-12-29 12:59:16 +00:00
|
|
|
});
|
|
|
|
|
2015-01-06 22:42:49 +00:00
|
|
|
// text2html
|
|
|
|
test( "text2html", function() {
|
|
|
|
|
|
|
|
var source = "Some\nValue\n\n\nTest"
|
|
|
|
var should = "<div>Some</div><div>Value</div><div><br></div><div>Test</div>"
|
|
|
|
var result = App.Utils.text2html( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "Some\nValue\n"
|
|
|
|
should = "<div>Some</div><div>Value</div>"
|
|
|
|
result = App.Utils.text2html( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "Some\n<b>Value</b>\n"
|
|
|
|
should = "<div>Some</div><div><b>Value</b></div>"
|
|
|
|
result = App.Utils.text2html( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "> Welcome!\n> \n> Thank you for installing Zammad.\n> \n> You will find ..."
|
|
|
|
should = "<div>> Welcome!</div><div>></div><div>> Thank you for installing Zammad.</div><div>></div><div>> You will find ...</div>"
|
|
|
|
result = App.Utils.text2html( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
// linkify
|
|
|
|
test( "linkify", function() {
|
|
|
|
|
|
|
|
var source = "http://example.com"
|
|
|
|
var should = '<a href="http://example.com" title="http://example.com" target="_blank">http://example.com</a>'
|
|
|
|
var result = App.Utils.linkify( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "http://example.com?some_param=lalala"
|
|
|
|
should = '<a href="http://example.com?some_param=lalala" title="http://example.com?some_param=lalala" target="_blank">http://example.com?some_param=lalala</a>'
|
|
|
|
result = App.Utils.linkify( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "example.com"
|
|
|
|
should = '<a href="http://example.com" title="http://example.com" target="_blank">example.com</a>'
|
|
|
|
result = App.Utils.linkify( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "some text example.com"
|
|
|
|
should = 'some text <a href="http://example.com" title="http://example.com" target="_blank">example.com</a>'
|
|
|
|
result = App.Utils.linkify( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "example.com some text"
|
|
|
|
should = '<a href="http://example.com" title="http://example.com" target="_blank">example.com</a> some text'
|
|
|
|
result = App.Utils.linkify( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
source = "<b>example.com</b>"
|
|
|
|
should = '<b><a href="http://example.com" title="http://example.com" target="_blank">http://example.com</a></b>'
|
|
|
|
result = App.Utils.linkify( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
*/
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2014-12-29 12:59:16 +00:00
|
|
|
// htmlEscape
|
|
|
|
test( "htmlEscape", function() {
|
|
|
|
|
|
|
|
var source = "<"
|
|
|
|
var should = "<"
|
|
|
|
var result = App.Utils.htmlEscape( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = ">"
|
|
|
|
should = ">"
|
|
|
|
result = App.Utils.htmlEscape( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "&"
|
|
|
|
should = "&"
|
|
|
|
result = App.Utils.htmlEscape( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "&"
|
|
|
|
should = "&amp;"
|
|
|
|
result = App.Utils.htmlEscape( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "& ;"
|
|
|
|
should = "&amp ;"
|
|
|
|
result = App.Utils.htmlEscape( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "& amp;"
|
|
|
|
should = "& amp;"
|
|
|
|
result = App.Utils.htmlEscape( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "'test'"
|
|
|
|
should = "'test'"
|
|
|
|
result = App.Utils.htmlEscape( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = '"test"'
|
|
|
|
should = ""test""
|
|
|
|
result = App.Utils.htmlEscape( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "<>"
|
|
|
|
should = "<>"
|
|
|
|
result = App.Utils.htmlEscape( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "<<>"
|
|
|
|
should = "<&lt;>"
|
|
|
|
result = App.Utils.htmlEscape( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2015-01-06 22:42:49 +00:00
|
|
|
// htmlRemoveTags
|
|
|
|
test( "htmlRemoveTags", function() {
|
2014-12-29 12:59:16 +00:00
|
|
|
|
2015-01-06 22:42:49 +00:00
|
|
|
var source = "<div>test</div>"
|
|
|
|
var should = "test"
|
|
|
|
var result = App.Utils.htmlRemoveTags( $(source) )
|
|
|
|
console.log('RRRR', result);
|
|
|
|
equal( result.html(), should, source )
|
2014-12-29 12:59:16 +00:00
|
|
|
|
2015-01-06 22:42:49 +00:00
|
|
|
source = "<a href=\"some_link\">some link to somewhere</a>"
|
|
|
|
should = "some link to somewhere"
|
|
|
|
result = App.Utils.htmlRemoveTags( $(source) )
|
|
|
|
equal( result.html(), should, source )
|
2014-12-29 12:59:16 +00:00
|
|
|
|
2015-01-06 22:42:49 +00:00
|
|
|
source = "<div><a href=\"some_link\">some link to somewhere</a></div>"
|
|
|
|
should = "some link to somewhere"
|
|
|
|
result = App.Utils.htmlRemoveTags( $(source) )
|
|
|
|
equal( result.html(), should, source )
|
2014-12-29 23:25:57 +00:00
|
|
|
|
2015-01-06 22:42:49 +00:00
|
|
|
source = "<div><a href=\"some_link\">some link to somewhere</a> <div><hr></div> <span>123</span> <img src=\"some_image\"/></div>"
|
|
|
|
should = "some link to somewhere 123 "
|
|
|
|
result = App.Utils.htmlRemoveTags( $(source) )
|
|
|
|
equal( result.html(), should, source )
|
2014-12-29 12:59:16 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2015-01-06 22:42:49 +00:00
|
|
|
// htmlRemoveRichtext
|
|
|
|
test( "htmlRemoveRichtext", function() {
|
2014-12-29 12:59:16 +00:00
|
|
|
|
2015-01-06 22:42:49 +00:00
|
|
|
var source = "<div><a href=\"test\">test</a></div>"
|
|
|
|
var should = "test"
|
|
|
|
var result = App.Utils.htmlRemoveRichtext( $(source) )
|
|
|
|
equal( result.html(), should, source )
|
2014-12-29 12:59:16 +00:00
|
|
|
|
2015-01-06 22:42:49 +00:00
|
|
|
source = "<a href=\"some_link\">some link to somewhere</a>"
|
|
|
|
should = "some link to somewhere"
|
|
|
|
result = App.Utils.htmlRemoveRichtext( $(source) )
|
|
|
|
equal( result.html(), should, source )
|
2014-12-29 12:59:16 +00:00
|
|
|
|
2015-01-06 22:42:49 +00:00
|
|
|
source = "<div><a href=\"some_link\"></a> test </div>"
|
|
|
|
should = " test "
|
|
|
|
result = App.Utils.htmlRemoveRichtext( $(source) )
|
|
|
|
equal( result.html(), should, source )
|
2014-12-29 12:59:16 +00:00
|
|
|
|
2015-01-06 22:42:49 +00:00
|
|
|
source = "<div><b></b> test </div>"
|
|
|
|
should = " test "
|
|
|
|
result = App.Utils.htmlRemoveRichtext( $(source) )
|
|
|
|
equal( result.html(), should, source )
|
2014-12-29 12:59:16 +00:00
|
|
|
|
2015-01-06 22:42:49 +00:00
|
|
|
source = "<div><div><b></b> test </div></div>"
|
|
|
|
should = "<div> test </div>"
|
|
|
|
result = App.Utils.htmlRemoveRichtext( $(source) )
|
|
|
|
equal( result.html(), should, source )
|
2014-12-29 12:59:16 +00:00
|
|
|
|
2015-01-06 22:42:49 +00:00
|
|
|
source = "<div><div><b></b> test </div><span>123</span></div>"
|
|
|
|
should = "<div> test </div><span>123</span>"
|
|
|
|
result = App.Utils.htmlRemoveRichtext( $(source) )
|
|
|
|
equal( result.html(), should, source )
|
2014-12-29 12:59:16 +00:00
|
|
|
|
2015-01-06 22:42:49 +00:00
|
|
|
source = "<div><div class=\"xxx\"><b></b> test </div></div>"
|
|
|
|
should = "<div> test </div>"
|
|
|
|
result = App.Utils.htmlRemoveRichtext( $(source) )
|
|
|
|
equal( result.html(), should, source )
|
|
|
|
|
2015-01-07 00:03:18 +00:00
|
|
|
source = "<div><br></div>"
|
|
|
|
should = "<br>"
|
|
|
|
result = App.Utils.htmlClanup( $(source) )
|
|
|
|
equal( result.html(), should, source )
|
|
|
|
|
|
|
|
source = "<div><div class=\"xxx\"><br></div></div>"
|
|
|
|
should = "<div><br></div>"
|
|
|
|
result = App.Utils.htmlRemoveRichtext( $(source) )
|
|
|
|
equal( result.html(), should, source )
|
|
|
|
|
2015-01-06 22:42:49 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// htmlClanup
|
|
|
|
test( "htmlClanup", function() {
|
|
|
|
|
|
|
|
var source = "<div><a href=\"test\">test</a></div>"
|
|
|
|
var should = "test"
|
|
|
|
var result = App.Utils.htmlClanup( $(source) )
|
|
|
|
equal( result.html(), should, source )
|
|
|
|
|
|
|
|
source = "<a href=\"some_link\">some link to somewhere</a>"
|
|
|
|
should = "some link to somewhere"
|
|
|
|
result = App.Utils.htmlClanup( $(source) )
|
|
|
|
equal( result.html(), should, source )
|
|
|
|
|
|
|
|
source = "<div><h1>some link to somewhere</h1></a>"
|
|
|
|
should = "<div>some link to somewhere</div>"
|
|
|
|
result = App.Utils.htmlClanup( $(source) )
|
|
|
|
equal( result.html(), should, source )
|
|
|
|
|
|
|
|
source = "<div><h1>some link to somewhere</h1><p><hr></p></div>"
|
|
|
|
should = "<div>some link to somewhere</div><p></p><p></p>"
|
|
|
|
result = App.Utils.htmlClanup( $(source) )
|
2015-01-06 22:52:01 +00:00
|
|
|
equal( result.html(), should, source )
|
|
|
|
|
|
|
|
source = "<div><br></div>"
|
|
|
|
should = "<br>"
|
|
|
|
result = App.Utils.htmlClanup( $(source) )
|
2015-01-07 00:03:18 +00:00
|
|
|
equal( result.html(), should, source )
|
|
|
|
|
|
|
|
source = "<div><div class=\"xxx\"><br></div></div>"
|
|
|
|
should = "<div><br></div>"
|
|
|
|
result = App.Utils.htmlRemoveRichtext( $(source) )
|
2015-01-06 22:42:49 +00:00
|
|
|
equal( result.html(), should, source )
|
2014-12-29 12:59:16 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2015-01-05 22:21:08 +00:00
|
|
|
// wrap
|
|
|
|
test( "wrap", function() {
|
|
|
|
|
|
|
|
var source = "some text"
|
|
|
|
var should = 'some text'
|
|
|
|
var result = App.Utils.wrap( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "some text\nsome other text\n"
|
|
|
|
should = "some text\nsome other text\n"
|
|
|
|
result = App.Utils.wrap( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "some text with some line to wrap"
|
|
|
|
should = "some text with\nsome line to\nwrap"
|
|
|
|
result = App.Utils.wrap( source, 14 )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "some text\nsome other text\n"
|
|
|
|
should = "some text\nsome other text\n"
|
|
|
|
result = App.Utils.wrap( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "1234567890 1234567890 1234567890 1234567890"
|
|
|
|
should = "1234567890 1234567890 1234567890 1234567890"
|
|
|
|
result = App.Utils.wrap( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "123456789012 123456789012 123456789012"
|
|
|
|
should = "123456789012\n123456789012\n123456789012"
|
|
|
|
result = App.Utils.wrap( source, 14 )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2014-12-29 23:25:57 +00:00
|
|
|
// quote
|
|
|
|
test( "quote", function() {
|
|
|
|
|
|
|
|
var source = "some text"
|
|
|
|
var should = '> some text'
|
|
|
|
var result = App.Utils.quote( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "some text\nsome other text\n"
|
|
|
|
should = "> some text\n> some other text"
|
|
|
|
result = App.Utils.quote( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "\n\nsome text\nsome other text\n \n"
|
|
|
|
should = "> some text\n> some other text"
|
|
|
|
result = App.Utils.quote( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
source = "Welcome!\n\nThank you for installing Zammad.\n\nYou will find ..."
|
|
|
|
should = "> Welcome!\n>\n> Thank you for installing Zammad.\n>\n> You will find ..."
|
|
|
|
result = App.Utils.quote( source )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
2015-01-05 22:21:08 +00:00
|
|
|
|
|
|
|
source = "Welcome! Thank you for installing Zammad. You will find ..."
|
|
|
|
should = "> Welcome! Thank you\n> for installing\n> Zammad. You will\n> find ..."
|
|
|
|
result = App.Utils.quote( source, 20 )
|
|
|
|
equal( result, should, source )
|
|
|
|
|
|
|
|
|
2014-12-29 23:25:57 +00:00
|
|
|
});
|
|
|
|
|
2014-12-29 12:59:16 +00:00
|
|
|
}
|