summaryrefslogtreecommitdiff
path: root/_test
Commit message (Collapse)AuthorAge
* Correctly handle multiline strings in JS compressorAndreas Gohr2012-05-04
| | | | | | See http://stackoverflow.com/questions/805107/how-to-create-multiline-strings for info on them.
* fixed JSON test casesAndreas Gohr2012-05-03
| | | | | | | | | seems like phpunit will not run all test classes inside a file when giving it as an argument :-/ I removed the error supression tests as these test a feature we do not have in our JSON class version (and shouldn't implement to keep as compatible as possible to the native JSON functions)
* added some blowfish testsAndreas Gohr2012-05-03
| | | | upstream plus a test for our modifications
* added the orginal unit tests for JSON.phpAndreas Gohr2012-05-02
|
* removed unecessary requiresin unit testsAndreas Gohr2012-05-01
|
* fixed password hashing tests for recent PMD5 changeAndreas Gohr2012-05-01
|
* reenabled password testAndreas Gohr2012-04-27
| | | | | | according to Dominik Eckelmann one of the tests fails on certain servers. I can't reproduce it. If you can, please open a bug report with as much info as possible.
* skip SSL tests whn no SSL support in PHPAndreas Gohr2012-04-26
|
* disable DNS lookups in testsAndreas Gohr2012-04-23
|
* some first tests for the Mailer classAndreas Gohr2012-04-23
|
* Note on enabling HTTPS/SSL support for php on windowsDominik Eckelmann2012-04-21
|
* reenabled romanization testAndreas Gohr2012-04-20
| | | | The test can be skipped by excluding the "slow" group.
* some cleanupAndreas Gohr2012-04-20
| | | | removed unneeded data files, converted tabs to spaces
* changed README to dokuwiki formatAndreas Gohr2012-04-20
|
* added html_hilight testAndreas Gohr2012-04-20
| | | | | This didn't really need runkit. The way runkit was used didn't add any more credibility to the test result
* only include dw files in coverage report except _ directoriesTobias Sarnowski2012-04-20
|
* use original conf directory and only shadow special filesTobias Sarnowski2012-04-18
| | | | https://github.com/splitbrain/dokuwiki/pull/96#issuecomment-5195756
* phpunit 3.6.10 is sufficientTobias Sarnowski2012-04-18
|
* for consistency, also use _test directory for pluginsTobias Sarnowski2012-04-18
|
* fixed content listingTobias Sarnowski2012-04-18
|
* moved _testing to _testTobias Sarnowski2012-04-18
|
* removed deprecated old test frameworkTobias Sarnowski2012-04-18
|
* fixed unittest and transformed to phpunitDominik Eckelmann2012-04-08
|
* fixed auth_aclcheck testDominik Eckelmann2012-04-07
|
* fixed some simpletest unit testsDominik Eckelmann2012-04-07
|
* transformed parser unit tests to phpunitDominik Eckelmann2012-04-06
|
* reenabled mail_quited_printable_encode test in simpletestDominik Eckelmann2012-04-01
|
* fixed mail_isvalid unittest in simpletestDominik Eckelmann2012-04-01
|
* fixed ixr_library_ixr_message testcase in simpletestDominik Eckelmann2012-04-01
|
* fixed ixr_library_date test in simpletestDominik Eckelmann2012-04-01
|
* fixed testcase class nameDominik Eckelmann2012-04-01
|
* fixed pagetemplate unit testDominik Eckelmann2012-04-01
|
* Merge branch 'master' of https://github.com/dom-mel/dokuwiki into ↵Andreas Gohr2012-03-23
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | pull-request-87 * 'master' of https://github.com/dom-mel/dokuwiki: (38 commits) removed requires, changed conf check in xmlrpc.php removed require_once for autoloaded fulltext.php updated comment added dokuwiki.getXMLRPCAPIVersion and wiki.getRPCVersionSupported added RPC_CALL_ADD event. replaced $HTTP_RAW_POST_DATA with http_get_raw_post_data function changed error code for unauthorized method calls. typo fixes moved plugin and core method calls to seperate function corrected comment added getapi methods to remote plugin removed unused class fixed testcase refactored RemoteAccessDenied to RemoteAccessDeniedException adjusted test cases delegate file and date transformation to remote library treat null as empty array added missing getTime added missing getVersion set login as public method ...
| * added RPC_CALL_ADD event.Dominik Eckelmann2012-03-21
| | | | | | | | This event enables plugins to register custom method names.
| * Merge branch 'master' of https://github.com/splitbrain/dokuwikiDominik Eckelmann2012-03-14
| |\ | | | | | | | | | | | | Conflicts: lib/exe/xmlrpc.php
| * | fixed testcaseDominik Eckelmann2012-01-22
| | |
| * | refactored RemoteAccessDenied to RemoteAccessDeniedExceptionDominik Eckelmann2012-01-08
| | |
| * | adjusted test casesDominik Eckelmann2012-01-08
| | |
| * | enforce acl on remote method callDominik Eckelmann2012-01-08
| | |
| * | updated remote hasAccess functionDominik Eckelmann2012-01-08
| | |
| * | changed return typesDominik Eckelmann2011-12-10
| | |
| * | added remote plugin calls.Dominik Eckelmann2011-12-08
| | |
| * | RemoteAPI can now handle remote calls.Dominik Eckelmann2011-12-08
| | |
| * | introduced first remote test casesDominik Eckelmann2011-11-28
| | |
| * | introduced remote api classDominik Eckelmann2011-11-23
| | |
* | | fixed error in bcrypt password methodAndreas Gohr2012-03-16
| |/ |/|
* | Merge pull request #86 from lupo49/masterAndreas Gohr2012-03-14
|\ \ | | | | | | Parser: Allow parser to fully recognize windows share links with a hyphen character in it
| * | Unit Test: Adding test to check windows share link with hyphen characterlupo492012-03-10
| | |
* | | the previous test case had an errorAndreas Gohr2012-03-13
| | | | | | | | | | | | | | | There were whitespaces on the empty DOS line. This fixes the test but does not explain the broken behaviour in the wiki itself.
* | | added (failing) test for cleanText()Andreas Gohr2012-03-13
|/ / | | | | | | | | | | | | | | | | The cleanText function is supposed to convert DOS to Unix lineendings but it seems that it doesn't always do that correctly as this thread suggests: http://forum.dokuwiki.org/thread/8141 I added a unit test that currently fails but haven't found the real cause yet. Further testing (and a fix) is needed.