Server : nginx/1.20.1 System : Linux iZ2ze9ojcl78uluczwag69Z 4.18.0-240.22.1.el8_3.x86_64 #1 SMP Thu Apr 8 19:01:30 UTC 2021 x86_64 User : www ( 1000) PHP Version : 7.3.28 Disable Function : passthru,exec,system,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv Directory : /www/wwwroot/0531yanglao.com/vendor/topthink/think-helper/tests/ |
<?php namespace Tests; use think\helper\Str; class StrTest extends TestCase { public function testCamel() { $this->assertSame('fooBar', Str::camel('FooBar')); $this->assertSame('fooBar', Str::camel('FooBar')); $this->assertSame('fooBar', Str::camel('foo_bar')); $this->assertSame('fooBar', Str::camel('_foo_bar')); $this->assertSame('fooBar', Str::camel('_foo_bar_')); } public function testStudly() { $this->assertSame('FooBar', Str::studly('fooBar')); $this->assertSame('FooBar', Str::studly('_foo_bar')); $this->assertSame('FooBar', Str::studly('_foo_bar_')); $this->assertSame('FooBar', Str::studly('_foo_bar_')); } public function testSnake() { $this->assertSame('think_p_h_p_framework', Str::snake('ThinkPHPFramework')); $this->assertSame('think_php_framework', Str::snake('ThinkPhpFramework')); $this->assertSame('think php framework', Str::snake('ThinkPhpFramework', ' ')); $this->assertSame('think_php_framework', Str::snake('Think Php Framework')); $this->assertSame('think_php_framework', Str::snake('Think Php Framework ')); // ensure cache keys don't overlap $this->assertSame('think__php__framework', Str::snake('ThinkPhpFramework', '__')); $this->assertSame('think_php_framework_', Str::snake('ThinkPhpFramework_', '_')); $this->assertSame('think_php_framework', Str::snake('think php Framework')); $this->assertSame('think_php_frame_work', Str::snake('think php FrameWork')); // prevent breaking changes $this->assertSame('foo-bar', Str::snake('foo-bar')); $this->assertSame('foo-_bar', Str::snake('Foo-Bar')); $this->assertSame('foo__bar', Str::snake('Foo_Bar')); $this->assertSame('żółtałódka', Str::snake('ŻółtaŁódka')); } public function testTitle() { $this->assertSame('Welcome Back', Str::title('welcome back')); } public function testRandom() { $this->assertIsString(Str::random(10)); } public function testUpper() { $this->assertSame('USERNAME', Str::upper('username')); $this->assertSame('USERNAME', Str::upper('userNaMe')); } }