Organize Python unittest tests based on nesting context similar to RSpec

1.1k Views Asked by At

When writing RSpec tests, I found the nesting context structure it uses very clear and useful:

describe "a laptop" do
  before(:each) do
  end
  context "progamming" do
    before(:each) do
    end
    it "compiles programs" do
    end
    context "with an external monitor" do
      it "shows editors in multiple displays" do
      end
    end
  end
  context "video gaming" do
    before(:each) do
    end
    context "with normal graphic card" do
      before(:each) do
      end
      it "can not play League of Legends" do
      end
    end
    context "with expensive graphic card" do
      before(:each) do
      end
      it "can play League of Legends" do
      end
    end
  end
end

It is very easy to share/DRY those setup and teardown code when they are nested, and with the context structure it's also helpful to "think" about the coverage of the specs. I wonder how we typically write Python unittest tests to achieve this. Or the philosophy is just different?

Looks like we can achieve similar setup/teardown code sharing by inheriting the test class, but there are still some minor issues, and separating them in different classes doesn't seem to be a very readable/maintainable structure if it goes, say 2 layers deeper.

1

There are 1 best solutions below

2
On

Do take a look at some of the BDD framework in python.

  1. Behave - http://pythonhosted.org/behave/
  2. Lettuce - http://lettuce.it/intro/overview.html

Largely modelled after cucumber, the bdd framework in Ruby which was the first story-based framework in RSpec.

Not sure if this answer your question fully, but I hope you will find it useful.

Check out Dan North's blog as well. Real good stuff about the philosophy and principles of development in general.http://dannorth.net/

Also, I think another aspect that you will find useful is the concept of tdd using the outside-in and inside-out appoarch. Rspec/BDD, i think follows the outside-in model . you can have agood look at this discussion which i find really useful https://softwareengineering.stackexchange.com/questions/166409/tdd-outside-in-vs-inside-out