rspec-active_record 0.2.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2a80d964b05c481f1983c91d5a441ae6a26381bd19cb2006710d94a09761dbef
4
- data.tar.gz: 5a17586dcfbfaca18bfb02f94ce450aaf7de83f35ecd9aac5ba40d3f7faa0d5c
3
+ metadata.gz: 477cc04c406d2859bf5164e5e5ecc39245ba7b7ba0b8bfcbcb91040387288748
4
+ data.tar.gz: 1142fe363be3b106f53d7a2c7e2ab45fb022a497bf802a133da615ded4a6f479
5
5
  SHA512:
6
- metadata.gz: 9089391ec0c25bdfd0506a680fc455303c88979225687b0a92afab956752739a116112f333a1fe58642b025417be83bbdc6827e01796186cd7962925c03a33bf
7
- data.tar.gz: d8fa5e16d109c9d1c1dc6724c4269fd4b6fa1990cfe19390526a53c5ea7486a8d401e4ce5873a07b316ffb60f294450939c0e38b3c775e7c7098d9fe54ede023
6
+ metadata.gz: 5bbe4cac926b21ab4321d481f5f56e18b9d17fe37f9b59fe03ab8b37c535ac8546b4363857a2f6364d83621a8099ddf8a585dc071fa854a23ba722f33d1087d7
7
+ data.tar.gz: df7845335fc2b759d426e611878efa57212a15db348e73b81e79e63dff7a9aab977a0508be7396d12f067822850cc907b6c7db12fcc4af6e899bdd5757df9cb6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.3.1] - 2024-08-26
4
+
5
+ - Fix `change_record` to work when STI type changes
6
+
7
+ ## [0.3.0] - 2024-08-02
8
+
9
+ - Add support for times in create_record
10
+
3
11
  ## [0.2.0] - 2024-07-12
4
12
 
5
13
  - Add support for negative matchers
data/README.md CHANGED
@@ -33,6 +33,12 @@ expect { User.create!(name: "RSpec User") }.to create_record(User)
33
33
  expect { User.create!(name: "RSpec User") }.to not_create_record(Company)
34
34
  ```
35
35
 
36
+ Sometimes you also need to match specific count of records:
37
+ ```ruby
38
+ expect { User.create!(name: "RSpec User") }.to create_record(User).once
39
+ expect { User.create!(name: "RSpec User") }.to create_record(User).times(1)
40
+ ```
41
+
36
42
  You can also make sure that attributes match, if it fails you'll get RSpec diff between created record and what you expected:
37
43
 
38
44
  ```ruby
@@ -23,7 +23,7 @@ module RSpec
23
23
  @to_pre_match = !does_not_match_attributes?(@record, @to)
24
24
 
25
25
  block.call
26
- @updated_record = @record.class.find(@record.id)
26
+ @updated_record = @record.class.base_class.find(@record.id)
27
27
 
28
28
  @to_diff = diff_unless_match(@updated_record, @to)
29
29
  @from_post_match = !does_not_match_attributes?(@updated_record, @from)
@@ -78,10 +78,6 @@ module RSpec
78
78
 
79
79
  private
80
80
 
81
- def format_hash(hash)
82
- improve_hash_formatting RSpec::Support::ObjectFormatter.format(surface_descriptions_in(hash))
83
- end
84
-
85
81
  def diff_unless_match(record, attributes)
86
82
  diff(record, attributes) unless match_attributes?(record, attributes)
87
83
  end
@@ -3,12 +3,12 @@
3
3
  module RSpec
4
4
  module ActiveRecord
5
5
  # A matcher
6
- class CreateRecord
7
- include RSpec::Matchers::Composable
6
+ class CreateRecord < Matcher
8
7
  include RSpec::Matchers::BuiltIn::BaseMatcher::HashFormatting
9
8
 
10
9
  def initialize(scope)
11
10
  @scope = scope
11
+ super()
12
12
  end
13
13
 
14
14
  # Make sure that created record matches attributes
@@ -17,6 +17,23 @@ module RSpec
17
17
  self
18
18
  end
19
19
 
20
+ def times(times)
21
+ @times = times
22
+ self
23
+ end
24
+
25
+ def once
26
+ times(1)
27
+ end
28
+
29
+ def twice
30
+ times(2)
31
+ end
32
+
33
+ def thrice
34
+ times(3)
35
+ end
36
+
20
37
  def supports_block_expectations?
21
38
  true
22
39
  end
@@ -25,25 +42,25 @@ module RSpec
25
42
  existing_ids = @scope.ids
26
43
  block.call
27
44
 
28
- @new_records = @scope.where.not(@scope.primary_key => existing_ids)
45
+ @new_records = @scope.where.not(@scope.primary_key => existing_ids).to_a
29
46
 
30
- if @attributes
31
- match_attributes?
32
- else
33
- @new_records.present?
34
- end
47
+ match_times? && match_attributes? && @new_records.present?
35
48
  end
36
49
 
37
50
  def description
38
51
  message = "create #{scope_name}"
39
- if @attributes
40
- message += " matching #{RSpec::Support::ObjectFormatter.format(surface_descriptions_in(@attributes))}"
41
- end
52
+ message += " #{@times} time#{"s" if @times != 1}" if @times
53
+ message += " matching #{format_hash(@attributes)}" if @attributes
42
54
  improve_hash_formatting message
43
55
  end
44
56
 
45
57
  def failure_message
46
- add_diff "expected to #{description} but did not"
58
+ failure = "expected to #{description} but"
59
+ if !match_times?
60
+ "#{failure} created #{@new_records.size}"
61
+ else
62
+ add_diff "#{failure} did not"
63
+ end
47
64
  end
48
65
 
49
66
  def failure_message_when_negated
@@ -57,8 +74,13 @@ module RSpec
57
74
  message
58
75
  end
59
76
 
77
+ def match_times?
78
+ @times.nil? || @times == @new_records.size
79
+ end
80
+
60
81
  def match_attributes?
61
- @new_records.any? { |record| RSpec::Matchers::BuiltIn::HaveAttributes.new(@attributes).matches?(record) }
82
+ @attributes.nil? ||
83
+ @new_records.any? { |record| RSpec::Matchers::BuiltIn::HaveAttributes.new(@attributes).matches?(record) }
62
84
  end
63
85
 
64
86
  def scope_name
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RSpec
4
+ module ActiveRecord
5
+ # A matcher
6
+ class Matcher
7
+ include RSpec::Matchers::Composable
8
+
9
+ def supports_block_expectations?
10
+ true
11
+ end
12
+
13
+ private
14
+
15
+ def format_hash(hash)
16
+ improve_hash_formatting RSpec::Support::ObjectFormatter.format(surface_descriptions_in(hash))
17
+ end
18
+ end
19
+ end
20
+ end
@@ -3,17 +3,12 @@
3
3
  module RSpec
4
4
  module ActiveRecord
5
5
  # A matcher
6
- class RecordMatcher
7
- include RSpec::Matchers::Composable
8
-
6
+ class RecordMatcher < Matcher
9
7
  def initialize(record)
8
+ super()
10
9
  @record = record
11
10
  end
12
11
 
13
- def supports_block_expectations?
14
- true
15
- end
16
-
17
12
  private
18
13
 
19
14
  def format_record
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RSpec
4
4
  module ActiveRecord
5
- VERSION = "0.2.0"
5
+ VERSION = "0.3.1"
6
6
  end
7
7
  end
@@ -12,6 +12,7 @@ module RSpec
12
12
  autoload :CreateRecord, "rspec/active_record/create_record"
13
13
  autoload :DestroyRecord, "rspec/active_record/destroy_record"
14
14
  autoload :DiffForMultipleRecords, "rspec/active_record/diff_for_multiple_records"
15
+ autoload :Matcher, "rspec/active_record/matcher"
15
16
  autoload :RecordMatcher, "rspec/active_record/record_matcher"
16
17
  autoload :StubModels, "rspec/active_record/stub_models"
17
18
  autoload :VERSION, "rspec/active_record/version"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-active_record
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrius Chamentauskas
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-07-12 00:00:00.000000000 Z
11
+ date: 2024-08-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -141,6 +141,7 @@ files:
141
141
  - lib/rspec/active_record/create_record.rb
142
142
  - lib/rspec/active_record/destroy_record.rb
143
143
  - lib/rspec/active_record/diff_for_multiple_records.rb
144
+ - lib/rspec/active_record/matcher.rb
144
145
  - lib/rspec/active_record/record_matcher.rb
145
146
  - lib/rspec/active_record/stub_models.rb
146
147
  - lib/rspec/active_record/version.rb
@@ -153,7 +154,7 @@ metadata:
153
154
  homepage_uri: https://github.com/andriusch/rspec-active_record
154
155
  source_code_uri: https://github.com/andriusch/rspec-active_record
155
156
  changelog_uri: https://github.com/andriusch/rspec-active_record/CHANGELOG.md
156
- post_install_message:
157
+ post_install_message:
157
158
  rdoc_options: []
158
159
  require_paths:
159
160
  - lib
@@ -169,7 +170,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
169
170
  version: '0'
170
171
  requirements: []
171
172
  rubygems_version: 3.3.26
172
- signing_key:
173
+ signing_key:
173
174
  specification_version: 4
174
175
  summary: RSpec matchers for ActiveRecord
175
176
  test_files: []