【发布时间】:2021-04-17 19:14:15
【问题描述】:
我使用 pundit 进行授权,使用 RSpec 在我的 rails 应用程序中进行测试。因此,我不得不为策略创建规范。
但是,我遇到了 rubocop 引发错误的问题:RSpec/MultipleMemoizedHelpers。
我知道这意味着我有太多的let 和subject 电话。我的问题是我不太确定如何解决或重构我的代码,以使其符合我应该进行的正确调用次数。
另外,可以为 spec 文件禁用 RSpec/MultipleMemoizedHelpers 吗?
以下是三个存在问题的政策规范文件。
require "rails_helper"
describe AnswerPolicy do
subject { described_class }
let(:user_admin) { build(:user, :admin) }
let(:consultant) { build(:consultant) }
let(:user_consultant) { build(:user, :consultant, consultant: consultant) }
let(:client) { build(:client, consultant: consultant) }
let(:user_client) { build(:user, :client, client: client) }
let(:other_client) { build(:client, consultant: build(:consultant)) }
let(:answer) { build(:answer, client: client) }
let(:other_answer) { build(:answer, client: other_client) }
permissions :update? do
it "allows access to admin" do
expect(described_class).to permit(user_admin)
end
it "prevents consultants to update other non-client answers" do
expect(described_class).not_to permit(user_consultant, other_answer)
end
it "prevents clients to update their answers" do
expect(described_class).not_to permit(user_client, answer)
end
it "allows consultants to update their client's answers" do
expect(described_class).to permit(user_consultant, answer)
end
end
end
describe AssessmentStepPolicy do
subject { described_class }
let(:user_admin) { build(:user, :admin) }
let(:consultant) { build(:consultant) }
let(:user_consultant) { build(:user, :consultant, consultant: consultant) }
let(:client) { build(:client, consultant: consultant) }
let(:user_client) { build(:user, :client, client: client) }
let(:other_client) { build(:client, consultant: build(:consultant)) }
permissions :view? do
it "allows access to admin" do
expect(described_class).to permit(user_admin)
end
it "prevents consultants to view other non-client assessment details" do
expect(described_class).not_to permit(user_consultant, other_client)
end
it "allows clients to view their assessment details" do
expect(described_class).to permit(user_client, client)
end
it "prevents clients to view other client's assessment details" do
expect(described_class).not_to permit(user_client, other_client)
end
it "allows consultants to view their client's answers" do
expect(described_class).to permit(user_consultant, client)
end
end
permissions :create? do
it "allows access to any admin" do
expect(described_class).to permit(user_admin)
end
it "prevents consultants to assess other clients" do
expect(described_class).not_to permit(user_consultant, other_client)
end
it "prevents clients to assess themselves" do
expect(described_class).not_to permit(user_client, client)
end
it "allows consultants to assess their clients" do
expect(described_class).to permit(user_consultant, client)
end
end
end
require "rails_helper"
describe ReportPolicy do
subject { described_class }
let(:user_admin) { build(:user, :admin) }
let(:consultant) { build(:consultant) }
let(:user_consultant) { build(:user, :consultant, consultant: consultant) }
let(:client) { build(:client, consultant: consultant) }
let(:user_client) { build(:user, :client, client: client) }
let(:other_consultant) { build(:consultant) }
let(:other_client) { build(:client, consultant: other_consultant) }
permissions :dashboard? do
it "allows access to admin" do
expect(described_class).to permit(user_admin)
end
it "prevents clients to view other client dashboards" do
expect(described_class).not_to permit(user_client, other_client)
end
it "prevents consultants to view other non-client dashboards" do
expect(described_class).not_to permit(user_consultant, other_client)
end
it "allows clients to view their dashboard" do
expect(described_class).to permit(user_client, client)
end
it "allows consultants to view their client's dashboards" do
expect(described_class).to permit(user_consultant, client)
end
end
end
【问题讨论】:
-
它们在自己的规范文件中吗?如果是这样,我不介意,但是如果您在那里看到重复,您可以将它们移动到共享上下文中。
-
是的,这三个文件都在各自的文件中。将重复调用移动到共享上下文非常有意义。我会试试的。谢谢@SebastianPalma
标签: ruby-on-rails ruby rspec pundit rubocop