aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | [ticket/11219] Only update sequences that are affected by a fixturePatrick Webster2012-12-012-36/+55
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11219
| * | | | | [ticket/11219] Recreate Oracle sequences instead of altering themPatrick Webster2012-11-201-53/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The previous method would always leave a gap between the last value and the new one due to how you have to update the sequence values. To remove gaps in all situations, the options are to alter the USER_SEQUENCES table or just drop the sequence and recreate it. The prior requires elevated priveleges and the latter can break attached objects. Since we don't attach objects to the sequences, we won't have any problems doing it for the tests. PHPBB3-11219
| * | | | | [ticket/11219] Add unit test for inserting into a sequence columnJoas Schilling2012-11-191-0/+55
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11219
| * | | | | [ticket/11219] Update sequence values after loading fixturesPatrick Webster2012-11-182-0/+139
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If a value is provide for an auto_increment type of column, certain DBMSes do not update their internal sequencers. If a row is inserted later, it can be given an ID that is already in use, resulting in an error. The database test cases now resynchronise the sequencers before the tests are run. PHPBB3-11219
* | | | | | Merge PR #1053 branch 'p/ticket/10841' into develop-olympusOleg Pudeyev2012-12-053-6/+42
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * p/ticket/10841: [ticket/10841] Revert more whitespace changes. [ticket/10841] Revert whitespace changes. [ticket/10841] adding space after if [ticket/10841] removing unnecessary spacing [ticket/10841] changing affectedrows check to COUNT in sql [ticket/10841] Modifying style and language selectors in UCP
| * | | | | | [ticket/10841] Revert more whitespace changes.Oleg Pudeyev2012-12-051-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10841
| * | | | | | [ticket/10841] Revert whitespace changes.Oleg Pudeyev2012-12-052-20/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10841
| * | | | | | [ticket/10841] adding space after ifSenky2012-12-051-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10841
| * | | | | | [ticket/10841] removing unnecessary spacingSenky2012-12-051-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10841
| * | | | | | [ticket/10841] changing affectedrows check to COUNT in sqlSenky2012-12-051-6/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | this sould reduce load and be faster. Also freeresult functions added PHPBB3-10841
| * | | | | | [ticket/10841] Modifying style and language selectors in UCPSenky2012-12-053-28/+62
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit also deletes all unnecessary blank spaces at the end of the lines in both ucp_prefs_personal.html PHPBB3-10841
* | | | | | Merge remote-tracking branch 'p/ticket/10602' into develop-olympusAndreas Fischer2012-12-051-3/+10
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * p/ticket/10602: [ticket/10602] Avoid a race condition. [ticket/10602] Use last_queue_run for its intended purpose.
| * | | | | | [ticket/10602] Avoid a race condition.Oleg Pudeyev2012-12-051-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10602
| * | | | | | [ticket/10602] Use last_queue_run for its intended purpose.Oleg Pudeyev2012-12-051-3/+8
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We keep the last queue run time around, therefore for determining whether enough time has passed since the last run we can simply use this config variable. When there is no queue file we consider a queue run successful. Previously queue.php ("cache file") modification time would be used for determining whether enough time has passed since last queue run. The problem was that modification time would be updated whenever anything was added to the queue, creating a situation where if queue is processed less frequently than it is added to that email would not be sent. PHPBB3-10602
* | | | | | Merge remote-tracking branch 'p/ticket/10716' into develop-olympusAndreas Fischer2012-12-051-0/+74
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * p/ticket/10716: [ticket/10716] Collect standard error from executed php process. [ticket/10716] Skip test if php is not in PATH. [ticket/10716] Exclude our dependencies from linting. [ticket/10716] Only lint on php 5.3+. [ticket/10716] php parse all php files as part of the test suite.
| * | | | | [ticket/10716] Collect standard error from executed php process.Oleg Pudeyev2012-12-041-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | php executes everything via a shell. The standard error of this top level shell is not captured by exec/shell_exec/popen/etc. and there is no way to capture it. proc_open might work but it is a nightmare to use and without multiplexing reads from standard error and standard output it can deadlock. Thus the solution in this commit. Put the command into a subshell and redirect standard error to standard output for the subshell. PHPBB3-10716
| * | | | | [ticket/10716] Skip test if php is not in PATH.Oleg Pudeyev2012-12-041-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10716
| * | | | | [ticket/10716] Exclude our dependencies from linting.Oleg Pudeyev2012-12-041-1/+12
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10716
| * | | | | [ticket/10716] Only lint on php 5.3+.Oleg Pudeyev2012-12-041-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10716
| * | | | | [ticket/10716] php parse all php files as part of the test suite.Oleg Pudeyev2012-12-041-0/+49
|/ / / / / | | | | | | | | | | | | | | | PHPBB3-10716
* | | | | Merge PR #1112 branch 'bantu/ticket/11240' into develop-olympusOleg Pudeyev2012-12-042-0/+2
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | * bantu/ticket/11240: [ticket/11240] Enable PHPUnit's verbose mode so we get a list of skipped tests.
| * | | | | [ticket/11240] Enable PHPUnit's verbose mode so we get a list of skipped tests.Andreas Fischer2012-12-042-0/+2
|/ / / / / | | | | | | | | | | | | | | | PHPBB3-11240
* | | | | Merge remote-tracking branch 'p/ticket/11238-olympus' into develop-olympusAndreas Fischer2012-12-032-32/+433
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | * p/ticket/11238-olympus: [ticket/11238] Set goutte version to 0.1.0.
| * | | | | [ticket/11238] Set goutte version to 0.1.0.Oleg Pudeyev2012-12-022-32/+433
|/ / / / / | | | | | | | | | | | | | | | PHPBB3-11238
* | | | | Merge PR #893 branch 'nickvergessen/ticket/10184' into develop-olympusOleg Pudeyev2012-12-012-0/+21
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * nickvergessen/ticket/10184: [ticket/10184] Query bots table to get the user_ids of the bots [ticket/10184] Disable receiving pms for bots by default
| * | | | | [ticket/10184] Query bots table to get the user_ids of the botsJoas Schilling2012-12-011-4/+18
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10184
| * | | | | [ticket/10184] Disable receiving pms for bots by defaultJoas Schilling2012-12-012-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10184
* | | | | | Merge remote-tracking branch 'p/ticket/11227' into develop-olympusAndreas Fischer2012-11-2914-18/+18
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | | | | | | | | | | | | | * p/ticket/11227: [ticket/11227] @return void -> @return null in develop-olympus.
| * | | | | [ticket/11227] @return void -> @return null in develop-olympus.Oleg Pudeyev2012-11-2914-18/+18
|/ / / / / | | | | | | | | | | | | | | | PHPBB3-11227
* | | | | Merge PR #1074 branch 'bantu/ticket/11192' into develop-olympusOleg Pudeyev2012-11-163-1/+81
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * bantu/ticket/11192: [ticket/11192] Merge dataProvider arrays because the test is the same now. [ticket/11192] Update $value parameter description to support other types. [ticket/11192] Mark negative byte numbers as unsupported. [ticket/11192] Test strings not converted to int/float before. [ticket/11192] Also test strings, e.g. sums returned by the database. [ticket/11192] Also test powers of 10 / 1000. [ticket/11192] Add tests. [ticket/11192] Add Tebibyte to get_formatted_filesize().
| * | | | | [ticket/11192] Merge dataProvider arrays because the test is the same now.Andreas Fischer2012-11-161-15/+1
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11192
| * | | | | [ticket/11192] Update $value parameter description to support other types.Andreas Fischer2012-11-161-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11192
| * | | | | [ticket/11192] Mark negative byte numbers as unsupported.Andreas Fischer2012-11-162-17/+1
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11192
| * | | | | [ticket/11192] Test strings not converted to int/float before.Andreas Fischer2012-11-161-2/+36
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11192
| * | | | | [ticket/11192] Also test strings, e.g. sums returned by the database.Andreas Fischer2012-11-161-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11192
| * | | | | [ticket/11192] Also test powers of 10 / 1000.Andreas Fischer2012-11-161-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11192
| * | | | | [ticket/11192] Add tests.Oleg Pudeyev2012-11-151-0/+50
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11192
| * | | | | [ticket/11192] Add Tebibyte to get_formatted_filesize().Andreas Fischer2012-11-112-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11192
* | | | | | Merge PR #1060 branch 'nickvergessen/ticket/11186' into develop-olympusOleg Pudeyev2012-11-151-6/+0
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * nickvergessen/ticket/11186: [ticket/11186] Database unit tests fail on windows using sqlite2
| * | | | | | [ticket/11186] Database unit tests fail on windows using sqlite2Joas Schilling2012-11-101-6/+0
| | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The problem is, that we try to recreate the db and reconnect to it, while the old connection is still hold. To resolve this, we just drop all tables and recreate the tables instead of the hole db. PHPBB3-11186
* | | | | | Merge remote-tracking branch 'p/ticket/11202-olympus' into develop-olympusAndreas Fischer2012-11-152-1/+19
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * p/ticket/11202-olympus: [ticket/11202] Custom message does not make sense here, delete it. [ticket/11202] Check response success before content assertions. [ticket/11202] Add a heuristic function to check for response success.
| * | | | | | [ticket/11202] Custom message does not make sense here, delete it.Oleg Pudeyev2012-11-151-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11202
| * | | | | | [ticket/11202] Check response success before content assertions.Oleg Pudeyev2012-11-151-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This does not change tests that perform requests which are either clearly not supposed to succeed or are a gray area. PHPBB3-11202
| * | | | | | [ticket/11202] Add a heuristic function to check for response success.Oleg Pudeyev2012-11-151-1/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This tries to account for php sending fatal errors with 200 status code. PHPBB3-11202
* | | | | | | Merge PR #1069 branch 'Fyorl/ticket/11190' into develop-olympusOleg Pudeyev2012-11-151-0/+23
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | | | | | | | | | | | | | | | * Fyorl/ticket/11190: [ticket/11190] Functional tests purge cache before running.
| * | | | | | [ticket/11190] Functional tests purge cache before running.Fyorl2012-11-111-0/+23
| | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | Added functions to get and purge cache to functional framework also. PHPBB3-11190
* | | | | | Merge remote-tracking branch 'marc1706/ticket/10879' into develop-olympusAndreas Fischer2012-11-131-1/+1
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | | | | | | | * marc1706/ticket/10879: [ticket/10879] Remove arrow icon from attachment link in editor
| * | | | | [ticket/10879] Remove arrow icon from attachment link in editorMarc Alexander2012-11-131-1/+1
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If you upload a file with a long filename the filename will partially cover the arrow icon background image. Remove the icon as it's not needed anyways. PHPBB3-10879
* | | | | Merge PR #1052 branch 'p/ticket/10865' into develop-olympusOleg Pudeyev2012-11-091-68/+87
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * p/ticket/10865: [ticket/10865] Use code tags for install/database_update.php. [ticket/10865] Should have been a slash. [ticket/10865] Add .css, .js, and .htaccess to the list of ASCII mode files [ticket/10865] Phrase change for visiting with browser [ticket/10865] Grammar corrections for the entire document [ticket/10865] Typo and phrasing change [ticket/10865] Updates and additions to /docs/INSTALL.html
| * | | | | [ticket/10865] Use code tags for install/database_update.php.Oleg Pudeyev2012-11-091-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10865