wiki.techinc.nl/tests/phpunit/includes/UserIsValidEmailAddrTest.php
Antoine Musso c59480ada3 Add a .tld to emails when testing for white space before/after.
This might avoid confusion when testing. Currently, an email without
a tld is invalid (ex user@host).  The assertions could have been
invalid just by the lack of tld, not the spaces!
2011-01-09 19:06:02 +00:00

64 lines
1.9 KiB
PHP

<?php
class UserIsValidEmailAddrTest extends MediaWikiTestCase {
private function checkEmail( $addr, $expected = true, $msg = '') {
$this->assertEquals(
$expected,
User::isValidEmailAddr( $addr ),
$msg
);
}
private function valid( $addr, $msg = '' ) {
$this->checkEmail( $addr, true, $msg );
}
private function invalid( $addr, $msg = '' ) {
$this->checkEmail( $addr, false, $msg );
}
function testEmailWellKnownUserAtHostDotTldAreValid() {
$this->valid( 'user@example.com' );
$this->valid( 'user@example.museum' );
}
function testEmailWithUpperCaseCharactersAreValid() {
$this->valid( 'USER@example.com' );
$this->valid( 'user@EXAMPLE.COM' );
$this->valid( 'user@Example.com' );
$this->valid( 'USER@eXAMPLE.com' );
}
function testEmailWithAPlusInUserName() {
$this->valid( 'user+sub@example.com' );
$this->valid( 'user+@example.com' );
}
function testEmailWithWhiteSpacesBeforeOrAfterAreInvalids() {
$this->invalid( " user@host.com" );
$this->invalid( "user@host.com " );
$this->invalid( "\tuser@host.com" );
$this->invalid( "user@host.com\t" );
}
function testEmailWithWhiteSpacesAreInvalids() {
$this->invalid( "User user@host" );
$this->invalid( "first last@mycompany" );
$this->invalid( "firstlast@my company" );
}
function testEmailDomainCanNotBeginWithDot() {
$this->invalid( "user@." );
$this->invalid( "user@.localdomain" );
$this->invalid( "user@localdomain." );
$this->invalid( "user.@localdomain" );
$this->invalid( ".@localdomain" );
$this->invalid( ".@a............" );
}
function testEmailWithFunnyCharacters() {
$this->valid( "\$user!ex{this}@123.com" );
}
function testEmailTopLevelDomainCanBeNumerical() {
$this->valid( "user@example.1234" );
}
function testEmailWithoutAtSignIsInvalid() {
$this->invalid( 'useràexample.com' );
}
function testEmailWithOneCharacterDomainIsInvalid() {
$this->invalid( 'user@a' );
}
}