123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092 |
- <?php
- /**
- * Tests the Valid class
- *
- * @group ko7
- * @group ko7.core
- * @group ko7.core.valid
- *
- * @package KO7
- * @category Tests
- *
- * @author BRMatt <matthew@sigswitch.com>
- * @copyright (c) Koseven Team
- * @license https://koseven.dev/LICENSE
- */
- class KO7_ValidTest extends Unittest_TestCase
- {
- /**
- * Provides test data for test_alpha()
- * @return array
- */
- public function provider_alpha()
- {
- return [
- ['asdavafaiwnoabwiubafpowf', TRUE],
- ['!aidhfawiodb', FALSE],
- ['51535oniubawdawd78', FALSE],
- ['!"£$(G$W£(HFW£F(HQ)"n', FALSE],
- // UTF-8 tests
- ['あいうえお', TRUE, TRUE],
- ['¥', FALSE, TRUE],
- // Empty test
- ['', FALSE, FALSE],
- [NULL, FALSE, FALSE],
- [FALSE, FALSE, FALSE],
- ];
- }
- /**
- * Tests Valid::alpha()
- *
- * Checks whether a string consists of alphabetical characters only.
- *
- * @test
- * @dataProvider provider_alpha
- * @param string $string
- * @param boolean $expected
- */
- public function test_alpha($string, $expected, $utf8 = FALSE)
- {
- $this->assertSame(
- $expected,
- Valid::alpha($string, $utf8)
- );
- }
- /*
- * Provides test data for test_alpha_numeric
- */
- public function provide_alpha_numeric()
- {
- return [
- ['abcd1234', TRUE],
- ['abcd', TRUE],
- ['1234', TRUE],
- ['abc123&^/-', FALSE],
- // UTF-8 tests
- ['あいうえお', TRUE, TRUE],
- ['零一二三四五', TRUE, TRUE],
- ['あい四五£^£^', FALSE, TRUE],
- // Empty test
- ['', FALSE, FALSE],
- [NULL, FALSE, FALSE],
- [FALSE, FALSE, FALSE],
- ];
- }
- /**
- * Tests Valid::alpha_numeric()
- *
- * Checks whether a string consists of alphabetical characters and numbers only.
- *
- * @test
- * @dataProvider provide_alpha_numeric
- * @param string $input The string to test
- * @param boolean $expected Is $input valid
- */
- public function test_alpha_numeric($input, $expected, $utf8 = FALSE)
- {
- $this->assertSame(
- $expected,
- Valid::alpha_numeric($input, $utf8)
- );
- }
- /**
- * Provides test data for test_alpha_dash
- */
- public function provider_alpha_dash()
- {
- return [
- ['abcdef', TRUE],
- ['12345', TRUE],
- ['abcd1234', TRUE],
- ['abcd1234-', TRUE],
- ['abc123&^/-', FALSE],
- // Empty test
- ['', FALSE],
- [NULL, FALSE],
- [FALSE, FALSE],
- ];
- }
- /**
- * Tests Valid::alpha_dash()
- *
- * Checks whether a string consists of alphabetical characters, numbers, underscores and dashes only.
- *
- * @test
- * @dataProvider provider_alpha_dash
- * @param string $input The string to test
- * @param boolean $contains_utf8 Does the string contain utf8 specific characters
- * @param boolean $expected Is $input valid?
- */
- public function test_alpha_dash($input, $expected, $contains_utf8 = FALSE)
- {
- if ( ! $contains_utf8)
- {
- $this->assertSame(
- $expected,
- Valid::alpha_dash($input)
- );
- }
- $this->assertSame(
- $expected,
- Valid::alpha_dash($input, TRUE)
- );
- }
- /**
- * DataProvider for the valid::date() test
- */
- public function provider_date()
- {
- return [
- ['now',TRUE],
- ['10 September 2010',TRUE],
- ['+1 day',TRUE],
- ['+1 week',TRUE],
- ['+1 week 2 days 4 hours 2 seconds',TRUE],
- ['next Thursday',TRUE],
- ['last Monday',TRUE],
- ['blarg',FALSE],
- ['in the year 2000',FALSE],
- ['324824',FALSE],
- // Empty test
- ['', FALSE],
- [NULL, FALSE],
- [FALSE, FALSE],
- ];
- }
- /**
- * Tests Valid::date()
- *
- * @test
- * @dataProvider provider_date
- * @param string $date The date to validate
- * @param integer $expected
- */
- public function test_date($date, $expected)
- {
- $this->assertSame(
- $expected,
- Valid::date($date, $expected)
- );
- }
- /**
- * DataProvider for the valid::decimal() test
- */
- public function provider_decimal()
- {
- return [
- // Empty test
- ['', 2, NULL, FALSE],
- [NULL, 2, NULL, FALSE],
- [FALSE, 2, NULL, FALSE],
- ['45.1664', 3, NULL, FALSE],
- ['45.1664', 4, NULL, TRUE],
- ['45.1664', 4, 2, TRUE],
- ['-45.1664', 4, NULL, TRUE],
- ['+45.1664', 4, NULL, TRUE],
- ['-45.1664', 3, NULL, FALSE],
- ];
- }
- /**
- * Tests Valid::decimal()
- *
- * @test
- * @dataProvider provider_decimal
- * @param string $decimal The decimal to validate
- * @param integer $places The number of places to check to
- * @param integer $digits The number of digits preceding the point to check
- * @param boolean $expected Whether $decimal conforms to $places AND $digits
- */
- public function test_decimal($decimal, $places, $digits, $expected)
- {
- $this->assertSame(
- $expected,
- Valid::decimal($decimal, $places, $digits),
- 'Decimal: "'.$decimal.'" to '.$places.' places and '.$digits.' digits (preceeding period)'
- );
- }
- /**
- * Provides test data for test_digit
- * @return array
- */
- public function provider_digit()
- {
- return [
- ['12345', TRUE],
- ['10.5', FALSE],
- ['abcde', FALSE],
- ['abcd1234', FALSE],
- ['-5', FALSE],
- [-5, FALSE],
- // Empty test
- ['', FALSE],
- [NULL, FALSE],
- [FALSE, FALSE],
- ];
- }
- /**
- * Tests Valid::digit()
- *
- * @test
- * @dataProvider provider_digit
- * @param mixed $input Input to validate
- * @param boolean $expected Is $input valid
- */
- public function test_digit($input, $expected, $contains_utf8 = FALSE)
- {
- if ( ! $contains_utf8)
- {
- $this->assertSame(
- $expected,
- Valid::digit($input)
- );
- }
- $this->assertSame(
- $expected,
- Valid::digit($input, TRUE)
- );
- }
- /**
- * DataProvider for the valid::color() test
- */
- public function provider_color()
- {
- return [
- ['#000000', TRUE],
- ['#GGGGGG', FALSE],
- ['#AbCdEf', TRUE],
- ['#000', TRUE],
- ['#abc', TRUE],
- ['#DEF', TRUE],
- ['000000', TRUE],
- ['GGGGGG', FALSE],
- ['AbCdEf', TRUE],
- ['000', TRUE],
- ['DEF', TRUE],
- // Empty test
- ['', FALSE],
- [NULL, FALSE],
- [FALSE, FALSE],
- ];
- }
- /**
- * Tests Valid::color()
- *
- * @test
- * @dataProvider provider_color
- * @param string $color The color to test
- * @param boolean $expected Is $color valid
- */
- public function test_color($color, $expected)
- {
- $this->assertSame(
- $expected,
- Valid::color($color)
- );
- }
- /**
- * Provides test data for test_credit_card()
- */
- public function provider_credit_card()
- {
- return [
- ['4222222222222', 'visa', TRUE],
- ['4012888888881881', 'visa', TRUE],
- ['4012888888881881', NULL, TRUE],
- ['4012888888881881', ['mastercard', 'visa'], TRUE],
- ['4012888888881881', ['discover', 'mastercard'], FALSE],
- ['4012888888881881', 'mastercard', FALSE],
- ['5105105105105100', 'mastercard', TRUE],
- ['6011111111111117', 'discover', TRUE],
- ['6011111111111117', 'visa', FALSE],
- // Empty test
- ['', NULL, FALSE],
- [NULL, NULL, FALSE],
- [FALSE, NULL, FALSE],
- ];
- }
- /**
- * Tests Valid::credit_card()
- *
- * @test
- * @covers Valid::credit_card
- * @dataProvider provider_credit_card()
- * @param string $number Credit card number
- * @param string $type Credit card type
- * @param boolean $expected
- */
- public function test_credit_card($number, $type, $expected)
- {
- $this->assertSame(
- $expected,
- Valid::credit_card($number, $type)
- );
- }
- /**
- * Provides test data for test_credit_card()
- */
- public function provider_luhn()
- {
- return [
- ['4222222222222', TRUE],
- ['4012888888881881', TRUE],
- ['5105105105105100', TRUE],
- ['6011111111111117', TRUE],
- ['60111111111111.7', FALSE],
- ['6011111111111117X', FALSE],
- ['6011111111111117 ', FALSE],
- ['WORD ', FALSE],
- // Empty test
- ['', FALSE],
- [NULL, FALSE],
- [FALSE, FALSE],
- ];
- }
- /**
- * Tests Valid::luhn()
- *
- * @test
- * @covers Valid::luhn
- * @dataProvider provider_luhn()
- * @param string $number Credit card number
- * @param boolean $expected
- */
- public function test_luhn($number, $expected)
- {
- $this->assertSame(
- $expected,
- Valid::luhn($number)
- );
- }
- /**
- * Provides test data for test_email()
- *
- * @return array
- */
- public function provider_email()
- {
- return [
- ['foo', TRUE, FALSE],
- ['foo', FALSE, FALSE],
- ['foo@bar', TRUE, FALSE],
- // RFC is less strict than the normal regex, presumably to allow
- // admin@localhost, therefore we IGNORE IT!!!
- ['foo@bar', FALSE, FALSE],
- ['foo@bar.com', FALSE, TRUE],
- ['foo@barcom:80', FALSE, FALSE],
- ['foo@bar.sub.com', FALSE, TRUE],
- ['foo+asd@bar.sub.com', FALSE, TRUE],
- ['foo.asd@bar.sub.com', FALSE, TRUE],
- // RFC says 254 length max #4011
- [Text::random(NULL, 200).'@'.Text::random(NULL, 50).'.com', FALSE, FALSE]
- ];
- }
- /**
- * Tests Valid::email()
- *
- * Check an email address for correct format.
- *
- * @test
- * @dataProvider provider_email
- * @param string $email Address to check
- * @param boolean $strict Use strict settings
- * @param boolean $correct Is $email address valid?
- */
- public function test_email($email, $strict, $correct)
- {
- $this->assertSame(
- $correct,
- Valid::email($email, $strict)
- );
- }
- /**
- * Returns test data for test_email_domain()
- *
- * @return array
- */
- public function provider_email_domain()
- {
- return [
- ['google.com', TRUE],
- // Don't anybody dare register this...
- ['DAWOMAWIDAIWNDAIWNHDAWIHDAIWHDAIWOHDAIOHDAIWHD.com', FALSE],
- // Empty test
- ['', FALSE],
- [NULL, FALSE],
- [FALSE, FALSE],
- ];
- }
- /**
- * Tests Valid::email_domain()
- *
- * Validate the domain of an email address by checking if the domain has a
- * valid MX record.
- *
- * Test skips on windows
- *
- * @test
- * @dataProvider provider_email_domain
- * @param string $email Email domain to check
- * @param boolean $correct Is it correct?
- */
- public function test_email_domain($email, $correct)
- {
- if ( ! $this->hasInternet())
- {
- $this->markTestSkipped('An internet connection is required for this test');
- }
- $this->assertSame(
- $correct,
- Valid::email_domain($email)
- );
- }
- /**
- * Provides data for test_exact_length()
- *
- * @return array
- */
- public function provider_exact_length()
- {
- return [
- ['somestring', 10, TRUE],
- ['somestring', 11, FALSE],
- ['anotherstring', 13, TRUE],
- // Empty test
- ['', 10, FALSE],
- [NULL, 10, FALSE],
- [FALSE, 10, FALSE],
- // Test array of allowed lengths
- ['somestring', [1, 3, 5, 7, 9, 10], TRUE],
- ['somestring', [1, 3, 5, 7, 9], FALSE],
- ];
- }
- /**
- *
- * Tests Valid::exact_length()
- *
- * Checks that a field is exactly the right length.
- *
- * @test
- * @dataProvider provider_exact_length
- * @param string $string The string to length check
- * @param integer $length The length of the string
- * @param boolean $correct Is $length the actual length of the string?
- * @return bool
- */
- public function test_exact_length($string, $length, $correct)
- {
- return $this->assertSame(
- $correct,
- Valid::exact_length($string, $length),
- 'Reported string length is not correct'
- );
- }
- /**
- * Provides data for test_equals()
- *
- * @return array
- */
- public function provider_equals()
- {
- return [
- ['foo', 'foo', TRUE],
- ['1', '1', TRUE],
- [1, '1', FALSE],
- ['011', 011, FALSE],
- // Empty test
- ['', 123, FALSE],
- [NULL, 123, FALSE],
- [FALSE, 123, FALSE],
- ];
- }
- /**
- * Tests Valid::equals()
- *
- * @test
- * @dataProvider provider_equals
- * @param string $string value to check
- * @param integer $required required value
- * @param boolean $correct is $string the same as $required?
- * @return boolean
- */
- public function test_equals($string, $required, $correct)
- {
- return $this->assertSame(
- $correct,
- Valid::equals($string, $required),
- 'Values are not equal'
- );
- }
- /**
- * DataProvider for the valid::ip() test
- * @return array
- */
- public function provider_ip()
- {
- return [
- ['75.125.175.50', FALSE, TRUE],
- ['127.0.0.1', FALSE, FALSE],
- ['256.257.258.259', FALSE, FALSE],
- ['255.255.255.255', FALSE, FALSE],
- ['192.168.0.1', FALSE, FALSE],
- ['192.168.0.1', TRUE, TRUE],
- // Empty test
- ['', TRUE, FALSE],
- [NULL, TRUE, FALSE],
- [FALSE, TRUE, FALSE],
- ];
- }
- /**
- * Tests Valid::ip()
- *
- * @test
- * @dataProvider provider_ip
- * @param string $input_ip
- * @param boolean $allow_private
- * @param boolean $expected_result
- */
- public function test_ip($input_ip, $allow_private, $expected_result)
- {
- $this->assertEquals(
- $expected_result,
- Valid::ip($input_ip, $allow_private)
- );
- }
- /**
- * Returns test data for test_max_length()
- *
- * @return array
- */
- public function provider_max_length()
- {
- return [
- // Border line
- ['some', 4, TRUE],
- // Exceeds
- ['KO7RULLLES', 2, FALSE],
- // Under
- ['CakeSucks', 10, TRUE],
- // Empty test
- ['', -10, FALSE],
- [NULL, -10, FALSE],
- [FALSE, -10, FALSE],
- ];
- }
- /**
- * Tests Valid::max_length()
- *
- * Checks that a field is short enough.
- *
- * @test
- * @dataProvider provider_max_length
- * @param string $string String to test
- * @param integer $maxlength Max length for this string
- * @param boolean $correct Is $string <= $maxlength
- */
- public function test_max_length($string, $maxlength, $correct)
- {
- $this->assertSame(
- $correct,
- Valid::max_length($string, $maxlength)
- );
- }
- /**
- * Returns test data for test_min_length()
- *
- * @return array
- */
- public function provider_min_length()
- {
- return [
- ['This is obviously long enough', 10, TRUE],
- ['This is not', 101, FALSE],
- ['This is on the borderline', 25, TRUE],
- // Empty test
- ['', 10, FALSE],
- [NULL, 10, FALSE],
- [FALSE, 10, FALSE],
- ];
- }
- /**
- * Tests Valid::min_length()
- *
- * Checks that a field is long enough.
- *
- * @test
- * @dataProvider provider_min_length
- * @param string $string String to compare
- * @param integer $minlength The minimum allowed length
- * @param boolean $correct Is $string 's length >= $minlength
- */
- public function test_min_length($string, $minlength, $correct)
- {
- $this->assertSame(
- $correct,
- Valid::min_length($string, $minlength)
- );
- }
- /**
- * Returns test data for test_not_empty()
- *
- * @return array
- */
- public function provider_not_empty()
- {
- // Create a blank arrayObject
- $ao = new ArrayObject;
- // arrayObject with value
- $ao1 = new ArrayObject;
- $ao1['test'] = 'value';
- return [
- [[], FALSE],
- [NULL, FALSE],
- ['', FALSE],
- [$ao, FALSE],
- [$ao1, TRUE],
- [[NULL], TRUE],
- [0, TRUE],
- ['0', TRUE],
- ['Something', TRUE],
- ];
- }
- /**
- * Tests Valid::not_empty()
- *
- * Checks if a field is not empty.
- *
- * @test
- * @dataProvider provider_not_empty
- * @param mixed $value Value to check
- * @param boolean $empty Is the value really empty?
- */
- public function test_not_empty($value, $empty)
- {
- return $this->assertSame(
- $empty,
- Valid::not_empty($value)
- );
- }
- /**
- * DataProvider for the Valid::numeric() test
- */
- public function provider_numeric()
- {
- return [
- [12345, TRUE],
- [123.45, TRUE],
- ['12345', TRUE],
- ['10.5', TRUE],
- ['-10.5', TRUE],
- ['10.5a', FALSE],
- // @issue 3240
- [.4, TRUE],
- [-.4, TRUE],
- [4., TRUE],
- [-4., TRUE],
- ['.5', TRUE],
- ['-.5', TRUE],
- ['5.', TRUE],
- ['-5.', TRUE],
- ['.', FALSE],
- ['1.2.3', FALSE],
- // Empty test
- ['', FALSE],
- [NULL, FALSE],
- [FALSE, FALSE],
- ];
- }
- /**
- * Tests Valid::numeric()
- *
- * @test
- * @dataProvider provider_numeric
- * @param string $input Input to test
- * @param boolean $expected Whether or not $input is numeric
- */
- public function test_numeric($input, $expected)
- {
- $this->assertSame(
- $expected,
- Valid::numeric($input)
- );
- }
- /**
- * Provides test data for test_phone()
- * @return array
- */
- public function provider_phone()
- {
- return [
- ['0163634840', NULL, TRUE],
- ['+27173634840', NULL, TRUE],
- ['123578', NULL, FALSE],
- // Some uk numbers
- ['01234456778', NULL, TRUE],
- ['+0441234456778', NULL, FALSE],
- // Google UK case you're interested
- ['+44 20-7031-2017', [12], TRUE],
- // BT Corporate
- ['020 7356 5000', NULL, TRUE],
- // Empty test
- ['', NULL, FALSE],
- [NULL, NULL, FALSE],
- [FALSE, NULL, FALSE],
- ];
- }
- /**
- * Tests Valid::phone()
- *
- * @test
- * @dataProvider provider_phone
- * @param string $phone Phone number to test
- * @param boolean $expected Is $phone valid
- */
- public function test_phone($phone, $lengths, $expected)
- {
- $this->assertSame(
- $expected,
- Valid::phone($phone, $lengths)
- );
- }
- /**
- * DataProvider for the valid::regex() test
- */
- public function provider_regex()
- {
- return [
- ['hello world', '/[a-zA-Z\s]++/', TRUE],
- ['123456789', '/[0-9]++/', TRUE],
- ['£$%£%', '/[abc]/', FALSE],
- ['Good evening', '/hello/', FALSE],
- // Empty test
- ['', '/hello/', FALSE],
- [NULL, '/hello/', FALSE],
- [FALSE, '/hello/', FALSE],
- ];
- }
- /**
- * Tests Valid::range()
- *
- * Tests if a number is within a range.
- *
- * @test
- * @dataProvider provider_regex
- * @param string $value Value to test against
- * @param string $regex Valid pcre regular expression
- * @param bool $expected Does the value match the expression?
- */
- public function test_regex($value, $regex, $expected)
- {
- $this->AssertSame(
- $expected,
- Valid::regex($value, $regex)
- );
- }
- /**
- * DataProvider for the valid::range() test
- */
- public function provider_range()
- {
- return [
- [1, 0, 2, NULL, TRUE],
- [-1, -5, 0, NULL, TRUE],
- [-1, 0, 1, NULL, FALSE],
- [1, 0, 0, NULL, FALSE],
- [2147483647, 0, 200000000000000, NULL, TRUE],
- [-2147483647, -2147483655, 2147483645, NULL, TRUE],
- // #4043
- [2, 0, 10, 2, TRUE],
- [3, 0, 10, 2, FALSE],
- // #4672
- [0, 0, 10, NULL, TRUE],
- [10, 0, 10, NULL, TRUE],
- [-10, -10, 10, NULL, TRUE],
- [-10, -1, 1, NULL, FALSE],
- [0, 0, 10, 2, TRUE], // with $step
- [10, 0, 10, 2, TRUE],
- [10, 0, 10, 3, FALSE], // max outside $step
- [12, 0, 12, 3, TRUE],
- // Empty test
- ['', 5, 10, NULL, FALSE],
- [NULL, 5, 10, NULL, FALSE],
- [FALSE, 5, 10, NULL, FALSE],
- ];
- }
- /**
- * Tests Valid::range()
- *
- * Tests if a number is within a range.
- *
- * @test
- * @dataProvider provider_range
- * @param integer $number Number to test
- * @param integer $min Lower bound
- * @param integer $max Upper bound
- * @param boolean $expected Is Number within the bounds of $min && $max
- */
- public function test_range($number, $min, $max, $step, $expected)
- {
- $this->AssertSame(
- $expected,
- Valid::range($number, $min, $max, $step)
- );
- }
- /**
- * Provides test data for test_url()
- *
- * @return array
- */
- public function provider_url()
- {
- $data = [
- ['http://google.com', TRUE],
- ['http://google.com/', TRUE],
- ['http://google.com/?q=abc', TRUE],
- ['http://google.com/#hash', TRUE],
- ['http://localhost', TRUE],
- ['http://hello-world.pl', TRUE],
- ['http://hello--world.pl', TRUE],
- ['http://h.e.l.l.0.pl', TRUE],
- ['http://server.tld/get/info', TRUE],
- ['http://127.0.0.1', TRUE],
- ['http://127.0.0.1:80', TRUE],
- ['http://user@127.0.0.1', TRUE],
- ['http://user:pass@127.0.0.1', TRUE],
- ['ftp://my.server.com', TRUE],
- ['rss+xml://rss.example.com', TRUE],
- ['http://google.2com', FALSE],
- ['http://google.com?q=abc', FALSE],
- ['http://google.com#hash', FALSE],
- ['http://hello-.pl', FALSE],
- ['http://hel.-lo.world.pl', FALSE],
- ['http://ww£.google.com', FALSE],
- ['http://127.0.0.1234', FALSE],
- ['http://127.0.0.1.1', FALSE],
- ['http://user:@127.0.0.1', FALSE],
- ["http://finalnewline.com\n", FALSE],
- // Empty test
- ['', FALSE],
- [NULL, FALSE],
- [FALSE, FALSE],
- ];
- $data[] = ['http://'.str_repeat('123456789.', 25).'com/', TRUE]; // 253 chars
- $data[] = ['http://'.str_repeat('123456789.', 25).'info/', FALSE]; // 254 chars
- return $data;
- }
- /**
- * Tests Valid::url()
- *
- * @test
- * @dataProvider provider_url
- * @param string $url The url to test
- * @param boolean $expected Is it valid?
- */
- public function test_url($url, $expected)
- {
- $this->assertSame(
- $expected,
- Valid::url($url)
- );
- }
- /**
- * DataProvider for the valid::matches() test
- */
- public function provider_matches()
- {
- return [
- [['a' => 'hello', 'b' => 'hello'], 'a', 'b', TRUE],
- [['a' => 'hello', 'b' => 'hello '], 'a', 'b', FALSE],
- [['a' => '1', 'b' => 1], 'a', 'b', FALSE],
- // Empty test
- [['a' => '', 'b' => 'hello'], 'a', 'b', FALSE],
- [['a' => NULL, 'b' => 'hello'], 'a', 'b', FALSE],
- [['a' => FALSE, 'b' => 'hello'], 'a', 'b', FALSE],
- ];
- }
- /**
- * Tests Valid::matches()
- *
- * Tests if a field matches another from an array of data
- *
- * @test
- * @dataProvider provider_matches
- * @param array $data Array of fields
- * @param integer $field First field name
- * @param integer $match Field name that must match $field in $data
- * @param boolean $expected Do the two fields match?
- */
- public function test_matches($data, $field, $match, $expected)
- {
- $this->AssertSame(
- $expected,
- Valid::matches($data, $field, $match)
- );
- }
- /**
- * Returns test data for test_type()
- *
- * @return array
- */
- public function provider_type()
- {
- return [
- ['check me', ['string'], TRUE],
- [1, ['string'], FALSE],
- [NULL, ['string', 'null'], TRUE],
- [FALSE, ['bool'], TRUE],
- ['FALSE', ['bool'], FALSE],
- ['2', ['int', 'numeric'], TRUE],
- [new ArrayObject(), ['countable'], TRUE],
- ];
- }
- /**
- * Tests Valid::type()
- *
- * Checks type of field value.
- *
- * @test
- * @dataProvider provider_type
- * @param mixed $value Field value.
- * @param string[] $types Valid value types.
- * @param bool $correct Is $value in $types.
- */
- public function test_type($value, $types, $correct)
- {
- $this->assertSame(
- $correct,
- Valid::type($value, ...$types)
- );
- }
- /**
- * Returns test data for test_more()
- *
- * @return array
- */
- public function provider_more()
- {
- return [
- [1, 2, FALSE],
- [2, 1, TRUE],
- [2, 1.9, TRUE],
- [2.1, 3, FALSE],
- [3.2, 3.3, FALSE],
- [3, 3, FALSE],
- [3.1, 3.1, FALSE],
- ];
- }
- /**
- * Tests Valid::more()
- *
- * Tests if a field value more than minimum.
- *
- * @test
- * @dataProvider provider_more
- * @param float|int $value Field value.
- * @param float|int $min Minimum value.
- * @param bool $correct Is $value more than $min.
- */
- public function test_more($value, $min, $correct)
- {
- $this->assertSame(
- $correct,
- Valid::more($value, $min)
- );
- }
- /**
- * Returns test data for test_more_or_equal()
- *
- * @return array
- */
- public function provider_more_or_equal()
- {
- return [
- [1, 2, FALSE],
- [2, 1, TRUE],
- [2, 1.9, TRUE],
- [2.1, 3, FALSE],
- [3.2, 3.3, FALSE],
- [3, 3, TRUE],
- [3.1, 3.1, TRUE],
- ];
- }
- /**
- * Tests Valid::more_or_equal()
- *
- * Tests if a field value more or equal than minimum.
- *
- * @test
- * @dataProvider provider_more_or_equal
- * @param float|int $value Field value.
- * @param float|int $min Minimum value.
- * @param bool $correct Is $value more than $min.
- */
- public function test_more_or_equal($value, $min, $correct)
- {
- $this->assertSame(
- $correct,
- Valid::more_or_equal($value, $min)
- );
- }
- }
|