| Andrew Cooke | Contents | Latest | RSS | Twitter | Previous | Next

C[omp]ute

Welcome to my blog, which was once a mailing list of the same name and is still generated by mail. Please reply via the "comment" links.

Always interested in offers/projects/new ideas. Eclectic experience in fields like: numerical computing; Python web; Java enterprise; functional languages; GPGPU; SQL databases; etc. Based in Santiago, Chile; telecommute worldwide. CV; email.

Personal Projects

Lepl parser for Python.

Colorless Green.

Photography around Santiago.

SVG experiment.

Professional Portfolio

Calibration of seismometers.

Data access via web services.

Cache rewrite.

Extending OpenSSH.

Last 100 entries

Re: Python's sad, unimaginative Enum; Re: Some explanation; Some explanation; Printing binary trees sideways; Atoms in python; About "Python's sad, unimaginative Enum"; Frustration Understood; Some good feedback here; this is fucking useless; I agree with you #nt; What would be imaginative?; Re: Enum; Enum; Python's sad, unimaginative Enum; Possible Fix; Work, Exhaustion, Vacation; VirtualBox with Centos 6.3 to 6.4, client; Matasano - Programming Lessons Learned; PDF to HTML; Alternate Substitution; Why RSA Works; Trigger; Dreaming of Death; Example: Tracing; Using Coroutines In Protocol Simulations; Python 3.3 Only; Pure Python SHA1 and MD4 Implementations; Ubuntu on VirtualBox; Starting TOR as a service on OpenSuse 12.3; 1001 Albums; Using fail2ban on OpenSuse 12.3; PPPoE on OpenSuse 12.3; Good Article on Unified Physics; It's Police (Carabineros); Linux Software for Listening to and Exploring Music; Android is Pretty Bad; Lucky Number; 3D Printing for Casting; Cover Art for MPDroid; Who'd a thought the French were so bigoted?; PS Input Signal; Small Problem with Roksan K2 Amp; Roksan K2 Amp + ATC SCM7 Speakers; Do What Makes Sense; Re: Arguing About Tests, Still; Arguing About Tests, Still; Images; Good Article on NY Drummers; Related Bug Report; Getting Python 3.3 and Virtualenv Working in OpenSuse 12.3; How I Am; Awesome video about digital audio; The Difference Between Dimensional and Normalized Databases; The rise of the new Chinese bogeyman; Updated Syntax; Very First Steps to C-ORM; The Ideal User Interface For Music Exploration; Can The Republicans Be Saved?; Rate Limiting Calls to EchoNest; Mods to Cache; Comparing UYKFG and UYKFD/E/F; Someone Else is Concerned; EchoNest-based Playlist Generator for MPD; Example Voting Results; A Heavyweight Python Cache; Identifying Artists with EchoNest; Notes on Pregalex / Pregabalina / Lyrica; The Neil Cowley Trio; Drake - Make for Data; A Reliable Python Web Service; Useful Python Date/Time Library?; Need to Sleep, But this is Good; Command Line Set Difference; Little Details...; Linux Command Line Tricks; AutoTools Tutorial; Hangman Tactics; A Tor Proxy Embedded In A Web Page; Tree (Nested Dicts) in Python; Sleeping at Parties; I Know Someone Who Hurts Other People; Light and Tea; Description of the LCS35 Time Capsule Crypto-Puzzle; Re: I can relate to that ...; I can relate to that ...; Re: It's 2012 Why Does My IDE Suck?; My Own Alternative Medicine; Nice explanation of SVM; Why and How Writing Crypto is Hard; Re: It's 2012 Why Does My IDE Suck?; Incremental Regular Expressions; BBC Map Confused at Pole; Social Media: Ground Zero in the Culture War; My Visit to the Psycho Doc; Learning Modern 3D Graphics Programming; Hope you got some crackers to go with the cheese; Re: But how easy would it be ...; But how easy would it be ...; Powerline Freq Fingerprinting of Audio; The Folly of Scientism; Cheese - Because You're Going to Die Anyway

© 2006-2013 Andrew Cooke (site) / post authors (content).

Testing Django with Selenium

From: andrew cooke <andrew@...>

Date: Sat, 18 Sep 2010 17:22:06 -0400

I've been looking at how best to test a Django project with Selenium.

For some background on Selenium see my earlier posts:
  - http://www.acooke.org/cute/SeleniumWe0.html
  - http://www.acooke.org/cute/SeleniumTe0.html

Now I want to add tests to a Django based web service.  Django supports
defining and running tests (including defining database contents with
fixtures), but a Selenium test also requires that the application be running
and connected to the database.

The latest Django version (1.2) included new support for both extending how
tests run and for having more than one database configured.  Unfortunately
that means that most third party testing libraries are currently broken
(especially if you do configure more than one database).

After looking around, I found that the "sane Django testing" package seemed to
be the best choice (the developer's first language isn't English, and it's a
one-person project, which worried me, but he's been great with support and the
documentation, while brief, makes a lot of sense).

  http://devel.almad.net/docs/django-sane-testing/index.html
  http://devel.almad.net/trac/django-sane-testing/
  http://github.com/Almad/django-sane-testing

For example, it includes nose support (in fact, you need to have nose
installed, even if you're not using it) which should (haven't tried it yet)
make selecting what tests to run a lot simpler.

To get the full 1.2 support you currently need to checkout a branch:
  git clone http://github.com/Almad/django-sane-testing.git sane
  cd sane
  git checkout -b multidb origin/multidb

Then you add djangosanetesting to Python's path and add a test to your Django
project.  For example, create a "tests" directory in an app and then, in
there, a file containing a test that subclasses SeleniumTestCase

  from djangosanetesting.cases import SeleniumTestCase

  class TestSeleniumGoogle(SeleniumTestCase):

      def test_login(self):
	  self.selenium.open('/login')

Note how this includes the "selenium" attribute, just as with the Java testing
I described earlier.

Next, separately download Selenium and start it up.  I decided to use the
alpha 2 release:
  java -jar selenium-2.0a5/selenium-server-standalone-2.0a5.jar

And add a few extra lines to settings.py:
  TEST_RUNNER = 'djangosanetesting.testrunner.run_tests'
  FORCE_SELENIUM_TESTS = True
  SELENIUM_BROWSER_COMMAND = "*firefox"
(the "force" gives better errors when getting started).

With that, the following will run the test:
  PATH=/usr/lib64/firefox:$PATH
  PYTHONPATH=... python manage.py test --verbosity=2 myapp
(the path fix I described in an earlier post - it gives Selenium access to the
Firefox binary instead of a startup script).

It's not fast, because it needs to build the test databases, start the
application, and call out to the Selenium server, but it works.  Sweet!

Andrew

Comment on this post