Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-03-26 | Polish changes from PR #3678 | Andrey Andreev | 1 | -91/+63 | |
... and make it run on 5.2. | |||||
2015-03-22 | Corrected invalid matches, differs, and set_data test cases | David Woods | 1 | -34/+61 | |
Signed-off-by: David Woods <d.woods92@gmail.com> | |||||
2015-03-21 | Changed scenario based tests to unit tests | David Woods | 1 | -148/+175 | |
Added tests for set_data() & set_message() Signed-off-by: David Woods <d.woods92@gmail.com> | |||||
2015-03-18 | Switched spaces to tabs on the few lines that were missed from previous ↵ | David Woods | 1 | -7/+7 | |
refactors Signed-off-by: David Woods <d.woods92@gmail.com> | |||||
2015-03-18 | Fixed bug of clearing POST array before every test. | David Woods | 1 | -12/+14 | |
Signed-off-by: David Woods <d.woods92@gmail.com> | |||||
2015-03-18 | Corrected incorrect assertion in test_rule_valid_base64 | David Woods | 1 | -1/+1 | |
Signed-off-by: David Woods <d.woods92@gmail.com> | |||||
2015-03-18 | Corrected match, differs, base64, and valid_url test cases. | David Woods | 1 | -307/+310 | |
Also changed spaces to tabs Signed-off-by: David Woods <d.woods92@gmail.com> | |||||
2015-03-17 | Corrected an invalid test case | David Woods | 1 | -2/+2 | |
Signed-off-by: David Woods <d.woods92@gmail.com> | |||||
2015-03-17 | Reformatted unit tests for easier debugging | David Woods | 1 | -114/+265 | |
Signed-off-by: David Woods <d.woods92@gmail.com> | |||||
2015-03-17 | Fixed bugs in form_validation for methods matches, differs, and valid_base64. | David Woods | 1 | -4/+132 | |
Implemented tests for valid and invalid inputs for all basic rules available for form_validation. The invalid input data currently doesn't pass all tests. Signed-off-by: David Woods <d.woods92@gmail.com> | |||||
2015-03-17 | Created setup and construct for Form_Validation unit test | David Woods | 1 | -0/+35 | |
Signed-off-by: David Woods <d.woods92@gmail.com> | |||||
2014-11-11 | Fix merge conflicts | Andrey Andreev | 1 | -3/+4 | |
2014-11-07 | Fix #3317 ... MCrypt sucks | Andrey Andreev | 1 | -3/+4 | |
2014-10-05 | Merge branch 'develop' into feature/session | Andrey Andreev | 2 | -34/+9 | |
2014-08-14 | Skip CI_Encrypt tests if MCrypt is not available | Andrey Andreev | 1 | -26/+8 | |
Rel: #3185 | |||||
2014-06-19 | Remove the custom IV option from CI_Encryption | Andrey Andreev | 1 | -8/+1 | |
It serves for no practical purpose and can only do harm. | |||||
2014-06-02 | Disable session tests | Andrey Andreev | 1 | -0/+14 | |
2014-05-01 | PHPUnit, what's wrong with you? | Andrey Andreev | 1 | -2/+0 | |
2014-03-04 | CI_Encryption: Remove MCrypt 'work-arounds' for CAST-128 compatibility | Andrey Andreev | 1 | -12/+4 | |
Turns out it's OpenSSL's fault for performing 16 rounds instead of 12 for key sizes of 5-11 bytes. Reference: http://tools.ietf.org/rfc/rfc2144.txt | |||||
2014-02-21 | Add test cases for CI_Upload::__construct(), CI_Upload::initialize() | Andrey Andreev | 1 | -3/+44 | |
2014-02-21 | CI_Upload changes | Andrey Andreev | 1 | -6/+0 | |
- Method chaining support. - A more abstract resetting of the default settings. - Added an option to initialize() to disable resetting to default settings. - Removed method mimes_types() and slightly optimized chunks of code where it was used. - Added the ability to pass allowed_types as an array. | |||||
2014-02-20 | Remove a few empty 'mock' classes | Andrey Andreev | 4 | -4/+4 | |
2014-02-20 | Fix CI_Calendar tests | Andrey Andreev | 2 | -7/+27 | |
2014-02-13 | [ci skip] Test fixes | Andrey Andreev | 2 | -5/+10 | |
2014-02-11 | Some other small writing consistency fixes | darwinel | 1 | -1/+1 | |
As described in the Style guide. Found after some grep’ing. | |||||
2014-02-11 | A bug fix and optimizations in CI_Table | Andrey Andreev | 1 | -20/+27 | |
2014-02-10 | CI_Encryption: Rename 'base64' parameter to 'raw_data' and add docs | Andrey Andreev | 1 | -4/+6 | |
2014-02-09 | Merge branch 'develop' into 'feature/encryption' | Andrey Andreev | 1 | -1/+1 | |
2014-02-08 | Small Style fix | darwinel | 1 | -1/+1 | |
General Style and Syntax | |||||
2014-02-07 | CI_Encryption: Optimizations and test cases | Andrey Andreev | 1 | -66/+267 | |
2014-02-06 | CI_Encryption: CAST-128/CAST5 and RC4/ARCFour compatibility | Andrey Andreev | 1 | -0/+23 | |
2014-02-05 | CI_Encryption: HMAC to not be derived from the encryption key | Andrey Andreev | 1 | -4/+6 | |
2014-02-05 | CI_Encryption: More MCrypt/OpenSSL compatibility and get rid of the ↵ | Andrey Andreev | 1 | -13/+46 | |
MCRYPT_MODE_* constants | |||||
2014-02-05 | CI_Encryption: Add Blowfish to compatibility list | Andrey Andreev | 1 | -5/+3 | |
2014-02-04 | CI_Encryption: Fix more errors and add a 'portability' test case | Andrey Andreev | 1 | -1/+50 | |
2014-02-04 | CI_Encryption: Fix some errors and add unit tests for hkdf() | Andrey Andreev | 1 | -0/+81 | |
2014-01-24 | Righting a wrong in the Session library | Andrey Andreev | 1 | -10/+10 | |
- Change userdata(), flashdata(), tempdata() to return all the respective data when no parameter is passed. - Revert the addition of all_flashdata(). - Deprecate all_userdata(). - Fix related changelog entries that were all inconsistent. | |||||
2014-01-17 | Minor changes related to CI_User_agent | Andrey Andreev | 2 | -19/+52 | |
Fixed a bug where both accept_charset() and accept_lang() improperly parsed headers if they contained spaces between data separators (which is valid). Also made is_referral() testable by replacing its static cache var with a class property and added some more unit tests for the library as a whole. | |||||
2014-01-09 | Update Calendar library test following PR #2802 | Andrey Andreev | 1 | -15/+18 | |
2014-01-06 | Fix #2237: Parser library failed if the same tag pair is used more than once ↵ | Andrey Andreev | 1 | -2/+2 | |
within a template (manually applying PR #2238 + updated unit tests) | |||||
2013-01-30 | Remove tests for now non-existent method CI_Upload::clean_file_name() | Andrey Andreev | 1 | -6/+0 | |
See 7e5597782a589e4171ca08abdd9ce1a185542ff4 | |||||
2012-12-03 | [ci skip] Cleaned some spaces | Andrey Andreev | 3 | -3/+5 | |
2012-11-30 | Merge pull request #2043 from johnathancroom/keep_flash_data_array | Andrey Andreev | 1 | -0/+50 | |
Test for keep_flashdata accepting an array | |||||
2012-11-30 | keep_flashdata array test | Johnathan Croom | 1 | -1/+51 | |
2012-11-25 | Revert some of the changes from PR #2029 | Andrey Andreev | 1 | -1/+1 | |
We have file naming conventions and any extension filename needs to match MY_<orig_filename>, so we don't need to check for lowercase equivalents. | |||||
2012-11-25 | Merge pull request #2029 from dchill42/driver_ext | Andrey Andreev | 2 | -51/+199 | |
Added driver extension support | |||||
2012-11-25 | Replaced Mock_Core_Lang with PHPUnit mockups | dchill42 | 2 | -9/+7 | |
Signed-off-by: dchill42 <dchill42@gmail.com> | |||||
2012-11-25 | Added support for extending individual driver classes and driver unit tests | dchill42 | 2 | -51/+199 | |
Signed-off-by: dchill42 <dchill42@gmail.com> | |||||
2012-10-24 | Fix #1922 | Andrey Andreev | 1 | -0/+25 | |
2012-10-21 | Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into ↵ | dchill42 | 1 | -5/+5 | |
load_config_units |