summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/core
AgeCommit message (Collapse)AuthorFilesLines
2022-01-05Update logging testsAndrey Andreev1-6/+6
2022-01-05Fix broken tests in developAndrey Andreev2-9/+1
2022-01-05Merge branch '3.1-stable' into developAndrey Andreev4-7/+18
2022-01-05Bye Travis, Hello GH ActionsAndrey Andreev3-7/+10
2021-12-20Merge pull request #6074 from philsturgeon/ci3-php8Andrey Andreev3-17/+28
CodeIgniter 3.0 on PHP 8
2021-11-17chore: update to phpunit 9Phil Sturgeon1-1/+1
2021-10-04whoops :)George Petculescu1-1/+1
2021-10-04Adds PHP 8 in TravisGeorge Petculescu3-17/+28
2021-09-14Merge pull request #6045 from gxgpet/develop_fixtravisAndrey Andreev1-1/+9
Fixes Travis pipeline. Adding PHPUnit 8.
2021-05-31other test fixesGeorge Petculescu1-3/+11
2020-01-25inserted required attribute in html tags in documentationFrancisco Javier Llanquipichun Garcia1-1/+1
Signed-off-by: Francisco Javier Llanquipichun Garcia <francisco.llanquipichun@gmail.com>
2019-05-10Merge pull request #5744 from sharadrsoni/patch-1Andrey Andreev1-1/+1
Adding support for proper CRLF
2019-04-24Update Log_test.phpSharad Soni1-1/+1
Removed extra space, before and after concatenation.
2019-04-23Update Log_test.phpSharad Soni1-1/+1
Changed to use PHP_EOL instead of `/r/n`
2019-04-23Updated test case for Log ClassSharad Soni1-1/+1
Also added `\r\n` to pass the test case
2018-06-22Adding unit test.tianhe19861-0/+34
Signed-off-by: tianhe1986 <w1s2j3229@163.com>
2018-05-18http:// to https://Mehdi Bounya1-2/+2
2017-12-20Merge pull request #5354 from carusogabriel/refactoring-testsAndrey Andreev7-15/+15
Refactoring tests Conflicts resolved: tests/codeigniter/core/Utf8_test.php tests/codeigniter/database/query_builder/group_test.php tests/codeigniter/libraries/Form_validation_test.php
2017-12-20Refactoring testsGabriel Caruso7-14/+14
2017-09-25Merge branch '3.1-stable' into developAndrey Andreev1-1/+1
2017-06-28#5164 fix for stock librariesAndrey Andreev1-1/+1
2017-06-21Add unit test.tianhe19861-1/+20
Signed-off-by: tianhe1986 <w1s2j3229@163.com>
2017-01-10Merge branch '3.1-stable' into developAndrey Andreev2-2/+9
Conflicts resolved: system/core/CodeIgniter.php system/database/drivers/sqlite/sqlite_driver.php system/database/drivers/sqlite/sqlite_forge.php system/database/drivers/sqlite/sqlite_result.php system/database/drivers/sqlite/sqlite_utility.php system/helpers/email_helper.php system/helpers/smiley_helper.php system/libraries/Cart.php system/libraries/Email.php system/libraries/Image_lib.php system/libraries/Javascript.php system/libraries/Javascript/Jquery.php system/libraries/Session/SessionHandlerInterface.php user_guide_src/source/changelog.rst user_guide_src/source/installation/downloads.rst user_guide_src/source/installation/upgrading.rst
2017-01-10Add a testcase and changelog entry for #4975Andrey Andreev1-2/+4
2017-01-04Fix an XSS vulnerabilityAndrey Andreev1-0/+5
2016-12-14Move csrf_verify() call out of CI_InputAndrey Andreev2-20/+25
2016-12-14Isolate CI_Security instantiation from CI_Input; improve testsAndrey Andreev3-30/+36
2016-12-14Drop all PHP 5.3-related codeAndrey Andreev1-32/+0
2016-12-01Remove tests broken by the func removals from last few commitsAndrey Andreev1-8/+1
2016-09-27Fix entity_decode() issueAndrey Andreev1-0/+6
2016-08-10Use getMockBuilder() in PHPUnit instead of the deprecated getMock()Andrey Andreev1-2/+2
2016-07-28Remove dead code written for PHP 5.2Andrey Andreev3-217/+0
2016-07-25Merge pull request #4725 from tianhe1986/develop_url_encode_case_insensitiveAndrey Andreev1-0/+12
Fix remove_invisible_characters() for URL-encoded characters in upper case
2016-07-19Fix #4679Andrey Andreev1-0/+6
2016-04-28Fix #4605Andrey Andreev1-0/+2
2016-03-07Fix #4475Andrey Andreev1-2/+4
2016-02-11Skip CI_Log tests on PHP 5.2Andrey Andreev1-1/+10
We still run those (with failures enabled) and that test breaks them
2016-02-09[ci skip] WhitespaceAndrey Andreev1-1/+1
2016-02-09Add CI_Log test casesAndrey Andreev1-0/+64
2015-11-09Merge pull request #4225 from zhanghongyi/loader-testAndrey Andreev1-4/+25
Improve Loader test cases for libraries
2015-10-31Prevent Host header injectionsAndrey Andreev1-30/+17
2015-10-31Harden xss_clean()Andrey Andreev1-15/+20
2015-10-30Fix #3201Andrey Andreev1-0/+5
2015-10-05Some more intrusive XSS cleaningAndrey Andreev1-2/+7
2015-10-02More XSS stuffAndrey Andreev1-1/+6
2015-09-28Merge pull request #4125 from jim-parry/fix/lang_testAndrey Andreev1-5/+17
Improve CI_Lang tests
2015-09-21More XSS stuffAndrey Andreev1-0/+16
2015-09-17Don't allow open-ended tags to pass through xss_clean()Andrey Andreev1-0/+1
This was a regression caused by the previous commit
2015-09-17Refactor 'evil attributes' sanitization logicAndrey Andreev1-23/+34
Turned out pretty much impossible to do remove 'evil attributes' with just one pattern - it either breaks something else, hits pcre.backtrack_limit or causes PHP to segfault. No benchmarks made, but there shouldn't be any performance regressions since we're now trying to strip attributes only after it is determined that they are inside a tag; up until now this was done seprately for _sanitize_naughty_html() and _remove_evil_attributes().
2015-09-14Another addition to tag detection patterns in xss_clean()Andrey Andreev1-0/+5