Opened 14 years ago

Last modified 11 years ago

#14287 new Bug

TEST_MIRROR is not respected in routers

Reported by: David Cramer Owned by: nobody
Component: Database layer (models, ORM) Version: 1.2
Severity: Normal Keywords:
Cc: roman@… Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

When using TEST_MIRROR to proxy database connections in the test environment, the alias is not saved when calling syncdb (and possible other) routines. This causes a problem when you're using routers and checking db aliases.

Here's a quick example:

    def allow_syncdb(self, db, model):
        # analytics has TEST_MIRROR = 'default', so in tests, db is set to 'default' here
        if model._meta.app_label == 'analytics' and db == 'analytics':
            return True

Change History (9)

comment:1 by Russell Keith-Magee, 13 years ago

Resolution: worksforme
Status: newclosed

If TEST_MIRROR is enabled on a database, then syncdb won't be called on that database. That's part of the design contract for TEST_MIRROR.

The analytics alias will still exist, it just acts as a synonym for a connection to the default alias.

I don't see the problem that is being reported here, so I'm marking this worksforme. Feel free to reopen if you can provide a more specific example or explanation of what is (or isn't) happening.

comment:2 by David Cramer, 13 years ago

Resolution: worksforme
Status: closedreopened

I should try to explain this better, so let's try another example.

We have a "cluster foo" and "cluster bar" databases. In development and tests, we map these to the same cluster, so:

DATABASES = {
    'foo': {},
    'bar': {
        'TEST_MIRROR': 'bar',
    }
}

Now in real conditions, we say we want all apps in foo module to go to foo, and bar module to go to bar, so we setup a router:

class TestMirrorRouter(object):
    def db_for_write(self, model, **hints):
        return model._meta.app_label
    
    db_for_read = db_for_write
    
    def allow_syncdb(self, db, model):
        return db == model._meta.app_label

Now the problem exists, that all queries get mapped to the "bar" alias from the "bar" module, but when syncdb happens it passes the db alias as "foo" instead of "bar" (simply because this is the *actual* connection its happening on). Now our future tests which run simple queries against Bar fail in that the tables were never created on the "foo" database.

comment:3 by David Cramer, 13 years ago

I should also note, that this may not *always* be the desired behavior. You may also want to not mirror the alias and just run tests under a second database. We tend to use this for simplified local testing (and have even modified the TEST_MIRROR to proxy connections a bit more thoroughly).

Our simple fix for this was in dev to include a TestRouter which just returns True on allow_syncdb for any model, but that's very hacky and makes it hard to test some real behavior.

comment:4 by Russell Keith-Magee, 13 years ago

Triage Stage: UnreviewedAccepted

Ok - after speaking with David on IRC, I now understand the problem better.

The important point here is the router behavior is using the app_label as the basis for synchronization. In production, there are two databases, sharded by app. However, in testing, for the sake of simplicity, they're not sharded; they're all on the same database, and TEST_MIRROR is used to make this happen.

However, when syncdb is called on 'foo', none of the 'bar' models are created, because the router will prevent anything not in 'foo' from being synchronized.

This is a slight deviation from the original intent of TEST_MIRROR, so the solution may not lie with fixing TEST_MIRROR. Another approach would be to invoke a mock syncdb for 'bar' on 'foo'. It may even be sufficient (although slightly innefficient) to call syncdb on every database, including the aliased mirrors

comment:5 by t0ster, 13 years ago

Cc: roman@… added

comment:6 by Julien Phalip, 13 years ago

Severity: Normal
Type: Bug

comment:7 by Aymeric Augustin, 12 years ago

UI/UX: unset

Change UI/UX from NULL to False.

comment:8 by Aymeric Augustin, 12 years ago

Easy pickings: unset

Change Easy pickings from NULL to False.

comment:9 by Aymeric Augustin, 11 years ago

Status: reopenednew
Note: See TracTickets for help on using tickets.
Back to Top