rspec-active_record 0.2.0 → 0.3.0

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: c8db7110108ac53ef5b6ef595d04cd711410217b5fce21a27cd94ffebae23ece
4
+ data.tar.gz: bc6c9a9d25c119dd8681f6b45166646a6770693910b802228ecd6552c86f2192
5
5
  SHA512:
6
- metadata.gz: 9089391ec0c25bdfd0506a680fc455303c88979225687b0a92afab956752739a116112f333a1fe58642b025417be83bbdc6827e01796186cd7962925c03a33bf
7
- data.tar.gz: d8fa5e16d109c9d1c1dc6724c4269fd4b6fa1990cfe19390526a53c5ea7486a8d401e4ce5873a07b316ffb60f294450939c0e38b3c775e7c7098d9fe54ede023
6
+ metadata.gz: 321aa7bb887b01fb0e893b878acba02068612ea15719e647563652dcba7508bd1673d5765c916258ce278df72bbf9381b3897109a9e213391fb6e5213f609845
7
+ data.tar.gz: 2bd092467cc39b93cd27744c6944a9306ab98be4355abf31e0a5834c21c462ff93332140dd700b05d2fd2fb1e5d0b03fb88d060cd19cb17c796391b1d72400a2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  ## [Unreleased]
2
2
 
3
+ - Add support for times in create_record
4
+
3
5
  ## [0.2.0] - 2024-07-12
4
6
 
5
7
  - 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
@@ -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.0"
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.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrius Chamentauskas
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-07-12 00:00:00.000000000 Z
11
+ date: 2024-08-02 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