..
api
MINOR Removed obsolete 'usetestmanifest' flag from documentation and RestfulServiceTest
2011-03-28 08:14:03 +13:00
control
MINOR Moved ContentController, ModelAsController, NestedController, RootURLController (and related tests) to "cms" module
2011-03-29 18:07:55 +13:00
dev
Revert "MINOR Replaced assertType() calls with assertInstanceOf(), deprecated in PHPUnit 3.6 (throws warnings as of 3.5.10)" - cased too many problems with mixed build environments that require PHP 3.4
2011-03-11 15:06:09 +13:00
fieldtypes
MINOR Moved WidgetArea (and related tests) to "cms" module
2011-03-29 18:07:55 +13:00
filesystem
FEATURE: Added the SS_FileFinder class for finding files within a directory true that match a set of rules.
2011-03-24 20:14:42 +11:00
forms
MINOR Using BlankPage template in SecurityTest, BasicAuthTest to remove ContentController dependency
2011-03-29 18:07:55 +13:00
i18n
MINOR: Updated the i18n tests to use mock template and class manifests.
2011-03-24 21:31:00 +11:00
integration
BUGFIX Ensure that \r carriage return characters get stripped out before setting content in HTMLValue::setContent(). DOMDocument will transform these into 
 entities, which is apparently XML spec, but not necessary for us as we're using HTML (from r111949)
2010-10-19 05:07:27 +00:00
javascript
MINOR Changed TreeDropdownField markup from <div href="..."> to <div data-url-tree="..."> in order to support other URLs (e.g. reordering) - important for the main CMS tree
2011-03-22 18:15:03 +13:00
manifest
BUGFIX: Manifest test fixtures were interfering with other tests
2011-03-25 14:07:18 +13:00
model
MINOR Moved SiteTree, SiteTreeDecorator, SiteConfig, ErrorPage, RedirectorPage, VirtualPage (and related tests) to "cms" module
2011-03-29 18:07:55 +13:00
salad /step_definitions
MINOR: Clear out the test database in between each salad scenario.
2011-02-02 14:19:45 +13:00
search
BUGFIX Populates the page with fake data in order to pass subsequent unit tests
2011-02-02 14:20:05 +13:00
security
MINOR Using BlankPage template in SecurityTest, BasicAuthTest to remove ContentController dependency
2011-03-29 18:07:55 +13:00
tasks
MINOR Moved SiteTree, SiteTreeDecorator, SiteConfig, ErrorPage, RedirectorPage, VirtualPage (and related tests) to "cms" module
2011-03-29 18:07:55 +13:00
templates
MINOR: Added missing file for r101867
2011-02-02 14:19:09 +13:00
testing
API CHANGE: Don't generate TestOnly DataObjects in the database immediately; instead let test developers specify them in SapphireTest::$extraDataObjects.
2011-02-02 14:18:04 +13:00
widgets
MINOR: Added explicit listing of testonly dataobjects for widget tests.
2011-02-02 14:18:08 +13:00
ArrayDataTest.php
ENHANCEMENT: added getter to get array back out of an ArrayData instance. MINOR: updated docblocks in ArrayData
2011-02-02 14:19:39 +13:00
ArrayLibTest.php
ENHANCEMENT Use array_combine() instead of custom logic for ArrayLib::valuekey() (thanks paradigmincarnate!)
2011-02-02 14:19:35 +13:00
Bare.yml
MINOR: Added small fixture YML that just lets you log in, for bootstrapping browser automation tests.
2011-02-02 14:17:57 +13:00
bootstrap.php
API CHANGE: Replaced ManifestBuilder::load_test_manifest() calls with new function TestRunner::use_test_manifest(), which pushes a test manifest onto the class loader.
2011-03-24 20:14:43 +11:00
CacheTest.php
MINOR: Speed up cache test (1s is as good a test expiry as 8s)
2011-02-02 14:18:28 +13:00
ClassInfoTest.php
MINOR: Updated ClassInfo::allClasses() and ::exists() to use $_CLASS_MANIFEST rather than $_ALL_CLASSES. This means results from ClassInfo::allClasses() are now lowercase.
2011-03-24 20:14:42 +11:00
ControllerTest.php
ENHANCEMENT: Added allowed actions to core classes
2011-02-14 11:14:51 +13:00
ControllerTest.yml
MINOR Added ControllerTest for $allowed_actions with permission codes, switched this class to extend FunctionalTest and use get() instead of Director:;test() for this purpose (better login/session mocking capabilities)
2009-09-10 06:34:40 +00:00
ConvertTest.php
ENHANCEMENT: html2raw now properly replace strong tag with asterix #5494
2011-02-02 14:19:37 +13:00
CoreTest.php
MINOR #6397 CoreTest should use test specific paths, otherwise conflicts can occur in certain environments
2011-02-02 14:20:07 +13:00
DataObjectDecoratorTest.php
Revert "MINOR Replaced assertType() calls with assertInstanceOf(), deprecated in PHPUnit 3.6 (throws warnings as of 3.5.10)" - cased too many problems with mixed build environments that require PHP 3.4
2011-03-11 15:06:09 +13:00
DataObjectDecoratorTest.yml
APICHANGE: removed page comments from core. Please see the github.com account for page comments functionality
2010-12-11 05:43:08 +00:00
DataObjectSetTest.php
Merge branch '2.4'
2011-02-14 18:47:53 +13:00
DataObjectSetTest.yml
APICHANGE: removed page comments from core. Please see the github.com account for page comments functionality
2010-12-11 05:43:08 +00:00
DataObjectTest.php
MINOR Using BlankPage template in SecurityTest, BasicAuthTest to remove ContentController dependency
2011-03-29 18:07:55 +13:00
DataObjectTest.yml
MINOR Using BlankPage template in SecurityTest, BasicAuthTest to remove ContentController dependency
2011-03-29 18:07:55 +13:00
FileLinkTrackingTest.php
API CHANGE Don't reflect changes in File and Folder property setters on filesystem before write() is called, to ensure that validate() applies in all cases. This fixes a problem where File->setName() would circumvent restrictions in File::$allowed_extensions ( fixes #5693 )
2011-02-02 14:19:34 +13:00
FileLinkTrackingTest.yml
BUGFIX: Fixed image link rewriting and added a test. (from r89011)
2009-10-15 22:40:06 +00:00
FullTestSuite.php
API CHANGE: Replaced ManifestBuilder::load_test_manifest() calls with new function TestRunner::use_test_manifest(), which pushes a test manifest onto the class loader.
2011-03-24 20:14:43 +11:00
GeoipTest.php
BUGFIX: fixed accessing private variable from Geoip. ENHANCEMENT: added Geoip::get_default_country_code(). Fixes #6315
2011-01-09 05:55:17 +00:00
HtmlEditorConfigTest.php
ENHANCEMENT Added support for loading external plugins (with relative paths) in HtmlEditorConfig. This means relative paths can be separate from the plugin name, and fixes a bug where paths containing dashes were ignored by TinyMCE.init().
2011-02-02 14:17:55 +13:00
HTTPRequestTest.php
API CHANGE: Renamed conflicting classes to have an "SS_" namespace, and renamed existing "SS" namespace to "SS_". The affected classes are: HTTPRequest, HTTPResponse, Query, Database, SSBacktrace, SSCli, SSDatetime, SSDatetimeTest, SSLog, SSLogTest, SSLogEmailWriter, SSLogErrorEmailFormatter, SSLogErrorFileFormatter, SSLogFileWriter and SSZendLog.
2009-10-26 03:06:31 +00:00
HTTPTest.php
BUGFIX: preserve the port value if given in HTTP::setGetVar ( #5280 ). BUGFIX: allow username only input rather than user:pass combo.
2011-02-02 14:19:08 +13:00
MemoryLimitTest.php
MINOR: Better checking of safe_mode in MemoryLimitTest
2011-02-02 14:19:31 +13:00
ObjectStaticTest.php
BUGFIX #4929 : Fixed Object::add_static_vars() for uninherited static.s
2011-02-02 14:18:14 +13:00
ObjectTest.php
MINOR Using BlankPage template in SecurityTest, BasicAuthTest to remove ContentController dependency
2011-03-29 18:07:55 +13:00
PhpSyntaxTest.php
MINOR PHPUnit annotations for PhpSyntaxTest
2011-02-02 14:19:52 +13:00
RequestHandlingTest.php
MINOR Using BlankPage template in SecurityTest, BasicAuthTest to remove ContentController dependency
2011-03-29 18:07:55 +13:00
SearchContextTest.php
Revert "MINOR Replaced assertType() calls with assertInstanceOf(), deprecated in PHPUnit 3.6 (throws warnings as of 3.5.10)" - cased too many problems with mixed build environments that require PHP 3.4
2011-03-11 15:06:09 +13:00
SearchContextTest.yml
BUGFIX Fixed SQL syntax error in MATCH AGAINST clause in FulltextFilter
2009-05-24 21:27:48 +00:00
SessionTest.php
MINOR Remove all session data in TestSession that might've been set by the test harness (necessary for test runs through the phpunit binary)
2011-02-02 14:19:51 +13:00
ShortcodeParserTest.php
FEATURE: Added the Shortcode API (ShortcodeParser) to allow you to replace simple BBCode-like tags in a string with the results of a callback.
2009-10-11 00:06:57 +00:00
SoapModelAccessTest.php
API CHANGE: Don't generate TestOnly DataObjects in the database immediately; instead let test developers specify them in SapphireTest::$extraDataObjects.
2011-02-02 14:18:04 +13:00
SoapModelAccessTest.yml
(merged from branches/roa. use "svn log -c <changeset> -g <module-svn-path>" for detailed commit message)
2008-08-11 03:03:52 +00:00
SQLFormatterTest.php
BUGFIX Fixed newlines working properly across different platforms - Windows, for example, won't work properly with just \n so use PHP_EOL for a cross-platform solution
2011-02-02 14:17:38 +13:00
SQLQueryTest.php
ENHANCEMENT Added argument to SQLQuery->leftJoin()/innerJoin() ( #5802 , thanks stojg)
2011-02-02 14:19:41 +13:00
SSViewerCacheBlockTest.php
ENHANCEMENT: Add back in partial caching
2011-03-10 15:04:07 +13:00
SSViewerTest.php
API CHANGE: Moved ManifestBuilder::get_themes() to SSViewer::get_themes().
2011-03-24 20:14:41 +11:00
TokenisedRegularExpressionTest.php
MINOR: Updated various methods to use new manifest methods rather than ManifestBuilder functions or globals.
2011-03-24 20:14:43 +11:00
TransactionTest.php
MINOR Moved readonly section of TransactionTest into postgresql/ module
2011-03-14 16:45:52 +13:00
ViewableDataTest.php
BUGFIX ViewableData->castingClass() cuts off last character of a casting definition if it has bracketed arguments ( fixes #5536 , thanks ajshort)
2011-02-02 14:19:19 +13:00
WebserverRoutingTest.php
MINOR: Updated WebserverRoutingTest to use Security/ping to test if the server is accesible, since ?usetestmanifest is no longer available.
2011-03-25 14:59:34 +11:00