FACTORIES

Convert the zombies fixture to a Factory Girl Factory called :zombie.

test/fixture/zombies.yml

  1. zombie:
  2. name: 'Sally'
  3. graveyard: 'Valley Dim'

Answer:

test/factories/zombies.rb

  1. FactoryGirl.define do
  2. factory :zombie do
  3. name 'Sally'
  4. graveyard 'Valley Dim'
  5. end
  6. 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

  1. ash:
  2. name: 'Ash'
  3. graveyard: 'Petrosville'
  4.  
  5. sally:
  6. name: 'Sally'
  7. graveyard: 'Valley Dim'
  8.  
  9. moe:
  10. name: 'Moe'
  11. graveyard: 'Petrosville'

Answer:

test/factories/zombies.rb

  1. FactoryGirl.define do
  2. factory :zombie do
  3. name 'Ash'
  4. graveyard 'Petrosville'
  5.  
  6. # Add sally and moe here
  7. factory :sally do
  8. name 'Sally'
  9. graveyard 'Valley Dim'
  10. end
  11.  
  12. factory :moe do
  13. name 'Moe'
  14. end
  15. end
  16. 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.

  1. FactoryGirl.define do
  2. factory :zombie do
  3. sequence(:name) {|i| "Ash#{i}" }
  4. sequence(:graveyard) { |j| "Petrosville Cemetary#{j}" }
  5. end
  6. end

Why using sequence?

Every time using a Factory, it equals to :

  1. 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.

  1. FactoryGirl.define do
  2. factory :zombie do
  3. name 'Sally'
  4. graveyard 'Valley Dim'
  5. end
  6. end

Answer:

  1. FactoryGirl.define do
  2. factory :tweet do
  3. status "Eat a brain"
  4. association :zombie
  5. end
  6. 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.

  1. FactoryGirl.define do
  2. factory :tweet do
  3. association :zombie
  4. status "Need brain factory."
  5. end
  6. end

Answer:

  1. class TweetTest < ActiveSupport::TestCase
  2. test "A tweet requires a status" do
  3. tweet = Factory.build(:tweet, status: nil)
  4. assert !tweet.valid?, "Status is not being validated"
  5. end
  6. 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.

  1. //index.html
  2.  
  3. <ul class="tweets">
  4. <li><%= link_to @tweet.status, tweets_url(@tweet) %></li>
  5. </ul>
  1. //show.html
  2.  
  3. <div id='<%="tweet_#{@tweet.id}"%>'>
  4. <h3><%= @tweet.zombie.name %></h3>
  5. <p><%= @tweet.status %></p>
  6. </div>

test/factories/tweets.rb

  1. FactoryGirl.define do
  2. factory :tweet do
  3. association :zombie
  4. status "Need brain factory."
  5. end
  6. end

factories/zombies.rb

  1. FactoryGirl.define do
  2. factory :zombie do
  3. name "Ash"
  4. graveyard "Factory Hills Cemetary"
  5. end
  6. end

Answer:

  1. class TweetTest < ActionDispatch::IntegrationTest
  2. test "tweet page has zombie link" do
  3. tweet = Factory(:tweet)
  4. visit tweets_url
  5. click_link tweet.status
  6.  
  7. within("h3") do
  8. assert has_content? (tweet.zombie.name)
  9. end
  10. end
  11. end

[Unit Testing for Zombie] 06. Using Factory的更多相关文章

  1. Unit testing Cmockery 简单使用

    /********************************************************************** * Unit testing Cmockery 简单使用 ...

  2. [Mockito] Spring Unit Testing with Mockito

    It is recommened to write unit testing with Mockito in Spring framework, because it is much faster w ...

  3. Unit Testing of Spring MVC Controllers: “Normal” Controllers

    Original link: http://www.petrikainulainen.net/programming/spring-framework/unit-testing-of-spring-m ...

  4. Unit Testing of Spring MVC Controllers: Configuration

    Original Link: http://www.petrikainulainen.net/programming/spring-framework/unit-testing-of-spring-m ...

  5. Java Unit Testing - JUnit & TestNG

    转自https://www3.ntu.edu.sg/home/ehchua/programming/java/JavaUnitTesting.html yet another insignifican ...

  6. Unit Testing with NSubstitute

    These are the contents of my training session about unit testing, and also have some introductions a ...

  7. [Java Basics3] XML, Unit testing

    What's the difference between DOM and SAX? DOM creates tree-like representation of the XML document ...

  8. Javascript单元测试Unit Testing之QUnit

    body{ font: 16px/1.5em 微软雅黑,arial,verdana,helvetica,sans-serif; }           QUnit是一个基于JQuery的单元测试Uni ...

  9. [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 ...

随机推荐

  1. Python序列化模块-Pickel写入和读取文件

    利用pickle 存储和读取文件 1.存储文件: #引入所需包,将列表元素存入data2的文件里面 import pickle mylist2 ={'1','nihao','之后','我们',1,2, ...

  2. ref和out的用法和区别。

    关于ref和out的用法和区别在网上已经有很多的解释,这里只不过是写下对于我而说比较容易理解的解释. ref和out都可以用来在函数中返回数据,类似于c++中指针. 参数 Ref Out 是否一定需要 ...

  3. centos 7 安装python3.5

    1.安装编译环境 yum groupinstall 'Development Tools' yum install zlib-devel bzip2-devel openssl-devel ncure ...

  4. Boolean Expressions POJ - 2106 (表达式求值)

    The objective of the program you are going to produce is to evaluate boolean expressions as the one ...

  5. java 安全 技术

    韩梦飞沙  韩亚飞  313134555@qq.com  yue31313  han_meng_fei_sha 加密对应的类 是 Cipher ,意思 是加密的意思.这个类 在  javax.cryp ...

  6. [BZOJ4591][SHOI2015]超能粒子炮·改(Lucas定理+数位DP)

    大组合数取模可以想到Lucas,考虑Lucas的意义,实际上是把数看成P进制计算. 于是问题变成求1~k的所有2333进制数上每一位数的组合数之积. 数位DP,f[i][0/1]表示从高到低第i位,这 ...

  7. Pollard-rho算法:模板

    #include<algorithm> #include<cstdio> #include<cstdlib> #define N 5500 using namesp ...

  8. 【并查集】BZOJ1370- [Baltic2003]Gang团伙

    [题目大意] 在某城市里住着n个人,任何两个认识的人不是朋友就是敌人,而且满足: 1. 我朋友的朋友是我的朋友: 2. 我敌人的敌人是我的朋友: 所有是朋友的人组成一个团伙.告诉你关于这n个人的m条信 ...

  9. bzoj 2045: 双亲数

    2045: 双亲数 Description 小D是一名数学爱好者,他对数字的着迷到了疯狂的程度. 我们以d = gcd(a, b)表示a.b的最大公约数,小D执著的认为,这样亲密的关系足可以用双亲来描 ...

  10. BeanFactoryPostProcessor和BeanPostProcessor

    1. BeanFactoryPostProcessor调用(见AbstractApplicationContext.refresh): >> 创建DefaultListableBeanFa ...