493d437e79
* Remove outdated option https://github.com/rspec/rspec-core/commit/04078317ba6577699d06cf4dccf014254dcde7a6 * Use the non-globally exposed RSpec syntax https://github.com/rspec/rspec-core/pull/2803 * Use the non-globally exposed RSpec syntax, cont https://github.com/rspec/rspec-core/pull/2803 * Comply to strict predicate matchers See: - https://github.com/rspec/rspec-expectations/pull/1195 - https://github.com/rspec/rspec-expectations/pull/1196 - https://github.com/rspec/rspec-expectations/pull/1277
54 lines
1.3 KiB
Ruby
54 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.shared_examples "a generic error" do
|
|
let(:result) { creator.create_errors_json(obj) }
|
|
|
|
it "should have a result object" do
|
|
expect(result).to be_present
|
|
end
|
|
|
|
it "has a generic error message" do
|
|
expect(result[:errors]).to eq([I18n.t('js.generic_error')])
|
|
end
|
|
end
|
|
|
|
RSpec.describe JsonError do
|
|
|
|
let(:creator) { Object.new.extend(JsonError) }
|
|
|
|
describe "with a nil argument" do
|
|
it_behaves_like "a generic error" do
|
|
let(:obj) { nil }
|
|
end
|
|
end
|
|
|
|
describe "with an empty array" do
|
|
it_behaves_like "a generic error" do
|
|
let(:obj) { [] }
|
|
end
|
|
end
|
|
|
|
describe "with an activerecord object with no errors" do
|
|
it_behaves_like "a generic error" do
|
|
let(:obj) { Fabricate.build(:user) }
|
|
end
|
|
end
|
|
|
|
describe "with a string" do
|
|
it "returns the string in the error format" do
|
|
expect(creator.create_errors_json("test error")).to eq(errors: ["test error"])
|
|
end
|
|
end
|
|
|
|
describe "an activerecord object with errors" do
|
|
let(:invalid_user) { User.new }
|
|
it "returns the errors correctly" do
|
|
expect(invalid_user).not_to be_valid
|
|
result = creator.create_errors_json(invalid_user)
|
|
expect(result).to be_present
|
|
expect(result[:errors]).not_to be_blank
|
|
end
|
|
end
|
|
|
|
end
|