uawdijnntqw1x1x1
IP : 216.73.217.77
Hostname : panel.codeskitter.com
Kernel : Linux panel.codeskitter.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
Disable Function : apache_child_terminate, apache_note, apache_setenv, define_syslog_variables, dl, link, opcache_get_status, openlog, pcntl_exec, pcntl_fork, pcntl_setpriority, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid
OS : Linux
PATH:
/
home
/
users
/
unlimited
/
www
/
ultimate-ai.codeskitter.site
/
tests
/
..
/
tests
/
Unit
/
Rules
/
DomainRuleTest.php
/
/
<?php declare(strict_types=1); use App\Rules\DomainRule; use Illuminate\Support\Facades\Validator; test('passes', function ($domain) { $validator = Validator::make(['domain' => $domain], ['domain' => new DomainRule]); $this->assertTrue($validator->passes()); })->with([ 'foo.com', 'foo.com.tr', 'foo.bar.com', 'foo.bar.com.tr', 'www.foo.com', 'foo123.com', 'foo-bar.com', 'foo-bar-123.com', 'www.foo-bar.com', '123.com', 'www.123.org', ]); test('failures', function ($domain) { $validator = Validator::make(['domain' => $domain], ['domain' => new DomainRule]); $this->assertFalse($validator->passes()); })->with([ 'bar', '-bar.com', '-.-.com', 'bar.-', 'foo.com/bar', 'foo.bar.com/bar.html', 'foo.a', 'foo.bar-', 'https://foo.com', 'https://foo.com-', 'https://www.foo.com', ]);
/home/users/unlimited/www/ultimate-ai.codeskitter.site/tests/../tests/Unit/Rules/DomainRuleTest.php