/README.markdown

https://github.com/jeffperrin/object_mother · Markdown · 109 lines · 82 code · 27 blank · 0 comment · 0 complexity · da273b7cc774d028001c857634d48d42 MD5 · raw file

  1. object_mother
  2. ============
  3. _Version 0.2 (July 9th, 2009)_
  4. __Authors:__ [Jeff Perrin](mailto:jeffperrin@gmail.com)
  5. __License:__ MIT License. See MIT-LICENSE file for more details.
  6. object_mother is a library used as a plugin for Rails projects that establishes a
  7. simple pattern for creating and persisting model objects. It takes inspiration from
  8. the "Object Mother" pattern and is currently a work in progress.
  9. See [http://jeffperrin.com/2009/07/08/object-mother-testing-pattern-in-rails/](http://jeffperrin.com/2009/07/08/object-mother-testing-pattern-in-rails/) for some context on why object_mother exists.
  10. ## Installation
  11. object_mother lives as a gem dependency in your application. Since it is for testing only,
  12. place the following line in config/environments/test.rb
  13. config.gem "jeffperrin-object_mother", :lib => "object_mother", :source => "http://gems.github.com"
  14. You can then run:
  15. rake gems:install
  16. rake gems:unpack
  17. Next, create a folder called `object_mother` in your Rails `test` directory. Create a blank ruby file (named whatever you want) in this directory and put your model factories inside.
  18. ## Testing
  19. There are currently no tests to run. This is probably fixable.
  20. ## Usage
  21. object_mother provides a single class called `ObjectMother::Factory` that is sub-classed in your Rails app.
  22. It will include all .rb files in a directory called test/object_mother within your app. A file might look like this
  23. (where we have 3 models, City, Area, and Community):
  24. class CityFactory < ObjectMother::Factory
  25. def self.spawn
  26. City.new
  27. end
  28. def self.populate(model)
  29. model.name = unique('Calgary')
  30. end
  31. end
  32. class AreaFactory < ObjectMother::Factory
  33. def self.spawn
  34. Area.new
  35. end
  36. def self.populate(model)
  37. model.name = unique('SW')
  38. model.city = CityFactory.create!
  39. end
  40. end
  41. class CommunityFactory < ObjectMother::Factory
  42. def self.spawn
  43. Community.new
  44. end
  45. def self.populate(model)
  46. model.name = unique('Evergreen')
  47. model.area = AreaFactory.create!
  48. end
  49. end
  50. Each factory deals specifically with one model type. The `spawn` method must be overridden to let object_mother know what type of object it should create. The `populate` method supplies the model with all attributes necessary to successfully persist a model instance. Once this is done, each factory can be used in tests like so:
  51. #Creates a valid `city` that is not yet persisted
  52. CityFactory.create
  53. #Creates a valid `city` and persists it
  54. CityFactory.create!
  55. #example usage...
  56. context "should show city" do
  57. setup do
  58. get :show, :id => CityFactory.create!.to_param
  59. end
  60. should_respond_with :success
  61. end
  62. #Can also override self.to_hash for your controller tests
  63. context "creating a valid city" do
  64. setup do
  65. post :create, :city => CityFactory.create_as_hash
  66. end
  67. should_redirect_to "city path" do
  68. cities_path
  69. end
  70. end
  71. ## Blocks
  72. object_mother lets you customize the look of your models by passing a block to `create`, `create!` or `create_as_hash` like so:
  73. #override the default name given in the UserFactory.populate method. All other
  74. #attributes will stay the same.
  75. user = UserFactory.create! do |u|
  76. u.name = "Jorge"
  77. end
  78. ## Known Issues
  79. 1) Yes, the `spawn` method should be inferred.
  80. 2) Yes, the `create_as_hash` method should be inferred.
  81. 3) test/object_mother directory (and perhaps an .rb file) should be generated if they don't exist.
  82. 4) I didn't use any crazy meta-programming wizardry. Just really simple code. Sorry.