From 944090722e2af07ed5fc99ab78acae95c6792bc4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Wed, 23 Mar 2016 21:55:14 +0100 Subject: [PATCH] transform: Group vars and consts in chain_test --- transform/chain_test.go | 135 ++++++++++++++++++++++------------------ 1 file changed, 73 insertions(+), 62 deletions(-) diff --git a/transform/chain_test.go b/transform/chain_test.go index cb8f3d36..a0ae358d 100644 --- a/transform/chain_test.go +++ b/transform/chain_test.go @@ -22,93 +22,104 @@ import ( "testing" ) -const h5JsContentDoubleQuote = "
content foobar. Follow up
" -const h5JsContentSingleQuote = "
content foobar. Follow up
" -const h5JsContentAbsURL = "
content foobar. Follow up
" -const h5JsContentAbsURLSchemaless = "
content foobar. Follow up
" -const corectOutputSrcHrefSq = "
content foobar. Follow up
" - -const h5XMLXontentAbsURL = "<p><a href="/foobar">foobar</a></p> <p>A video: <iframe src='/foo'></iframe></p>" -const correctOutputSrcHrefInXML = "<p><a href="http://base/foobar">foobar</a></p> <p>A video: <iframe src='http://base/foo'></iframe></p>" -const h5XMLContentGuarded = "<p><a href="//foobar">foobar</a></p> <p>A video: <iframe src='//foo'></iframe></p>" - -// additional sanity tests for replacements testing -const replace1 = "No replacements." -const replace2 = "ᚠᛇᚻ ᛒᛦᚦ ᚠᚱᚩᚠᚢᚱ\nᚠᛁᚱᚪ ᚷᛖᚻᚹᛦᛚᚳᚢᛗ" -const replace3 = `End of file: src="/` -const replace4 = `End of file: srcset="/` -const replace5 = `Srcsett with no closing quote: srcset="/img/small.jpg do be do be do.` - -// Issue: 816, schemaless links combined with others -const replaceSchemalessHTML = `Pre. src='//schemaless' src='/normal' Schemaless. normal. Post.` -const replaceSchemalessHTMLCorrect = `Pre. src='//schemaless' src='http://base/normal' Schemaless. normal. Post.` -const replaceSchemalessXML = `Pre. src='//schemaless' src='/normal' Schemaless. normal. Post.` -const replaceSchemalessXMLCorrect = `Pre. src='//schemaless' src='http://base/normal' Schemaless. normal. Post.` - -// srcset= -const srcsetBasic = `Pre. text` -const srcsetBasicCorrect = `Pre. text` -const srcsetSingleQuote = `Pre. text POST.` -const srcsetSingleQuoteCorrect = `Pre. text POST.` -const srcsetXMLBasic = `Pre. "text"` -const srcsetXMLBasicCorrect = `Pre. "text"` -const srcsetXMLSingleQuote = `Pre. "text"` -const srcsetXMLSingleQuoteCorrect = `Pre. "text"` -const srcsetVariations = `Pre. +const ( + h5JsContentDoubleQuote = "
content foobar. Follow up
" + h5JsContentSingleQuote = "
content foobar. Follow up
" + h5JsContentAbsURL = "
content foobar. Follow up
" + h5JsContentAbsURLSchemaless = "
content foobar. Follow up
" + corectOutputSrcHrefSq = "
content foobar. Follow up
" + + h5XMLXontentAbsURL = "<p><a href="/foobar">foobar</a></p> <p>A video: <iframe src='/foo'></iframe></p>" + correctOutputSrcHrefInXML = "<p><a href="http://base/foobar">foobar</a></p> <p>A video: <iframe src='http://base/foo'></iframe></p>" + h5XMLContentGuarded = "<p><a href="//foobar">foobar</a></p> <p>A video: <iframe src='//foo'></iframe></p>" +) + +const ( + // additional sanity tests for replacements testing + replace1 = "No replacements." + replace2 = "ᚠᛇᚻ ᛒᛦᚦ ᚠᚱᚩᚠᚢᚱ\nᚠᛁᚱᚪ ᚷᛖᚻᚹᛦᛚᚳᚢᛗ" + replace3 = `End of file: src="/` + replace4 = `End of file: srcset="/` + replace5 = `Srcsett with no closing quote: srcset="/img/small.jpg do be do be do.` + + // Issue: 816, schemaless links combined with others + replaceSchemalessHTML = `Pre. src='//schemaless' src='/normal' Schemaless. normal. Post.` + replaceSchemalessHTMLCorrect = `Pre. src='//schemaless' src='http://base/normal' Schemaless. normal. Post.` + replaceSchemalessXML = `Pre. src='//schemaless' src='/normal' Schemaless. normal. Post.` + replaceSchemalessXMLCorrect = `Pre. src='//schemaless' src='http://base/normal' Schemaless. normal. Post.` +) + +const ( + // srcset= + srcsetBasic = `Pre. text` + srcsetBasicCorrect = `Pre. text` + srcsetSingleQuote = `Pre. text POST.` + srcsetSingleQuoteCorrect = `Pre. text POST.` + srcsetXMLBasic = `Pre. "text"` + srcsetXMLBasicCorrect = `Pre. "text"` + srcsetXMLSingleQuote = `Pre. "text"` + srcsetXMLSingleQuoteCorrect = `Pre. "text"` + srcsetVariations = `Pre. Missing start quote: text src='/img/foo.jpg'> FOO. schemaless: schemaless2: text src='http://base/img/foo.jpg'> FOO. schemaless: schemaless2: