2ba67679 | 12-May-2017 |
Andreas Gohr <andi@splitbrain.org> |
avoid dependency tests being marked as risky |
b216b154 | 12-May-2017 |
Andreas Gohr <andi@splitbrain.org> |
use dataprovider in password tests
This fixes a problem with those tests in the most recent version of phpunit. I thought it was caused by the use of the deprecated var keyword, but some other weird
use dataprovider in password tests
This fixes a problem with those tests in the most recent version of phpunit. I thought it was caused by the use of the deprecated var keyword, but some other weirdness was going on. This way it's more proper anyway.
show more ...
|
9c9753d6 | 12-May-2017 |
Andreas Gohr <andi@splitbrain.org> |
replace some var keywords
This should fix some tests on PHP 7.1. The work is far from done, we still have a lot of variables without proper accessibility defined. |
480336a3 | 31-Mar-2017 |
Andreas Gohr <andi@splitbrain.org> |
no longer rely on actionOk when checking if actions are disabled
loadAction() and checkAction() are now public and could be used within actionOK(). However some weird circular references prevent tha
no longer rely on actionOk when checking if actions are disabled
loadAction() and checkAction() are now public and could be used within actionOK(). However some weird circular references prevent that. In addition, actionOK is also used to check for things that aren't Actions (yet) like 'rss' and 'top'.
show more ...
|
6e4bf08e | 31-Mar-2017 |
Andreas Gohr <andi@splitbrain.org> |
allow actions to be initialized without an action name
also fixes the tests |
f21dad39 | 11-Feb-2017 |
Andreas Gohr <andi@splitbrain.org> |
all actions should have a class now
Lots of FIXMEs and the routing isn't integrated, yet |
64ab5140 | 10-Feb-2017 |
Andreas Gohr <andi@splitbrain.org> |
start of a refactoring the action routing
This is neither complete nor working, yet |
1bff2aba | 31-Mar-2017 |
Andreas Gohr <andi@splitbrain.org> |
mark some tests as non-risky
Those tests either just check that an exception is NOT thrown or are there to check dependencies for other tests. Newer phpunits mark all tests as risky that have no ass
mark some tests as non-risky
Those tests either just check that an exception is NOT thrown or are there to check dependencies for other tests. Newer phpunits mark all tests as risky that have no assertion.
show more ...
|
e793a5e9 | 12-Mar-2017 |
Andreas Gohr <andi@splitbrain.org> |
I will be so glad when we stop supporting old PHP
actually we could right now. but I don't like to introduce that change in a feature branch. |
bd3cb3d5 | 12-Mar-2017 |
Andreas Gohr <andi@splitbrain.org> |
make use of exception wrapper in io test |
73b977aa | 14-Feb-2017 |
Michael Grosse <grosse@cosmocode.de> |
Handle breaking class rename in PHPUnit 6.0
See for reference #1837 and sebastianbergmann/phpunit#2503 |
e3eb1d75 | 14-Feb-2017 |
Michael Grosse <grosse@cosmocode.de> |
PHPUnit 6 now only supports namespaced classes
However those classes are already supported in PHP 5.7 so we can switch to them without breaking backward-compatibility. |
efce9e7d | 08-Feb-2017 |
Andreas Gohr <gohr@cosmocode.de> |
mysql 4.11+ hash is supposed to be upper case. fixes #1825 |
4cd2074f | 05-Feb-2017 |
Andreas Gohr <andi@splitbrain.org> |
fixed typo in function name |
71de5572 | 05-Feb-2017 |
Andreas Gohr <andi@splitbrain.org> |
changed embedSVG to inlineSVG and make it return contents
This makes it more flexible to use on the expense of needing one echo more. |
0849fa88 | 31-Jan-2017 |
Andreas Gohr <andi@splitbrain.org> |
more cleanup in embedSVG
now comments and line breaks between tags are removed |
ddb6c308 | 17-Jan-2017 |
Michael Grosse <grosse@cosmocode.de> |
Add test to verify that no error occurs
Without the change in issue #1801, or commit 1b26d16d86d6a898466211861adc1dff2286da2b respectively, this adjusted test would throw an error since it would att
Add test to verify that no error occurs
Without the change in issue #1801, or commit 1b26d16d86d6a898466211861adc1dff2286da2b respectively, this adjusted test would throw an error since it would attempt to use another array as an array-key.
The fact that the test passes without error means that the bug is fixed.
show more ...
|
7f48c40e | 01-Jan-2017 |
Michael Hamann <michael@content-space.de> |
Fix media changelog test that did not expect delayed changelog entry
What happened was that in the place of the new `waitForTick`-call an actual delay happened and therefore the file modification ti
Fix media changelog test that did not expect delayed changelog entry
What happened was that in the place of the new `waitForTick`-call an actual delay happened and therefore the file modification time and the deletion entry were two different points in time, resulting in random test failures. The test enforces this now, the condition to test has been adjusted.
show more ...
|
7e95efec | 01-Jan-2017 |
Michael Hamann <michael@content-space.de> |
Add testing of delayed writes to the remote API |
ea466a98 | 01-Jan-2017 |
Michael Hamann <michael@content-space.de> |
Added more testing to ensure correct handling of delayed writes |
4eed441d | 22-Dec-2016 |
Michael Grosse <grosse@cosmocode.de> |
refactor: handle default options w/ other optgroups |
068abb2b | 20-Dec-2016 |
Michael Grosse <grosse@cosmocode.de> |
fix: ensure that there is only 1 selected option
Multiple selected option would not be valid HTML. |
b0eca9cc | 12-Dec-2016 |
Michael Grosse <grosse@cosmocode.de> |
Add test for optgroup support in selects |
aaf4f55e | 01-Dec-2016 |
Andreas Gohr <gohr@cosmocode.de> |
use waitForTick in all our tests |
b9940551 | 01-Dec-2016 |
Andreas Gohr <gohr@cosmocode.de> |
refactored the remote API tests
Now each command is checked within it's own test on a completely clean install. Hopefuly this also takes care of the flaky test behavior seen at Travis occasionally. |