Created
August 27, 2010 23:12
-
-
Save ericf/554359 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Link Tests | |
*/ | |
YUI.add('ttw-link-test', function(Y){ | |
var matchSuite = new Y.Test.Suite('Link - Matching'), | |
sanitizeSuite = new Y.Test.Suite('Link - Sanitize'); | |
function buildMatchTestCase (name, allows, rejects) { | |
var config = {}; | |
config.name = name; | |
config._should = {}; | |
config._should.fail = {}; | |
Y.each(allows, function(allow){ | |
config[allow + ' - should allow'] = function(){ | |
Y.assert(allow.match(Y.TTW.Link.URL_REGEXP)); | |
} | |
}); | |
Y.each(rejects, function(reject){ | |
var testName = reject + ' - should reject'; | |
config._should.fail[testName] = true; | |
config[testName] = function(){ | |
Y.assert(reject.match(Y.TTW.Link.URL_REGEXP)); | |
} | |
}); | |
return new Y.Test.Case(config); | |
} | |
function buildSanitizeTestCase (name, urls) { | |
var config = { name: name }; | |
Y.each(urls, function(sanitizedUrl, dirtyUrl){ | |
config[dirtyUrl + ' - should sanitize as: ' + sanitizedUrl] = function(){ | |
Y.Assert.areSame(sanitizedUrl, Y.TTW.Link.sanitize(dirtyUrl)); | |
} | |
}); | |
return new Y.Test.Case(config); | |
} | |
// *** Protocol Match TestCase *** // | |
matchSuite.add(buildMatchTestCase('Protocol Match', [ | |
// Allow | |
'http://example.com', | |
'https://example.com', | |
'hTTp://example.com', | |
'HttpS://example.com', | |
'example.com' | |
], [ | |
// Reject | |
'asdf://example.com', | |
'//example.com', | |
'http:example.com', | |
' http://example.com' | |
])); | |
// *** Authorization Match TestCase *** // | |
matchSuite.add(buildMatchTestCase('Authorization Match', [ | |
// Allow | |
'http://foo:[email protected]', | |
'http://[email protected]' | |
], [ | |
// Reject | |
'http:// foo:[email protected]', | |
'http://foo:bar@ example.com', | |
'http://foo:example.com', | |
'http://foo:@example.com', | |
'http://:[email protected]' | |
])); | |
// *** Host Match TestCase *** // | |
matchSuite.add(buildMatchTestCase('Host Match', [ | |
// Allow | |
'http://example.com', | |
'http://e.com', | |
'http://e.us', | |
'http://foo.example.com', | |
'http://foo.bar.example.us', | |
'http://foo.bar.baz.zee.example.com', | |
'http://WWW.example.com', | |
'http://www.Example.com' | |
], [ | |
// Reject | |
'http://a', | |
'http://a.b', | |
'http://a..b', | |
'http://example.com.', | |
'http:// example.com', | |
'http://exa mple.com', | |
'http://example .com', | |
'http://example', | |
'http://example.', | |
'http://example.&com' | |
])); | |
// *** Port Match TestCase *** // | |
matchSuite.add(buildMatchTestCase('Port Match', [ | |
// Allow | |
'http://example.com:8', | |
'http://example.com:808080' | |
], [ | |
// Reject | |
'http://example.com :80', | |
'http://example.com:8 0', | |
'http://example.com:asdf' | |
])); | |
// *** Path Match TestCase *** // | |
matchSuite.add(buildMatchTestCase('Path Match', [ | |
// Allow | |
'http://example.com/', | |
'http://example.com/foo', | |
'http://example.com/foo/', | |
'http://example.com/foo/bar', | |
'http://example.com/foo/bar/', | |
'http://example.com/foo ', | |
'http://example.com/ foo', | |
'http://example.com/ foo /' | |
], [ | |
// Reject | |
'http://example.com /', | |
'http://exmaple.com\\' | |
])); | |
// *** Full Match TestCase *** // | |
matchSuite.add(buildMatchTestCase('Full Match', [ | |
// Allow | |
'Http://www.google.com/phone', | |
'HttpS://foo:[email protected]:8080/~foo/', | |
'http://foo:[email protected]:8080/~foo/baz?zee=true' | |
])); | |
// *** Protocol Sanitize TestCase *** // | |
sanitizeSuite.add(buildSanitizeTestCase('Protocol Sanitize', { | |
'http://example.com' : 'http://example.com', | |
'https://example.com' : 'https://example.com', | |
'hTTp://example.com' : 'http://example.com', | |
'HttpS://example.com' : 'https://example.com', | |
'example.com' : 'http://example.com', | |
' http://example.com' : 'http://example.com' | |
})); | |
// *** Authorization Sanitize TestCase *** // | |
sanitizeSuite.add(buildSanitizeTestCase('Authorization Sanitize', { | |
'http://foo:[email protected]' : 'http://foo:[email protected]', | |
'http://Foo:[email protected]' : 'http://Foo:[email protected]' | |
})); | |
// *** Host Sanitize TestCase *** // | |
sanitizeSuite.add(buildSanitizeTestCase('Host Sanitize', { | |
'http://example.com' : 'http://example.com', | |
'http://Example.com' : 'http://example.com', | |
'http://EXAMPLE.COM' : 'http://example.com', | |
'http://example.com ' : 'http://example.com' | |
})); | |
// *** Port Sanitize TestCase *** // | |
sanitizeSuite.add(buildSanitizeTestCase('Port Sanitize', { | |
'http://example.com:8' : 'http://example.com:8', | |
'http://example.com:8080' : 'http://example.com:8080', | |
'http://example.com:8080 ' : 'http://example.com:8080' | |
})); | |
// *** Path Sanitize TestCase *** // | |
sanitizeSuite.add(buildSanitizeTestCase('Path Sanitize', { | |
'http://example.com/' : 'http://example.com/', | |
'http://example.com/foo' : 'http://example.com/foo', | |
'http://example.com/foo/' : 'http://example.com/foo/', | |
'http://example.com/ ' : 'http://example.com/', | |
'http://example.com/foo ' : 'http://example.com/foo', | |
'http://example.com/foo/ ' : 'http://example.com/foo/', | |
'http://example.com/FOO' : 'http://example.com/FOO', | |
'http://example.com/ foo' : 'http://example.com/ foo', | |
'http://example.com/ foo ' : 'http://example.com/ foo', | |
'http://example.com/ foo /' : 'http://example.com/ foo /' | |
})); | |
// *** Full Sanitize TestCase *** // | |
sanitizeSuite.add(buildSanitizeTestCase('Full Sanitize', { | |
'http://www.google.com/phone' : 'http://www.google.com/phone', | |
'HttpS://foo:[email protected]:8080/~foo/' : 'https://foo:[email protected]:8080/~foo/', | |
'Http://foo:[email protected]:8080/~Foo/baz?zee=true' : 'http://foo:[email protected]:8080/~Foo/baz?zee=true' | |
})); | |
Y.Test.Runner.add(matchSuite); | |
Y.Test.Runner.add(sanitizeSuite); | |
}, '@VERSION@', { requires: ['test', 'ttw-link'] }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment