summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2015-05-20[1.8.x] Fixed incorrect session.flush() in cached_db session backend.Tim Graham
This is a security fix; disclosure to follow shortly. Thanks Sam Cooke for the report and draft patch.
2015-05-20[1.8.x] Refs #24652 -- Made sure template backend tests call their super ↵Simon Charette
setUpClass. Backport of ead36e8a471389a6032d825c8245245ebb89ea5d from master
2015-05-20[1.8.x] Refs #24652 -- Converted a template test to avoid executing queries.Simon Charette
Backport of 8bf1449edb4139451643e3823b194b4c02ca7633 from master
2015-05-20[1.8.x] Refs #24652 -- Enforced test isolation in file_storage tests.Simon Charette
Backport of 3db21c351b9b1108954c388799d35c8dad7dfc19 from master
2015-05-20[1.8.x] Fixed typo in file_storage tests.Tim Graham
Backport of e2b77aceddbda9071fcfc38f90fb50d091d0b5fc from master
2015-05-20[1.8.x] Fixed #24705 -- Fixed negated Q objects in expressions.Anssi Kääriäinen
Avoided split_exclude() for Q when used as an expression. Backport of bc87061a3c7c8d6b4d2469f35cc78683c6cff647 from master
2015-05-18[1.8.x] Fixed #24812 -- Fixed app registry RuntimeWarnings in schema and ↵Tim Graham
migrations tests. Backport of f5da4380723c93998a4f5a845b6f26fa51a2cfe1 from master
2015-05-15[1.8.x] Fixed #24791 -- Added fallback when 'postgres' database isn't availableClaude Paroz
Thanks Carl Meyer and Tim Graham for the reviews. Backport of 322605035 from master.
2015-05-15[1.8.x] Fixed #24799 -- Fixed session cookie deletion when using ↵Bo Lopker
SESSION_COOKIE_DOMAIN Backport of 2dee853ed4def42b7ef1b3b472b395055543cc00 from master
2015-05-15[1.8.x] Fixed #24757 -- Recreated MySQL index when needed during combined ↵Claude Paroz
index removal Thanks Thomas Recouvreux for the report and Tim Graham for the tests and review. Backport of ae635cc36 from master.
2015-05-15[1.8.x] Fixed #24802 -- Delayed GDAL check for OSMGeoAdminTim Graham
Backport of a37dcfd0a38cff24eb4fb5e3858791aa5428c853 from master
2015-05-13[1.8.x] Fixed #24751 -- Fixed HStoreField isnull lookup.Tim Graham
Backport of 3c8fe5dddf34533a419d2deed5208a28de32cb4a from master
2015-05-12[1.8.x] Fixed #24698, #24712 -- Added ForeignKey.get_db_prep_value()Abhaya Agarwal
Fixed crashes with ForeignKey to UUIDField and inheritance with UUIDField primary keys.
2015-05-11[1.8.x] Fixed #24748 -- Fixed incorrect GROUP BY on MySQL in some queriesAnssi Kääriäinen
When the query's model had a self-referential foreign key, the compiler.get_group_by() code incorrectly used the self-referential foreign key's column (for example parent_id) as GROUP BY clause when it should have used the model's primary key column (id). Backport of adc57632bc26cc8fe42bdb6aff463f883214980a from master
2015-05-11[1.8.x] Fixed #24766 -- Added join promotion for Case expressionsAnssi Kääriäinen
Backport of be9d645346a20a6c394bf70d47b1b1d5c81ff530 from master
2015-05-05[1.8.x] Fixed #24752 -- query crash when reusing Case expressionsAnssi Kääriäinen
Case expressions weren't copied deep enough (self.cases list was reused resulting in an error). Backport of 7b05d2fdaed582662d8f79130932f600f4f966a0 from master
2015-05-04[1.8.x] Fixed #24685 -- Fixed check for template name unicity.Aymeric Augustin
Thanks Preston Timmons for the report. Backport of 1563b89 from master
2015-04-30[1.8.x] Fixed model_regress test failure on non-ASCII path; refs #24717.Tim Graham
Backport of 29e90f3ae0b0b72bbdf342e0136414bff917c6a6 from master
2015-04-30[1.8.x] Fixed #24725 -- Allowed renaming of target models in ManyToMany ↵Markus Holtermann
relations This is a regression caused by introducing rendered migration states in 1aa3e09c2043 and the _meta refactoring in fb48eb05816b. Thanks to Danilo Bargen for reporting the issue and Marten Kenbeek and Tim Graham for triaging the bug and providing the initial test case. Backport of 63f9b633f9cb620a4c4764b47dca127706a8d7b4 from master
2015-04-29[1.8.x] Fixed #24717 -- Fixed model_regress test failure on RHEL6 SCLDavid D. Riddle
The test failed on RHEL6 systems running python 2.7 from a RedHat Software Collection (SCL) because this test runs an external python script with a stripped system environment. RedHat SCLs work by setting a number of system environment variables when these are stripped out by this test the python 2.7 interpreter is no longer able to function properly because it can not find the system libraries needed. Now we use use mock to modify the system environment directly. Backport of 31e6c9c8e310e68a96c1f76b9657242c6cecaa4d from master
2015-04-28[1.8.x] Fixed #24719 -- Restored the ability to use interators as queryset ↵Aric Coady
related object filters. Backport of 9c2d8cde77ee6edd407e92f93eacd4624290394f from master
2015-04-28[1.8.x] Fixed #24714 -- Used more specific assertions than assertEqual in tests.Alasdair Nicol
Backport of eaeea6f94701547ce1b50dbcf5cf71460e9e4c91 from master
2015-04-27[1.8.x] Used assertIsInstance in tests.Alasdair Nicol
Backport of d91321e8be0d8e52546026d461b14157d565870c from master
2015-04-25[1.8.x] Fixed #24701 -- Converted model manager names to unicode in migrationsMarkus Holtermann
Thanks to Reto Aebersold for reporting the issue and Tim Graham and Claude Paroz for the review. Backport of faad6070ee2eeea270c76381f9ca5999bf1ac15f from master
2015-04-21[1.8.x] Fixed #24573 -- Considered new related models for reloadingMarkus Holtermann
Thanks tttomekkk for the report. Backport of b93690c4652a108b4305c0df34509bfc267fd927 from master
2015-04-20[1.8.x] Fixed #24667 --- Repaired model_fields cardinality testYoong Kang Lim
Backport of 36eab95e7fde7fad4368192ddbef4e2dbb32dc91 from master
2015-04-19[1.8.x] Fixed #24658 -- Added missing Meta attribute in schema testsClaude Paroz
Without that, the Note model would be initially created and then the tests using that model failed when run in isolation. Backport of f54c0ec06e from master.
2015-04-18[1.8.x] Fixed #24595 Oracle test failureShai Berger
The only problem for Oracle was the test, which tested nullity on text/char fields -- but Oracle interprets_empty_strings_as_null. Backport of d5a0acc from master
2015-04-17[1.8.x] Fixed #24595 -- Prevented loss of null info in MySQL field alterationClaude Paroz
Thanks Simon Percivall for the report, and Simon Charette and Tim Graham for the reviews. Backport of 02260ea3f6 from master.
2015-04-16[1.8.x] Fixed gis_tests when run without GIS dependencies.Tim Graham
Backport of ed336a1a5d3991acef2208b7aaf9fbe99af48a14 from master
2015-04-16[1.8.x] Fixed #24605 -- Fixed incorrect reference to alias in subquery.Anssi Kääriäinen
Thanks to charettes and priidukull for investigating the issue, and to kurevin for the report. Backport of 355c5edd9390caad5725375abca03460805f663b from master
2015-04-16[1.8.x] Fixed #24615 -- ordering by expression not part of SELECTAnssi Kääriäinen
Fixed queries where an expression was used in order_by() but the expression wasn't in the query's select clause (for example the expression could be masked by .values() call) Thanks to Trac alias MattBlack85 for the report. Backport of fb5c7748da from master.
2015-04-15[1.8.x] Fixed model_fields tests to use django TestCase.Jon Dufresne
Backport of 97bb48d9ba864060d57a3137fb9c456b98ecc79b from master
2015-04-14[1.8.x] Refs #24625 -- Filtered docutils warnings output in testsMarkus Holtermann
Instead of setting ``warning_stream`` in the docutils config overrides to ``False`` I opted for filtering the stderr in the tests to keep the error output showing up in server logs. Thanks Tim Graham for the report and review Backport of 3caf7efb44712f89d6552076c240a3c898673a2c from master
2015-04-13[1.8.x] Fixed #24611 -- Fixed update() crash with related UUID pk object.Jay Wineinger
Backport of 923da0274a9a8c4ef2ac9776f71bd14628e39fc3 from master
2015-04-11[1.8.x] Fixed #24625 -- Prevented arbitrary file inclusion in admindocsMarkus Holtermann
Thanks Tim Graham for the review. Backport of 09595b4fc67ac4c94ed4e0d4c69acc1e4a748c81 from master
2015-04-11[1.8.x] Fixed #24624 -- Replaced obsoleted rel.opts in admindocs viewClaude Paroz
Thanks Scott Sanders for the report, and Markus Holtermann and Tim Graham for the reviews. Refs #24381. Backport of 4e7ed8d0d from master.
2015-04-09[1.8.x] Fixed #24578 -- Fixed crash with QuerySet.update() on FK to O2O fields.Tim Graham
Thanks Anssi Kääriäinen for review. Backport of 10b4c010ab2cdaa6ba8bfaec3e3540299ea77be from master
2015-04-07[1.8.x] Fixed #24513 -- Made sure a model is only rendered once during reloadsPatryk Zawadzki
This also prevents state modifications from corrupting previous states. Previously, when a model defining a relation was unregistered first, clearing the cache would cause its related models' _meta to be cleared and would result in the old models losing track of their relations. Backport of 0385dad073270c37f8c4a5f13edce43f2a69ba8a from master
2015-04-06[1.8.x] Fixed #24584 -- Fixed microsecond handling with older MySQLdbJon Dufresne
Backport of 2cf58e80d from master.
2015-04-05[1.8.x] Fixed #24278 -- Fixed serialization of migration operations.Marten Kenbeek
Fixed MigrationWriter.serialize() to correctly handle migration operations by utilizing OperationWriter. Thanks Piotr Maliński for the report. Backport of e8e4f978dd4b7a3d0c689c6e3301e3c6f9e50003 from master
2015-04-05[1.8.x] Refs #24278 -- Allowed multi-line serializations in OperationWriter.Marten Kenbeek
Changed OperationWriter to support multi-line serialized values with correct indentation. Backport of d597174bd4cfd9a0e1b34dae8b4d8d027a8cab72 from master
2015-04-04[1.8.x] Fixed flake8 warning.Tim Graham
2015-04-04[1.8.x] Fixed #24569 -- Made some translation functions accept None valueClaude Paroz
get_language() can return None when translations are deactivated. Thanks Nicola Peduzzi for the reporti and Tim Graham for the review. Backport of 7a0d9b5cda from master.
2015-04-04[1.8.x] Fixed #24571 -- Restored testserver positional arguments parsingClaude Paroz
Thanks Domas Lapinskas for the report and Tim Graham for the review. Backport of 426b63ba04 from master.
2015-04-02[1.8.x] Fixed #24566 -- Added support for serializing timedeltaBaptiste Mispelon
Thanks to knbk for the report. Backport of 30a3c2f74c030449d3a8b9f02ab6744874712e54 from master.
2015-04-02[1.8.x] Fixed mistakes in tests unveiled by version bump to 1.8.1.Tim Graham
2015-04-01[1.8.x] Adapted form regression test to new translationsClaude Paroz
Backport of 2112b7d78 from master.
2015-04-01[1.8.x] Refs #24538 -- Simplified a test per Aymeric's feedback.Tim Graham
Backport of a184a99123e4dc4c2a90c20e1604e5d301cd76bf from master
2015-04-01[1.8.x] Fixed #23441, #24555 -- Improved the behavior of InclusionNode.Tim Graham
This change: * Makes the InclusionNode cache-safe by removing render-time side effects to its nodelist. * Ensures the render_context stack is properly scoped and reset by updating the render call to use Template.render rather than Nodelist.render. Backport of 0808ccce3808235c5b5a56e3f689cec0d4bc0ebf from master