質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.35%
RSpec

RSpecはRuby用のBDD(behaviour-driven development)フレームワークです。

Q&A

解決済

1回答

652閲覧

rspecテスト時に投稿が2回される

denisov

総合スコア6

RSpec

RSpecはRuby用のBDD(behaviour-driven development)フレームワークです。

0グッド

0クリップ

投稿2021/04/15 12:10

現在、アプリケーションを作成する中で、テストコードを実行しております。

機能としてはtipコントローラーのaction#newで投稿した内容が、ホーム画面action#index(root_path)に表示されるものとしております。

以下のテストコードにおいてテストを実行すると、同じ新規投稿が2回されてしまっております。

以降、削除機能をテストする際に同じ投稿が存在することは不都合スノですので、1回の投稿で1つの表示と修正したいと思います。

原因を究明しているのですが、解決方法をご教示いただけないでしょうか。

ruby

1require 'rails_helper' 2 3RSpec.describe '投稿する', type: :system do 4 before do 5 @user = FactoryBot.create(:user) 6 @user[:id] = @user.id + 1 7 @tip = FactoryBot.create(:tip) 8 end 9 context '投稿に失敗した時' do 10 省略 11 end 12 context '投稿に成功した時' do 13 it '投稿に成功し、トップページに投稿したタイトル、カテゴリー、説明が表示されていること' do 14 省略 15 end 16 it ' 画像を含めた投稿が成功し、トップページに投稿した画像が表示されていること ' do 17 # ログイン 18 visit new_user_session_path 19 fill_in 'user_email', with: @user.email 20 fill_in 'user_password', with: @user.password 21 find('input[type="submit"]').click 22 binding.pry #確認1 23 # 新規投稿 24 visit new_tip_path 25 fill_in 'tip_title', with: @tip.title 26 select Category.data[@tip.category_id - 1][:name], from: 'tip_category_id' 27 image_path = Rails.root.join('public/images/test_image.png') 28 attach_file 'tip-image-main-img', image_path, make_visible: true 29 fill_in 'tip_description', with: @tip.description 30 expect do 31 find('input[type="submit"]').click 32 end.to change { Tip.count }.by(1) 33 expect(current_path).to eq root_path 34 expect(page).to have_content(@tip.title) 35 expect(page).to have_content(Category.data[@tip.category_id - 1][:name]) 36 expect(page).to have_content(@tip.description) 37 expect(page).to have_selector('img') 38 binding.pry #確認2 39 end 40 省略 41 end 42end

ログインした後のトップページ(root _path)の状態は #確認1 です。

画像はこちらになります。

イメージ説明
投稿後の状態は #確認2 です。
イメージ説明

Suscipit~ というタイトルが2つされております。

□調べたこと・仮説

とりあえず、新規投稿内の@tipをother_tipに変えてテストしてみました。

ruby

1# 投稿 2 binding.pry 3 visit new_tip_path 4 other_tip = FactoryBot.create(:tip) 5 fill_in 'tip_title', with: other_tip.title 6 select Category.data[other_tip.category_id - 1][:name], from: 'tip_category_id' 7 image_path = Rails.root.join('public/images/test_image.png') 8 attach_file 'tip-image-main-img', image_path, make_visible: true 9 fill_in 'tip_description', with: other_tip.description 10 expect do 11 find('input[type="submit"]').click 12 end.to change { Tip.count }.by(1) 13 binding.pry

しかし、結果は変わらず、同じ投稿が2回繰り返されます。

私の力不足もあり、有効な方法を見つけれませんでしたが、binding.pryで泊まった回数は上記の2箇所だけでしたので、it~ doのブロックが2回読み込まれたわけではないと想定されます。

以下、実装コード

ruby

1spec/factories/tips.rb 2FactoryBot.define do 3 factory :tip do 4 title { Faker::Lorem.sentence } 5 category_id { 2 } 6 description { Faker::Lorem.sentence } 7 association :user 8 9 after(:build) do |tip| 10 tip.image.attach(io: File.open('public/images/test_image.png'), filename: 'test_image.png') 11 end 12 end 13end

ruby

1spec/factories/users.rb 2FactoryBot.define do 3 factory :user do 4 nickname { 'test' } 5 email { Faker::Internet.free_email } 6 password { Faker::Internet.password(min_length: 6) } 7 password_confirmation { password } 8 last_name { '田中' } 9 first_name { '太郎' } 10 introduction { Faker::Lorem.sentence } 11 end 12end

ruby

1spec/rails_helper.rb 2 3# This file is copied to spec/ when you run 'rails generate rspec:install' 4require 'spec_helper' 5ENV['RAILS_ENV'] ||= 'test' 6require File.expand_path('../config/environment', __dir__) 7# Prevent database truncation if the environment is production 8abort('The Rails environment is running in production mode!') if Rails.env.production? 9require 'rspec/rails' 10# Add additional requires below this line. Rails is not loaded until this point! 11 12# Requires supporting ruby files with custom matchers and macros, etc, in 13# spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are 14# run as spec files by default. This means that files in spec/support that end 15# in _spec.rb will both be required and run as specs, causing the specs to be 16# run twice. It is recommended that you do not name files matching this glob to 17# end with _spec.rb. You can configure this pattern with the --pattern 18# option on the command line or in ~/.rspec, .rspec or `.rspec-local`. 19# 20# The following line is provided for convenience purposes. It has the downside 21# of increasing the boot-up time by auto-requiring all files in the support 22# directory. Alternatively, in the individual `*_spec.rb` files, manually 23# require only the support files necessary. 24# 25# Dir[Rails.root.join('spec', 'support', '**', '*.rb')].sort.each { |f| require f } 26 27# Checks for pending migrations and applies them before tests are run. 28# If you are not using ActiveRecord, you can remove these lines. 29begin 30 ActiveRecord::Migration.maintain_test_schema! 31rescue ActiveRecord::PendingMigrationError => e 32 puts e.to_s.strip 33 exit 1 34end 35RSpec.configure do |config| 36 # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures 37 config.fixture_path = "#{::Rails.root}/spec/fixtures" 38 39 # If you're not using ActiveRecord, or you'd prefer not to run each of your 40 # examples within a transaction, remove the following line or assign false 41 # instead of true. 42 config.use_transactional_fixtures = true 43 44 # You can uncomment this line to turn off ActiveRecord support entirely. 45 # config.use_active_record = false 46 47 # RSpec Rails can automatically mix in different behaviours to your tests 48 # based on their file location, for example enabling you to call `get` and 49 # `post` in specs under `spec/controllers`. 50 # 51 # You can disable this behaviour by removing the line below, and instead 52 # explicitly tag your specs with their type, e.g.: 53 # 54 # RSpec.describe UsersController, type: :controller do 55 # # ... 56 # end 57 # 58 # The different available types are documented in the features, such as in 59 # https://relishapp.com/rspec/rspec-rails/docs 60 config.infer_spec_type_from_file_location! 61 62 # Filter lines from Rails gems in backtraces. 63 config.filter_rails_from_backtrace! 64 # arbitrary gems may also be filtered via: 65 # config.filter_gems_from_backtrace("gem name") 66 Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f } # support directoryをrequire 67 config.include RequestSpecHelper, type: :request # type: :requestのときにRequestHelperをinclude 68end 69I18n.locale = 'en'

長々と申し訳ございません。

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

guest

回答1

0

ベストアンサー

beforeに記述している

ruby

1@tip = FactoryBot.create(:tip)

FactoryBot.buildに変更するとどうでしょうか?

createはその時にデータベースに保存(1回投稿)され、
その後にテストでもう一度投稿するので
2回投稿されていないでしょうか?

投稿2021/04/15 21:31

Ryo-EAST

総合スコア33

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

denisov

2021/04/15 22:59

Ryo-EAST様 create => build 2回投稿した原因は、まさにその通りでした。ありがとうございます。
guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.35%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問