[Unit Testing for Zombie] 06. Using Factory
FACTORIES
Convert the zombies fixture to a Factory Girl Factory called :zombie.
test/fixture/zombies.yml
- zombie:
- name: 'Sally'
- graveyard: 'Valley Dim'
Answer:
test/factories/zombies.rb
- FactoryGirl.define do
- factory :zombie do
- name 'Sally'
- graveyard 'Valley Dim'
- end
- end
Why using factory instead of fixture?
COMPLEX FACTORIES
Use a nested Factory Girl definition to create zombie factories named :sally and :moe, using the data from the fixtures below.
test/fixtures/zombies.yml
- ash:
- name: 'Ash'
- graveyard: 'Petrosville'
- sally:
- name: 'Sally'
- graveyard: 'Valley Dim'
- moe:
- name: 'Moe'
- graveyard: 'Petrosville'
Answer:
test/factories/zombies.rb
- FactoryGirl.define do
- factory :zombie do
- name 'Ash'
- graveyard 'Petrosville'
- # Add sally and moe here
- factory :sally do
- name 'Sally'
- graveyard 'Valley Dim'
- end
- factory :moe do
- name 'Moe'
- end
- end
- end
How to create a factory?
What's good in factory?
We can use nested factory to create new factory and reused common part.
UNIQUE ATTRIBUTES
Refactor the zombie factory using a sequence so that we get a unique name and graveyardeverytime we create a new zombie.
- FactoryGirl.define do
- factory :zombie do
- sequence(:name) {|i| "Ash#{i}" }
- sequence(:graveyard) { |j| "Petrosville Cemetary#{j}" }
- end
- end
Why using sequence?
Every time using a Factory, it equals to :
- FactoryGirl.create(:zombie) //create new zombie instance and save into db
But if the data should be uniqueness, then it will cause some problem like: ActiveRecord: RecordInvalid.
Then we can use sequence to solve this problem.
ASSOCIATIONS
Create a tweet factory with a zombie association, don't forget to set a tweet status.
- FactoryGirl.define do
- factory :zombie do
- name 'Sally'
- graveyard 'Valley Dim'
- end
- end
Answer:
- FactoryGirl.define do
- factory :tweet do
- status "Eat a brain"
- association :zombie
- end
- end
What about data relationship?
USING FACTORIES
Using factories write a test to verify that a tweet is invalid without a status. Be sure tobuild the Tweet, rather than create it.
- FactoryGirl.define do
- factory :tweet do
- association :zombie
- status "Need brain factory."
- end
- end
Answer:
- class TweetTest < ActiveSupport::TestCase
- test "A tweet requires a status" do
- tweet = Factory.build(:tweet, status: nil)
- assert !tweet.valid?, "Status is not being validated"
- end
- end
USING FACTORIES II
Create a tweet using a factory. Then, using Capybara, go to the tweets_url, click on thetweet.status link. Finally, assert that the tweet's show page contains the@tweet.zombie.name in its h3. Use Capybara's within and has_content? methods.
- //index.html
- <ul class="tweets">
- <li><%= link_to @tweet.status, tweets_url(@tweet) %></li>
- </ul>
- //show.html
- <div id='<%="tweet_#{@tweet.id}"%>'>
- <h3><%= @tweet.zombie.name %></h3>
- <p><%= @tweet.status %></p>
- </div>
test/factories/tweets.rb
- FactoryGirl.define do
- factory :tweet do
- association :zombie
- status "Need brain factory."
- end
- end
factories/zombies.rb
- FactoryGirl.define do
- factory :zombie do
- name "Ash"
- graveyard "Factory Hills Cemetary"
- end
- end
Answer:
- class TweetTest < ActionDispatch::IntegrationTest
- test "tweet page has zombie link" do
- tweet = Factory(:tweet)
- visit tweets_url
- click_link tweet.status
- within("h3") do
- assert has_content? (tweet.zombie.name)
- end
- end
- end
[Unit Testing for Zombie] 06. Using Factory的更多相关文章
- Unit testing Cmockery 简单使用
/********************************************************************** * Unit testing Cmockery 简单使用 ...
- [Mockito] Spring Unit Testing with Mockito
It is recommened to write unit testing with Mockito in Spring framework, because it is much faster w ...
- Unit Testing of Spring MVC Controllers: “Normal” Controllers
Original link: http://www.petrikainulainen.net/programming/spring-framework/unit-testing-of-spring-m ...
- Unit Testing of Spring MVC Controllers: Configuration
Original Link: http://www.petrikainulainen.net/programming/spring-framework/unit-testing-of-spring-m ...
- Java Unit Testing - JUnit & TestNG
转自https://www3.ntu.edu.sg/home/ehchua/programming/java/JavaUnitTesting.html yet another insignifican ...
- Unit Testing with NSubstitute
These are the contents of my training session about unit testing, and also have some introductions a ...
- [Java Basics3] XML, Unit testing
What's the difference between DOM and SAX? DOM creates tree-like representation of the XML document ...
- Javascript单元测试Unit Testing之QUnit
body{ font: 16px/1.5em 微软雅黑,arial,verdana,helvetica,sans-serif; } QUnit是一个基于JQuery的单元测试Uni ...
- [Unit Testing] AngularJS Unit Testing - Karma
Install Karam: npm install -g karma npm install -g karma-cli Init Karam: karma init First test: 1. A ...
随机推荐
- Python序列化模块-Pickel写入和读取文件
利用pickle 存储和读取文件 1.存储文件: #引入所需包,将列表元素存入data2的文件里面 import pickle mylist2 ={'1','nihao','之后','我们',1,2, ...
- ref和out的用法和区别。
关于ref和out的用法和区别在网上已经有很多的解释,这里只不过是写下对于我而说比较容易理解的解释. ref和out都可以用来在函数中返回数据,类似于c++中指针. 参数 Ref Out 是否一定需要 ...
- centos 7 安装python3.5
1.安装编译环境 yum groupinstall 'Development Tools' yum install zlib-devel bzip2-devel openssl-devel ncure ...
- Boolean Expressions POJ - 2106 (表达式求值)
The objective of the program you are going to produce is to evaluate boolean expressions as the one ...
- java 安全 技术
韩梦飞沙 韩亚飞 313134555@qq.com yue31313 han_meng_fei_sha 加密对应的类 是 Cipher ,意思 是加密的意思.这个类 在 javax.cryp ...
- [BZOJ4591][SHOI2015]超能粒子炮·改(Lucas定理+数位DP)
大组合数取模可以想到Lucas,考虑Lucas的意义,实际上是把数看成P进制计算. 于是问题变成求1~k的所有2333进制数上每一位数的组合数之积. 数位DP,f[i][0/1]表示从高到低第i位,这 ...
- Pollard-rho算法:模板
#include<algorithm> #include<cstdio> #include<cstdlib> #define N 5500 using namesp ...
- 【并查集】BZOJ1370- [Baltic2003]Gang团伙
[题目大意] 在某城市里住着n个人,任何两个认识的人不是朋友就是敌人,而且满足: 1. 我朋友的朋友是我的朋友: 2. 我敌人的敌人是我的朋友: 所有是朋友的人组成一个团伙.告诉你关于这n个人的m条信 ...
- bzoj 2045: 双亲数
2045: 双亲数 Description 小D是一名数学爱好者,他对数字的着迷到了疯狂的程度. 我们以d = gcd(a, b)表示a.b的最大公约数,小D执著的认为,这样亲密的关系足可以用双亲来描 ...
- BeanFactoryPostProcessor和BeanPostProcessor
1. BeanFactoryPostProcessor调用(见AbstractApplicationContext.refresh): >> 创建DefaultListableBeanFa ...