6

我目前DatabaseCleaner在运行 PostgreSQL 的 Rails 项目中使用,并将其设置如下。

RSpec.configure do |config|
  config.before(:suite) do
    DatabaseCleaner.clean_with(:truncation, { pre_count: true, reset_ids: true })
  end

  config.before(:each, js: true) do
    DatabaseCleaner.strategy = :truncation
  end

  config.before(:each) do
    DatabaseCleaner.strategy = :transaction
  end

  config.before(:each) do
    DatabaseCleaner.start
  end

  config.after(:each) do
    DatabaseCleaner.clean
  end
end

在我的一个 Rails 测试套件中,我打印了一个实例的 id。我认为它应该是相对较小的数字,因为 clean_with(:truncate) 假设清除 db 并在其上运行真空。但每次我运行测试时它都会增加。

测试通过,它使用什么顺序都没有关系。但为什么clean_with(:truncation)不能以应有的方式工作?

====== 编辑 ======

这在 RSpec 测试的范围内。我知道序列编号对性能没有影响,但是对每个 :suite 进行昂贵的清理 (:truncation) 并使用便宜且快速的清理 (:transaction) 会。所以我想了解为什么clean_with(:truncation)在运行测试套件之前不为我重置 id 以获得干净的数据库状态。

4

1 回答 1

5

这就是数据库的工作方式。

$ createdb test1
$ psql -d test1

> create table numbers (id serial, x integer);
> insert into numbers (x) values (1), (2), (3);
> select id from numbers order by id desc limit 1;

# 3

> truncate numbers;
> insert into numbers (x) values (1), (2);
> select id from numbers order by id desc limit 1;

# 5

如您所见,:truncate对于数据库清理器意味着truncate. 希望这是有道理的。

编辑——完全错过了这个问题。

:reset_ids不起作用的原因是 postgresql 版本低。使用 查找您的版本psql --version,并从您需要 8.4 或更高版本的数据库清理器源中查找。

@restart_identity ||= db_version >=  80400 ? 'RESTART IDENTITY' : ''

我正在运行 9.3.5,它运行良好。

> truncate numbers restart identity;
> insert into numbers (x) values (1);
> select * from numbers;

#  id | x 
# ----+---
#   1 | 1

为了确保,数据库清理器也可以正常工作。

require 'rails/all'
require 'database_cleaner'
ActiveRecord::Base.establish_connection('postgres://localhost/test1')
class Number < ActiveRecord::Base; end
Number.count
# => 1
DatabaseCleaner.clean_with(:truncation, reset_ids: true)

它重置串行列。

$ psql -d test1
> insert into numbers (x) values (1);
> select * from numbers;

#  id | x 
# ----+---
#   1 | 1
于 2015-06-26T14:39:23.290 回答