开发者

What's the difference between a fixture and a factory in my unit tests?

A little confused here, what is the difference between a factory 开发者_Go百科and a fixture?

So I'm using factory_girl, when I create an object using the factory, should it be persisted to the db? Or is that what a fixture is, data persisted to the db via the models etc.

Or are these totally unrelated :)


The really short answer is that there is no difference conceptually between a Rails fixture and a Factory Girl factory. This is just different syntax to accomplish the same thing.

However, this gets confusing because the terminology of general testing/coding concepts has been co-opted by individual projects in the Rails/Ruby world. In general:

  • A Fixture is "the fixed state used as a baseline for running tests in software testing"
  • A Factory is "an object for creating other objects"

Basically in Rails, both Fixtures and Factories (as defined by Factory Girl), are just ways of creating objects. You are supposed to use them to create your Test Fixture, or the setup state of your test. The confusing part is that you can use multiple Rails "Fixtures" to create the Fixture (baseline) of an individual test.

Factory Girl itself is an implementation of the Object Mother pattern, that describes a way of creating test fixture setup using personas.


Well they are used to achieve the same goal, to populate the DB with data for your test.

Fixtures are way faster than factories because they don't use validation or any of the model's logic but are very hard to maintain and the lack of validation can break your tests.

With factories you have meaningful (and valid) content in the DB at the cost of speed.

There are other solutions though like fixture_builder that let you define the fixtures using factories ;) the factories are run just once and then converted to fixtures. https://github.com/rdy/fixture_builder


A Factory, using factory_girl for instance, is only a mean to build objects with predefined values. It doesn't require your to insert them into any kind of persisted store. It is just convenient to build complex objects. factory_girl has obviously many more features, but that is its primary goal as I see it.

NOTE : I'm answering only half of the question here because I'm not very familiar with the fixture... just throwing my 2 cents here. Hope this helps.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜