vote up 2 vote down star
2

Can someone show me how to write unit tests for sqlalchemy model I created using nose.

I just need one simple example.

Thanks.

flag
Be more specific: do you need help in how to setup nose? or how to test a model? – van May 28 at 12:59

2 Answers

vote up 7 vote down

You can simply create an in-memory SQLite database and bind your session to that.

Example:


from db import session # probably a contextbound sessionmaker
from db import model

from sqlalchemy import create_engine

def setup():
    engine = create_engine('sqlite:///:memory:')
    session.configure(bind=engine)
    # You probably need to create some tables and 
    # load some test data, do so here.

    # To create tables, you typically do:
    model.metadata.create_all(engine)

def teardown():
    session.remove()


def test_something():
    instances = session.query(model.SomeObj).all()
    eq_(0, len(instances))
    session.add(model.SomeObj())
    session.flush()
    # ...
link|flag
Great answer! I think you need to call create_all on the MetaData object to actually create tables. Also if db-vendor specific data types are used, then some of the DDLs may not run. – van May 28 at 13:03
Good points. I updated the example to show a call to create_all. – codeape Jun 2 at 12:18
vote up 0 vote down

Check out the fixture project. We used nose to test that and it's also a way to declaratively define data to test against, there will be some extensive examples for you to use there!

See also fixture documentation.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.