Koji Tanaka
fd5f39df07
test: Fixed CakeNumberTest::testCurrencyFractionSymbol()
...
Change in behavior of == comparison operators in PHP 8.0 has revealed a bug in the test code.
see: https://www.php.net/manual/en/migration80.incompatible.php#migration80.incompatible.core.string-number-comparision
Co-authored-by: Kenshin Okinaka <okinakak@yahoo.co.jp>
2023-01-11 22:45:29 +01:00
Koji Tanaka
c82693b920
test: Fixed DebuggerTest
...
Some tests relied on output format settings in other tests.
2023-01-11 22:45:29 +01:00
Koji Tanaka
d47407353b
test: Update DebuggerTest for PHP 8.0+
2023-01-11 22:45:29 +01:00
Koji Tanaka
1d6fd78d45
test: Fix ConnectionManagerTest::testSourceList().
...
Co-authored-by: Kenshin Okinaka <okinakak@yahoo.co.jp>
2023-01-11 22:45:29 +01:00
Koji Tanaka
bab8a84436
test: Improved MemcachedEngineTest/MemcacheEngineTest.
2023-01-11 22:45:29 +01:00
Koji Tanaka
d7d7230929
test: Fix CakeEmailTest::testResetWithCharset()
...
Co-authored-by: Kenshin Okinaka <okinakak@yahoo.co.jp>
2023-01-11 22:45:29 +01:00
Koji Tanaka
7c55817dbc
test: Change TLS version used in testEnableCryptoTlsV11().
...
Co-authored-by: Kenshin Okinaka <okinakak@yahoo.co.jp>
2023-01-11 22:45:29 +01:00
Koji Tanaka
d69a09b972
test: Fix error "Error : Unknown named parameter $some" in CakeEventManagerTest
2023-01-11 22:45:29 +01:00
Koji Tanaka
e0101949e4
test: Fix for MysqlTest, a new test error in PHP 8.0
...
Co-authored-by: Kenshin Okinaka <okinakak@yahoo.co.jp>
2023-01-11 22:45:29 +01:00
Koji Tanaka
40d5f32516
test: Fix assertion of SecurityComponentTest::testCsrfNonceVacuum()
2023-01-11 22:45:29 +01:00
Koji Tanaka
7e4adb37e5
test: Replace deprecated assertion methods that access non-public properties with methods that use reflection.
...
Co-authored-by: Kenshin Okinaka <okinakak@yahoo.co.jp>
2023-01-11 22:45:29 +01:00
Koji Tanaka
b5e7d582d9
test: Replace deprecated assertInternalType()
...
Co-authored-by: Kenshin Okinaka <okinakak@yahoo.co.jp>
2023-01-11 22:45:29 +01:00
Koji Tanaka
a5f6b6c8ee
test: Attempting to read an undefined variable causes a Warning error (PHP 8.0+)
...
see: https://www.php.net/manual/en/migration80.incompatible.php
2023-01-11 22:45:29 +01:00
Koji Tanaka
76d1673958
test: Allow ErrorHandlerTest to run even if CakeLog configs (stdout and stderr) are not configured.
...
When ErrorHandlerTest is run with CakeTestRunner (TestShell) (or run with ShellTest, etc.), these configs are provided in the initialization process of the Shell class, but are not needed in many test cases.
2023-01-11 22:45:29 +01:00
Koji Tanaka
b46b6c758f
test: Replace deprecated attributeEqualTo()
2023-01-11 22:45:29 +01:00
Koji Tanaka
b1138db8f4
test: phpunit command does not use TestShell, HtmlCoverageReport. So skip test.
2023-01-11 22:45:29 +01:00
Koji Tanaka
2a7c06e16f
test: Replace PHPUnit's class name in tests
...
Co-authored-by: Kenshin Okinaka <okinakak@yahoo.co.jp>
2023-01-11 22:45:29 +01:00
Koji Tanaka
75437a4a85
test: Replace deprecated setExpectedException()
2023-01-11 22:45:29 +01:00
Koji Tanaka
b1417587ad
test: Replace deprecated @expectedException* to $this->expectException*()
2023-01-11 22:45:29 +01:00
Koji Tanaka
fe34a8551c
test: Replace deprecated @expectedException PHPUnit_Framework_Error
2023-01-11 22:45:29 +01:00
Koji Tanaka
c04692f76c
test: Replace deprecated @expectedException* to expectWarning*()/expectNotice*()
2023-01-11 22:45:29 +01:00
Koji Tanaka
eaefdbb977
test: Replace assertNotContains() with assertStringNotContainsString() for text assertion.
...
assertNotContains() can no longer be used for text containment assertion.
2023-01-11 22:45:29 +01:00
Koji Tanaka
dfc1c56625
test: Replace assertContains() with assertStringContainsString() for text assertion.
...
assertContains() can no longer be used for text containment assertion.
2023-01-11 22:45:29 +01:00
Koji Tanaka
6529d5a308
test: Replace deprecated assertNotRegExp() with assertDoesNotMatchRegularExpression().
...
Co-authored-by: Kenshin Okinaka <okinakak@yahoo.co.jp>
2023-01-11 22:45:29 +01:00
Koji Tanaka
883ce8041e
test: Replace deprecated assertRegExp() with assertMatchesRegularExpression().
...
Co-authored-by: Kenshin Okinaka <okinakak@yahoo.co.jp>
2023-01-11 22:45:29 +01:00
Koji Tanaka
c194e9b63e
test: Not using CakeHtmlReporter, because it is not compatible with PHPUnit 9.
2023-01-11 22:45:29 +01:00
Koji Tanaka
927b57fa14
test: Add App::uses() missing in the test code.
2023-01-11 22:45:29 +01:00
Koji Tanaka
831bfe9315
test: In ConfigureTest::testBootstrap(), set error handler, so add cleanup.
...
This is because PHPUnit error handlers cannot catch PHP errors in tests that run after DebuggerTest if they expect them to occur and break the test process.
2023-01-11 22:45:29 +01:00
Koji Tanaka
b1229c9107
test: Removed pre-checking of tests that were skipped in the PHPUnit version since the minimum version is now 9.5.
2023-01-11 22:45:29 +01:00
Koji Tanaka
a95654de88
clean: Stop overriding TestCase::run().
...
Overriding the run method to perform fixture management processing is no longer necessary since moved it to CakeFixtureInjector.
Co-authored-by: Kenshin Okinaka <okinakak@yahoo.co.jp>
2023-01-11 22:45:29 +01:00
Koji Tanaka
75716f76bc
test: Add return type declarations to overridden methods of TestCase classes.
2023-01-11 22:45:29 +01:00
Koji Tanaka
0692ce5b62
test: Updated TestSuite class for PHPUnit 9.5
2023-01-11 22:45:29 +01:00
José Muñoz
3719cce178
runCommand $command as string
...
Sets typehint for runCommand argument as string.
Fixes original default behavior to send string $command rather than null.
2022-01-16 07:47:57 -07:00
Mark Story
f89e145917
Fix lint error.
2020-11-27 10:31:33 -05:00
Mark Story
63d708118a
Fix incorrect URL generation
...
When a fullBaseURL is being used we should check for the exact base
string being a prefix and not just the string length as it could be full
of garbage.
Fixes #15163
2020-11-19 22:47:52 -05:00
Edgaras Janušauskas
49bbc21e1d
Fix failures on PHP 7.4. Run phpcs on PHP 7.0
2019-12-05 15:11:35 +02:00
Mark van Driel
d4c351563e
Test to prove issue with empty body for json
2019-08-19 14:52:46 +02:00
Koji Tanaka
cf39119151
In PHP 7.3+, call the built-in function mb_strtoupper() to skip failed tests
2019-04-28 21:00:45 +09:00
Mark Story
3d216935c9
Merge pull request #13054 from savedario/2.x
...
FormHelper does not respect passed 'escape' option for errors
2019-03-30 21:38:41 -04:00
bancer
4db38f26ca
Improve unit test
2019-03-18 12:43:26 +01:00
bancer
ec3abd9089
Add extra test to AllControllerTest
2019-03-18 11:58:42 +01:00
bancer
2fe0af9fa9
Improve docs
2019-03-18 11:52:35 +01:00
bancer
534d9362e4
Add extra unit tests
2019-03-18 11:50:13 +01:00
Dario Savella
cf5577234f
PHPCS typos fixed
2019-03-15 18:50:26 +01:00
Dario Savella
08d11154a7
Changes reverted. Added 2 tests of error-related options
2019-03-15 17:41:29 +01:00
bancer
e845e8876d
Add unit test
2019-01-25 13:04:41 +01:00
bancer
009d69b3f7
Fix code style errors
2019-01-25 12:21:34 +01:00
bancer
044e8f24af
Fix timezone conversion
2019-01-25 12:05:44 +01:00
bancer
7911bb9052
Remove unnecessary timezone offset manipulation
2019-01-24 15:43:11 +01:00
Val Bancer
c269ae29e6
Add timezone conversion unit test
2019-01-20 21:54:41 +01:00