Rails: active_record_gem.rb の理解
Rails の Active Record のバグレポート用テンプレートファイルを読んだ際の覚書です。このテンプレートの良いのは、現象を1ファイルで再現できるところ。全部で49行ありますが22行目までは準備で23行目以降に自分が確かめたいことを書きます。
https://github.com/rails/rails/blob/main/guides/bug_report_templates/active_record_gem.rb
対象: 174cc5c on Dec 16, 2022
# frozen_string_literal: true
require "bundler/inline"
gemfile(true) do
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Activate the gem you are reporting the issue against.
gem "activerecord", "~> 7.0.0"
gem "sqlite3"
end
15〜18行目 active_record と minitest と logger の読み込み
require "active_record"
require "minitest/autorun"
require "logger"
# This connection will do for database-independent bug reports.
ActiveRecord::Base.establish_connection(adapter: "sqlite3", database: ":memory:")
ActiveRecord::Base.logger = Logger.new(STDOUT)
ActiveRecord::Schema.define do
create_table :posts, force: true do |t|
end
create_table :comments, force: true do |t|
t.integer :post_id
end
end
Post(投稿)は、Comment(コメント)を0個以上持つ(has_many)。
Commentは、Postに従属(belongs to)する。
class Post < ActiveRecord::Base
has_many :comments
end
class Comment < ActiveRecord::Base
belongs_to :post
end
Postを生成する。
Postが持つCommentを生成する。
Postが持つCommentは1件であること。
Commentは全体で1件であること。
PostのIDとPostが持つCommentのIDが一致すること。
class BugTest < Minitest::Test
def test_association_stuff
post = Post.create!
post.comments << Comment.create!
assert_equal 1, post.comments.count
assert_equal 1, Comment.count
assert_equal post.id, Comment.first.post.id
end
end
以上です。
この記事が気に入ったらサポートをしてみませんか?