Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | use correct setUp method and parent calls. | Dominik Eckelmann | 2012-11-29 |
| | |||
* | Fix case-insensitive match in ACL checking | Kazutaka Miyasaka | 2012-11-25 |
| | | | | | | | ACL checking of DokuWiki is currently always case-sensitive regardless of auth backend setting ($auth->isCaseSensitive). This commit enables case-insensitive match in the same way of auth_isMember(). | ||
* | ignore empty header on mail sending | Dominik Eckelmann | 2012-11-23 |
| | |||
* | remove empty BCC/CC mail headers | Dominik Eckelmann | 2012-11-23 |
| | | | | Empty BCC/CC headers may cause errors on IIS. | ||
* | Merge pull request #140 from splitbrain/tar | Andreas Gohr | 2012-11-12 |
|\ | | | | | New Tar Archive library | ||
| * | unit test for tar bombs | Andreas Gohr | 2012-11-04 |
| | | |||
| * | Tar: support for creating archives with long filenames | Andreas Gohr | 2012-11-04 |
| | | | | | | | | | | The library now creates either a POSIX ustar prefix or a GNU longlink entry for files which have a name longer than 100 bytes | ||
| * | Tar: Added extraction support for long file names | Andreas Gohr | 2012-11-04 |
| | | | | | | | | Supports POSIX ustar prefixes and GNU longlink entries | ||
| * | added test cases for Tar::extract parameters | Andreas Gohr | 2012-11-03 |
| | | |||
| * | Completely rewritten Tar library | Andreas Gohr | 2012-11-03 |
| | | | | | | | | | | | | | | This new class is only losely based on our previous library. The whole API was changed to make it more flexible and memory saving. Some fisrt unit tests are included | ||
* | | Merge pull request #139 from dom-mel/hidden_event | Andreas Gohr | 2012-11-05 |
|\ \ | | | | | | | Added PAGEUTILS_ID_HIDEPAGE Event | ||
| * | | changed PAGEUTILS_ID_HIDEPAGE to has BEFORE/AFTER | Dominik Eckelmann | 2012-11-05 |
| | | | |||
| * | | added event PAGEUTILS_ID_HIDEPAGE | Dominik Eckelmann | 2012-10-31 |
| | | | |||
| * | | added test for isHiddenPage() | Dominik Eckelmann | 2012-10-31 |
| | | | |||
* | | | Merge pull request #121 from splitbrain/strict | Andreas Gohr | 2012-11-04 |
|\ \ \ | |_|/ |/| | | fix E_STRICT errors FS#2427 | ||
| * | | fix E_STRICT errors FS#2427 | Andreas Gohr | 2012-07-28 |
| | | | | | | | | | | | | | | | | | | | | | | | | This commit fixes all E_STRICT messages shown when running the test suite. There might be more problems not covered by tests, yet. For compatibility reasons with plugins, E_STRICT errors are still supressed. | ||
* | | | fix use of constructor in TarLib | Andreas Gohr | 2012-11-03 |
| |/ |/| | |||
* | | fixed sidebar test and renamed it to reflect recent changes | Anika Henke | 2012-10-06 |
| | | |||
* | | Always load the parser in the test environment | Michael Hamann | 2012-10-02 |
| | | | | | | | | | | | | | | This fixes the problem that $PARSER_MODES was sometimes unset by PHPUnit between test functions that called p_get_parsermodes() as PHPUnit tried to restore the global environment. I couldn't reproduce this when I executed all tests but just when I executed a single plugin test. | ||
* | | Fix the test if a subscription already exists FS#2580 | Michael Hamann | 2012-09-07 |
| | | | | | | | | | | | | | | This fixes the test for existing subscriptions by not only testing if the subscription for the deepest namespace level is for the current page but by simply testing all levels. Test case is included, it fails without this change. | ||
* | | replace deprecated split calls FS#2583 | Andreas Gohr | 2012-08-26 |
| | | |||
* | | extract method for Input class | Andreas Gohr | 2012-08-09 |
| | | | | | | | | makes it easier to access our do parameters | ||
* | | do not recompress already minified js FS#2574 | Andreas Gohr | 2012-08-06 |
| | | |||
* | | more utf8_basename fixes | Andreas Gohr | 2012-07-29 |
| | | |||
* | | Fix utf8_basename for files in the root directory | Michael Hamann | 2012-07-29 |
| | | |||
* | | fix utf8_basename for file names without any directory | Andreas Gohr | 2012-07-29 |
| | | |||
* | | added multiby html_highlight tests FS#2440 | Andreas Gohr | 2012-07-28 |
|/ | |||
* | Fixed and extended PHPDoc comments and added additional @var comments | Michael Hamann | 2012-07-28 |
| | |||
* | Fix index histogram minlen parameter for metadata keys | Michael Hamann | 2012-07-28 |
| | | | | This includes a test for the minlen parameter for metadata keys | ||
* | added utf8_basename() | Andreas Gohr | 2012-07-28 |
| | | | | | | | | | This is a locale independent version of basename to work around https://bugs.php.net/bug.php?id=37738 The function is not yet used anywhere. It should be at least used where ever non-ASCII filenames and paths are handled. Simply replacing all calls to basename() with this function might be the safest. | ||
* | Remove closing PHP tag in stalecheck test case | Michael Hamann | 2012-07-08 |
| | |||
* | Remove unnecessary include | Martin Doucha | 2012-07-07 |
| | |||
* | Stale cache unittest | Martin Doucha | 2012-07-07 |
| | |||
* | Merge branch 'httpclient' of git://github.com/whoopdedo/dokuwiki into ↵ | Andreas Gohr | 2012-07-06 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | pull-request-107 * 'httpclient' of git://github.com/whoopdedo/dokuwiki: Adjust unit test to reflect desired behavior of max_bodysize Avoid timeout when content-length is 0 Limit size of reads when max_bodysize is set or content-length is present Skip over chunk extensions that nobody uses because RFC2616 says so HTTPClient will read up to max_bodysize if it can Validate the size of a chunk before reading from the socket Efficiently wait on sockets HTTP headers are already parsed, there is no need for regexp Utility function for writing to a socket Unit test for HTTPClient chunked encoding Utility functions for reading from a socket. Raise an exception on socket errors. Correct handling of chunked transfer encoding. (FS#2535) Avoid strict warnings about unset array keys. Reference static variable through 'self::' as you're supposed to. | ||
| * | Adjust unit test to reflect desired behavior of max_bodysize | Tom N Harris | 2012-07-01 |
| | | |||
| * | HTTPClient will read up to max_bodysize if it can | Tom N Harris | 2012-06-20 |
| | | |||
| * | Unit test for HTTPClient chunked encoding | Tom N Harris | 2012-06-19 |
| | | |||
* | | reset the data directory before each test class is run | Andreas Gohr | 2012-07-02 |
| | | |||
* | | Improved sidebar inclusion | Andreas Gohr | 2012-07-01 |
| | | | | | | | | | | Template authors now can use tpl_sidebar() to include the sidebar. Sidebars can be defined in subnamespaces as well | ||
* | | Made multiline test cases work on windows too | Hakan Sandell | 2012-07-01 |
| | | |||
* | | fixed group wildcards and added tests | Andreas Gohr | 2012-06-30 |
| | | |||
* | | Add a test case for nested events, this tests ↵ | Michael Hamann | 2012-06-30 |
| | | | | | | | | 8cb3706df5ad54c654bffb76a69ac0ca1006521e | ||
* | | test for setting the title config | Andreas Gohr | 2012-06-30 |
| | | |||
* | | moved URI setup to execute() | Andreas Gohr | 2012-06-30 |
| | | |||
* | | simplified using the TestRequest class | Andreas Gohr | 2012-06-30 |
| | | | | | | | | | | You now can call get() or post() on it and give it all the wanted input variables | ||
* | | treat empty string inputs as unset for int and bool | Andreas Gohr | 2012-06-29 |
| | | |||
* | | make sure all globals are available in test requests | Andreas Gohr | 2012-06-29 |
| | | |||
* | | fixed tests | Andreas Gohr | 2012-06-25 |
| | | | | | | | | The test suite was missing a global keyword to access the $INPUT class. | ||
* | | some Input class fixes and unit tests | Andreas Gohr | 2012-06-25 |
|/ | |||
* | empty ID in wl() will be treated as $conf['start'] | Dominik Eckelmann | 2012-05-14 |
| |