aboutsummaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'develop-olympus' into developAndreas Fischer2012-07-301-4/+2
|\ | | | | | | | | * develop-olympus: [ticket/11034] Re-arranged install order to emulate real install
| * [ticket/11034] Re-arranged install order to emulate real installFyorl2012-07-301-4/+2
| | | | | | | | PHPBB3-11034
| * Merge branch 'prep-release-3.0.11' into develop-olympusNils Adermann2012-07-221-0/+12
| |\ | | | | | | | | | | | | * prep-release-3.0.11: [ticket/10667] Fix tests under MySQL 5.5 strict mode (once again)
| | * [ticket/10667] Fix tests under MySQL 5.5 strict mode (once again)Igor Wiedler2012-07-221-0/+12
| | | | | | | | | | | | PHPBB3-10667
* | | [ticket/10667] Fix tests under MySQL 5.5 strict mode (once again)Igor Wiedler2012-07-211-0/+12
| | | | | | | | | | | | PHPBB3-10667
* | | [ticket/11012] Fix php_ext change in mock_extension_managerIgor Wiedler2012-07-211-1/+1
| | | | | | | | | | | | PHPBB3-11012
* | | Merge branch 'develop-olympus' into developNils Adermann2012-07-212-0/+305
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10950] Fix grammar in comments [ticket/10950] Delete PMs for users that have not yet read the pm [ticket/10950] Fix unit tests to fit the new pm deleting behaviour [ticket/10950] Update undelivered pm counts in batches not 1 by 1 for each user [ticket/10950] Remove deleted entries in tests instead of commenting them out [ticket/10950] Use database count() and group by instead of doing that in php [ticket/10950] Check $delete_ids to be not empty [ticket/10950] Recreated the behaviour of phpbb_delete_user_pms() [ticket/10950] Fix unit tests to reflect desired behaviour [ticket/10950] Add some first and simple unit tests for phpbb_delete_user_pms() [ticket/10950] Correct comment for the second query. [ticket/10950] Add empty line to make unset() call more visible. [ticket/10950] Select the correct columns in SQL queries. [ticket/10950] Use a variable for the private message id. [ticket/10950] Move array initialisation to the front. [ticket/10950] Remove redundant if statement. [ticket/10950] Fix SQL coding style (indentation) in second SQL query. [ticket/10950] Use proper ' in order to fix comment.
| * | Merge branch 'prep-release-3.0.11' into develop-olympusNils Adermann2012-07-212-0/+305
| |\ \ | | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * prep-release-3.0.11: [ticket/10950] Fix grammar in comments [ticket/10950] Delete PMs for users that have not yet read the pm [ticket/10950] Fix unit tests to fit the new pm deleting behaviour [ticket/10950] Update undelivered pm counts in batches not 1 by 1 for each user [ticket/10950] Remove deleted entries in tests instead of commenting them out [ticket/10950] Use database count() and group by instead of doing that in php [ticket/10950] Check $delete_ids to be not empty [ticket/10950] Recreated the behaviour of phpbb_delete_user_pms() [ticket/10950] Fix unit tests to reflect desired behaviour [ticket/10950] Add some first and simple unit tests for phpbb_delete_user_pms() [ticket/10950] Correct comment for the second query. [ticket/10950] Add empty line to make unset() call more visible. [ticket/10950] Select the correct columns in SQL queries. [ticket/10950] Use a variable for the private message id. [ticket/10950] Move array initialisation to the front. [ticket/10950] Remove redundant if statement. [ticket/10950] Fix SQL coding style (indentation) in second SQL query. [ticket/10950] Use proper ' in order to fix comment.
| | * Merge remote-tracking branch 'github-nickvergessen/ticket/10950' into ↵Nils Adermann2012-07-212-0/+305
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | prep-release-3.0.11 * github-nickvergessen/ticket/10950: [ticket/10950] Fix grammar in comments [ticket/10950] Delete PMs for users that have not yet read the pm [ticket/10950] Fix unit tests to fit the new pm deleting behaviour [ticket/10950] Update undelivered pm counts in batches not 1 by 1 for each user [ticket/10950] Remove deleted entries in tests instead of commenting them out [ticket/10950] Use database count() and group by instead of doing that in php [ticket/10950] Check $delete_ids to be not empty [ticket/10950] Recreated the behaviour of phpbb_delete_user_pms() [ticket/10950] Fix unit tests to reflect desired behaviour [ticket/10950] Add some first and simple unit tests for phpbb_delete_user_pms() [ticket/10950] Correct comment for the second query. [ticket/10950] Add empty line to make unset() call more visible. [ticket/10950] Select the correct columns in SQL queries. [ticket/10950] Use a variable for the private message id. [ticket/10950] Move array initialisation to the front. [ticket/10950] Remove redundant if statement. [ticket/10950] Fix SQL coding style (indentation) in second SQL query. [ticket/10950] Use proper ' in order to fix comment.
| | | * [ticket/10950] Fix unit tests to fit the new pm deleting behaviourJoas Schilling2012-07-201-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | Undelivered PMs should not be delivered to recipients that have not yet received them. PHPBB3-10950
| | | * [ticket/10950] Remove deleted entries in tests instead of commenting them outJoas Schilling2012-07-111-17/+0
| | | | | | | | | | | | | | | | PHPBB3-10950
| | | * [ticket/10950] Fix unit tests to reflect desired behaviourJoas Schilling2012-07-042-4/+105
| | | | | | | | | | | | | | | | | | | | | | | | See http://wiki.phpbb.com/Deleting_Private_Messages for further explanation. PHPBB3-10950
| | | * [ticket/10950] Add some first and simple unit tests for phpbb_delete_user_pms()Joas Schilling2012-06-232-0/+222
| | | | | | | | | | | | | | | | | | | | | | | | Todo: Add cases to in which the msg is also deleted. PHPBB3-10950
* | | | Merge pull request #843 from nickvergessen/feature/new-tz-handlingNils Adermann2012-07-191-0/+57
|\ \ \ \ | | | | | | | | | | Feature/new tz handling
| * | | | [feature/new-tz-handling] Fix unit testJoas Schilling2012-07-181-1/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-9558
| * | | | Merge branch 'develop' of git://github.com/phpbb/phpbb3 into ↵Joas Schilling2012-07-1864-62/+1179
| |\ \ \ \ | | | | | | | | | | | | | | | | | | feature/new-tz-handling
| * | | | | [feature/new-tz-handling] Add tests for get_timestamp_from_format()Joas Schilling2012-06-181-0/+57
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9558
* | | | | | Merge remote-tracking branch 'Fyorl/ticket/10992' into developAndreas Fischer2012-07-191-17/+24
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fyorl/ticket/10992: [ticket/10992] Changed octetstream to octet-stream [ticket/10992] test_empty_file() now tries to upload the correct file [ticket/10992] Modified upload tests to work with new version
| * | | | | | [ticket/10992] Changed octetstream to octet-streamFyorl2012-07-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10992
| * | | | | | [ticket/10992] test_empty_file() now tries to upload the correct fileFyorl2012-07-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10992
| * | | | | | [ticket/10992] Modified upload tests to work with new versionFyorl2012-07-161-17/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10992
* | | | | | | Merge branch 'develop-olympus' into developAndreas Fischer2012-07-191-13/+6
|\ \ \ \ \ \ \ | |_|_|/ / / / |/| | | / / / | | |_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10981] Added check for PHP version before running composer [ticket/10981] Modified travis to use composer with --dev [ticket/10981] Removed setupBeforeClass [ticket/10981] Modified functional framework to account for goutte changes [ticket/10981] Added goutte via composer Conflicts: .travis.yml composer.phar phpBB/composer.json phpBB/composer.lock tests/bootstrap.php
| * | | | | Merge remote-tracking branch 'Fyorl/ticket/10981' into develop-olympusAndreas Fischer2012-07-192-13/+21
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fyorl/ticket/10981: [ticket/10981] Added check for PHP version before running composer [ticket/10981] Modified travis to use composer with --dev [ticket/10981] Removed setupBeforeClass [ticket/10981] Modified functional framework to account for goutte changes [ticket/10981] Added goutte via composer
| | * | | | | [ticket/10981] Removed setupBeforeClassFyorl2012-07-171-8/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10981
| | * | | | | [ticket/10981] Modified functional framework to account for goutte changesFyorl2012-07-161-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10981
| | * | | | | [ticket/10981] Added goutte via composerFyorl2012-07-162-2/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | composer.phar added and autoloaded before tests PHPBB3-10981
* | | | | | | Merge branch 'develop-olympus' into developNils Adermann2012-07-175-6/+201
|\ \ \ \ \ \ \ | |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10678] Typo and formatting [ticket/10678] Add port handling for MSSQL tests [ticket/10678] Move config changes to new location [ticket/10678] Rename helper class file [ticket/10678] Lowercase class name, adjust comment width [ticket/10678] More formatting and docblocks [ticket/10678] More formatting requests [ticket/10678] Fix formatting [ticket/10678] Add better support for Firebird, Oracle, and MSSQL
| * | | | | | Merge remote-tracking branch 'github-noxwizard/ticket/10678' into ↵Nils Adermann2012-07-175-6/+201
| |\ \ \ \ \ \ | | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | develop-olympus * github-noxwizard/ticket/10678: [ticket/10678] Typo and formatting [ticket/10678] Add port handling for MSSQL tests [ticket/10678] Move config changes to new location [ticket/10678] Rename helper class file [ticket/10678] Lowercase class name, adjust comment width [ticket/10678] More formatting and docblocks [ticket/10678] More formatting requests [ticket/10678] Fix formatting [ticket/10678] Add better support for Firebird, Oracle, and MSSQL Conflicts: tests/RUNNING_TESTS.txt
| | * | | | | [ticket/10678] Typo and formattingPatrick Webster2012-05-132-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10678
| | * | | | | [ticket/10678] Add port handling for MSSQL testsPatrick Webster2012-05-081-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10678
| | * | | | | [ticket/10678] Move config changes to new locationPatrick Webster2012-05-081-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10678
| | * | | | | [ticket/10678] Rename helper class filePatrick Webster2012-05-082-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10678
| | * | | | | [ticket/10678] Lowercase class name, adjust comment widthPatrick Webster2012-05-083-14/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10678
| | * | | | | [ticket/10678] More formatting and docblocksPatrick Webster2012-05-082-4/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10678
| | * | | | | [ticket/10678] More formatting requestsPatrick Webster2012-05-082-8/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10678
| | * | | | | [ticket/10678] Fix formattingPatrick Webster2012-05-083-7/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10678
| | * | | | | [ticket/10678] Add better support for Firebird, Oracle, and MSSQLPatrick Webster2012-05-084-5/+171
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow ODBC connections for Firebird Capitalize fixture tables and columns for Firebird On database drop failure, drop all tables Provide cleanup utilities for databases that cannot be dropped PHPBB3-10678
* | | | | | | Merge remote-tracking branch 'nickvergessen/ticket/10942' into developAndreas Fischer2012-07-173-1/+134
|\ \ \ \ \ \ \ | |_|_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * nickvergessen/ticket/10942: [ticket/10942] Avoid possible conflicts with magic words in unit tests [ticket/10942] Add access modifiers [ticket/10942] Use ANSI SQL standard || in dbal.php [ticket/10942] Fix up unit tests for sql_case() [ticket/10942] Require same data type and do not cast expressions automatically [ticket/10942] Make unit tests for sql_case simpler [ticket/10942] Add a comment why we cast to sql_case() [ticket/10942] Rename method sql_conditional() to sql_case() [ticket/10942] Change term string to expression to avoid confusion [ticket/10942] Fix sql_conditional for mssql, postgre and oracle [ticket/10942] Fix function name on order_lower_test.php [ticket/10942] Add unit tests for sql_concatenate [ticket/10942] Add sql_concatenate to dbal [ticket/10942] Add unit tests for sql_conditional [ticket/10942] Add sql_conditional to dbal
| * | | | | | [ticket/10942] Avoid possible conflicts with magic words in unit testsJoas Schilling2012-07-161-12/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10942
| * | | | | | [ticket/10942] Fix up unit tests for sql_case()Joas Schilling2012-07-021-11/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10942
| * | | | | | [ticket/10942] Make unit tests for sql_case simplerJoas Schilling2012-06-301-31/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10942
| * | | | | | [ticket/10942] Rename method sql_conditional() to sql_case()Joas Schilling2012-06-201-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10942
| * | | | | | [ticket/10942] Fix function name on order_lower_test.phpJoas Schilling2012-06-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10942
| * | | | | | [ticket/10942] Add unit tests for sql_concatenateJoas Schilling2012-06-201-0/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10942
| * | | | | | [ticket/10942] Add unit tests for sql_conditionalJoas Schilling2012-06-201-0/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10942
* | | | | | | [ticket/10941] Removed superfluous arrayFyorl2012-07-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10941
* | | | | | | [ticket/10941] File 'txt' now too big so changed tests to reflect thatFyorl2012-07-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10941
* | | | | | | [ticket/10941] Added a comment to ensure tags stay uppercaseFyorl2012-07-091-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10941
* | | | | | | [ticket/10941] Modified tearDown to use DirectoryIterator instead of globFyorl2012-07-091-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10941
* | | | | | | [ticket/10941] Added tests/upload/fixture/copies to trackingFyorl2012-07-091-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10941