Ruby on Rails チュートリアル 第3章③ テスト自動化


○この記事の要点
「第3章 ほぼ静的なページの作成」の最後にあるテスト自動化の設定に関する内容メモ
思ったことなどのメモ

○内容
・成功/失敗の表示設定をする「minitest reporters ( 3.6.1)」
・ファイルの変更を検出して必要なテストだけを自動実行してくれる「Guard (3.6.2)」
の2つを設定

1.成功/失敗の表示設定をする「minitest reporters ( 3.6.1)」
test/test_helper.rb に
require "minitest/reporters"
Minitest::Reporters.use!
の2行を追加

test/test_helper.rb
ENV['RAILS_ENV'] ||= 'test'
require File.expand_path('../../config/environment', __FILE__)
require 'rails/test_help'
require "minitest/reporters"
Minitest::Reporters.use!

class ActiveSupport::TestCase
  # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
  fixtures :all

  # Add more helper methods to be used by all tests here...
end

○修正前

○修正後

成功、失敗に色がつく。テスト進捗状況が表示されるようになる

2.ファイルの変更を検出して必要なテストだけを自動実行してくれる「Guard (3.6.2)」
Guardは、ファイルシステムの変更を監視し、例えばstatic_pages_test.rbファイルなどを変更すると自動的にテストを実行してくれるツール
(1)$ sudo yum install -y tmux # Cloud9を使っている場合に必要。イベント通知の仕組みらしい
⇒チュートリアルには(1)を実施。とされていたが、実行してみると、yumコマンド対応していないらしいので代わりに(2)を実施
(2)sudo apt-get install -y tmux で取得
(3)bundle exec guard init
(4)Guardfileを編集

Guardfile
# Guardのマッチング規則を定義
guard :minitest, spring: "bin/rails test", all_on_start: false do
  watch(%r{^test/(.*)/?(.*)_test\.rb$})
  watch('test/test_helper.rb') { 'test' }
  watch('config/routes.rb')    { integration_tests }
  watch(%r{^app/models/(.*?)\.rb$}) do |matches|
    "test/models/#{matches[1]}_test.rb"
  end
  watch(%r{^app/controllers/(.*?)_controller\.rb$}) do |matches|
    resource_tests(matches[1])
  end
  watch(%r{^app/views/([^/]*?)/.*\.html\.erb$}) do |matches|
    ["test/controllers/#{matches[1]}_controller_test.rb"] +
    integration_tests(matches[1])
  end
  watch(%r{^app/helpers/(.*?)_helper\.rb$}) do |matches|
    integration_tests(matches[1])
  end
  watch('app/views/layouts/application.html.erb') do
    'test/integration/site_layout_test.rb'
  end
  watch('app/helpers/sessions_helper.rb') do
    integration_tests << 'test/helpers/sessions_helper_test.rb'
  end
  watch('app/controllers/sessions_controller.rb') do
    ['test/controllers/sessions_controller_test.rb',
     'test/integration/users_login_test.rb']
  end
  watch('app/controllers/account_activations_controller.rb') do
    'test/integration/users_signup_test.rb'
  end
  watch(%r{app/views/users/*}) do
    resource_tests('users') +
    ['test/integration/microposts_interface_test.rb']
  end
end

# 与えられたリソースに対応する統合テストを返す
def integration_tests(resource = :all)
  if resource == :all
    Dir["test/integration/*"]  else
    Dir["test/integration/#{resource}_*.rb"]
  end
end

# 与えられたリソースに対応するコントローラのテストを返す
def controller_test(resource)
  "test/controllers/#{resource}_controller_test.rb"
end

# 与えられたリソースに対応するすべてのテストを返す
def resource_tests(resource)
  integration_tests(resource) << controller_test(resource)
end

(5)Guard使用時のSpringとGitの競合防止
(6)bundle exec guard を実行してファイルの変更を感知

static_pages_controller.rb の修正、保存でテストが自動で実施されることを確認

■感想
・テストの自動化設定。なんか気持ちいい。