karafka-testing 1.4.0 → 1.4.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '0298e37f23636bffa1ff1d652539060a6847e0bf7425da023a54c6805aa157f6'
4
- data.tar.gz: 14d526794e88e6514670a66b4357422fc826d6c7aca70e8ec5a2ca3a70d3c134
3
+ metadata.gz: 0a8b62a849029aa280ad8a28a60fd8b6036b28d40fdbf083168ef6f0a5f5b730
4
+ data.tar.gz: b2a1ac0a92174695f008e8c1caf39c7dc114c76cd8a535c295fa02e21a2a24bd
5
5
  SHA512:
6
- metadata.gz: 9176308309e664d1cb7a1dd0769c233d8d8631850b3005026b044423f8f2642aac7e596727e4b30d7562711ce7a24db0c6cbb6c4e6089ce1619d39a1104fc66b
7
- data.tar.gz: be8a892da240be42bfd317e9662cbb86aedb8750d4fa44da8108495ee738f1339ad6f533f3e194cb536e081c095886ccd54711042b445318789d9d014b42d470
6
+ metadata.gz: e832fff04817a75ee3838019fc3c1fa4d304fc122a7cf1dcace77460a71b1dea5a780cd6eb8dc546e6773b4bad343446e5557ed2dbf9760bb40ace51605fb6eb
7
+ data.tar.gz: cb3042d870d0abf1039764e1a4f8e45a83d3701942210b7caafdbb51497e5c5a4485b135b36d8ff1456720a790cc38ea67a5930a6e36c06c5e0c41569809ba54
checksums.yaml.gz.sig CHANGED
Binary file
@@ -1,6 +1,7 @@
1
1
  name: ci
2
2
 
3
3
  on:
4
+ pull_request:
4
5
  push:
5
6
  schedule:
6
7
  - cron: '0 1 * * *'
@@ -8,15 +9,16 @@ on:
8
9
  jobs:
9
10
  specs:
10
11
  runs-on: ubuntu-latest
12
+ needs: diffend
11
13
  strategy:
12
14
  fail-fast: false
13
15
  matrix:
14
16
  ruby:
17
+ - '3.0'
15
18
  - '2.7'
16
19
  - '2.6'
17
- - '2.5'
18
20
  include:
19
- - ruby: '2.7'
21
+ - ruby: '3.0'
20
22
  coverage: 'true'
21
23
  steps:
22
24
  - uses: actions/checkout@v2
@@ -32,6 +34,26 @@ jobs:
32
34
  - name: Bundle install
33
35
  run: |
34
36
  bundle install --jobs 4 --retry 3
37
+
38
+ diffend:
39
+ runs-on: ubuntu-latest
40
+ strategy:
41
+ fail-fast: false
42
+ steps:
43
+ - uses: actions/checkout@v2
44
+ with:
45
+ fetch-depth: 0
46
+ - name: Set up Ruby
47
+ uses: ruby/setup-ruby@v1
48
+ with:
49
+ ruby-version: 3.0
50
+ - name: Install latest bundler
51
+ run: gem install bundler --no-document
52
+ - name: Install Diffend plugin
53
+ run: bundle plugin install diffend
54
+ - name: Bundle Secure
55
+ run: bundle secure
56
+
35
57
  coditsu:
36
58
  runs-on: ubuntu-latest
37
59
  strategy:
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.7.1
1
+ 3.0.3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Karafka Test gem changelog
2
2
 
3
+ ## 1.4.4 (2021-12-05)
4
+ - Source code metadata url added to the gemspec
5
+
6
+ ## 1.4.3 (2021-11-27)
7
+ - #71 - `mark_as_consumed!` is not stubbed, causing `Karafka::Errors::MissingClientError`
8
+
9
+ ## 1.4.2 (2021-04-21)
10
+ - Restore MIT license
11
+ - Remove Ruby 2.5 support and update minimum Ruby requirement to 2.6
12
+
13
+ ## 1.4.1 (2020-09-05)
14
+ - Fix for Ruby 2.5 and 2.6 support
15
+
3
16
  ## 1.4.0 (2020-09-05)
4
17
  - Update to match Karafka 1.4.0 params and batch metadata setup
5
18
 
data/Gemfile.lock CHANGED
@@ -1,103 +1,94 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- karafka-testing (1.4.0)
5
- karafka (~> 1.4.0.rc2)
4
+ karafka-testing (1.4.4)
5
+ karafka (~> 1.4.0)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- concurrent-ruby (1.1.7)
11
- delivery_boy (1.0.1)
12
- king_konf (~> 0.3)
10
+ concurrent-ruby (1.1.9)
11
+ delivery_boy (1.1.0)
12
+ king_konf (~> 1.0)
13
13
  ruby-kafka (~> 1.0)
14
- digest-crc (0.6.1)
15
- rake (~> 13.0)
16
- dry-configurable (0.11.6)
14
+ digest-crc (0.6.4)
15
+ rake (>= 12.0.0, < 14.0.0)
16
+ dry-configurable (0.13.0)
17
17
  concurrent-ruby (~> 1.0)
18
- dry-core (~> 0.4, >= 0.4.7)
19
- dry-equalizer (~> 0.2)
20
- dry-container (0.7.2)
18
+ dry-core (~> 0.6)
19
+ dry-container (0.9.0)
21
20
  concurrent-ruby (~> 1.0)
22
- dry-configurable (~> 0.1, >= 0.1.3)
23
- dry-core (0.4.9)
21
+ dry-configurable (~> 0.13, >= 0.13.0)
22
+ dry-core (0.7.1)
24
23
  concurrent-ruby (~> 1.0)
25
- dry-equalizer (0.3.0)
26
- dry-events (0.2.0)
24
+ dry-events (0.3.0)
27
25
  concurrent-ruby (~> 1.0)
28
- dry-core (~> 0.4)
29
- dry-equalizer (~> 0.2)
30
- dry-inflector (0.2.0)
31
- dry-initializer (3.0.3)
32
- dry-logic (1.0.7)
26
+ dry-core (~> 0.5, >= 0.5)
27
+ dry-inflector (0.2.1)
28
+ dry-initializer (3.0.4)
29
+ dry-logic (1.2.0)
33
30
  concurrent-ruby (~> 1.0)
34
- dry-core (~> 0.2)
35
- dry-equalizer (~> 0.2)
36
- dry-monitor (0.3.2)
37
- dry-configurable (~> 0.5)
38
- dry-core (~> 0.4)
39
- dry-equalizer (~> 0.2)
31
+ dry-core (~> 0.5, >= 0.5)
32
+ dry-monitor (0.5.0)
33
+ dry-configurable (~> 0.13, >= 0.13.0)
34
+ dry-core (~> 0.5, >= 0.5)
40
35
  dry-events (~> 0.2)
41
- dry-schema (1.5.4)
36
+ dry-schema (1.8.0)
42
37
  concurrent-ruby (~> 1.0)
43
- dry-configurable (~> 0.8, >= 0.8.3)
44
- dry-core (~> 0.4)
45
- dry-equalizer (~> 0.2)
38
+ dry-configurable (~> 0.13, >= 0.13.0)
39
+ dry-core (~> 0.5, >= 0.5)
46
40
  dry-initializer (~> 3.0)
47
41
  dry-logic (~> 1.0)
48
- dry-types (~> 1.4)
49
- dry-types (1.4.0)
42
+ dry-types (~> 1.5)
43
+ dry-types (1.5.1)
50
44
  concurrent-ruby (~> 1.0)
51
45
  dry-container (~> 0.3)
52
- dry-core (~> 0.4, >= 0.4.4)
53
- dry-equalizer (~> 0.3)
46
+ dry-core (~> 0.5, >= 0.5)
54
47
  dry-inflector (~> 0.1, >= 0.1.2)
55
48
  dry-logic (~> 1.0, >= 1.0.2)
56
- dry-validation (1.5.6)
49
+ dry-validation (1.7.0)
57
50
  concurrent-ruby (~> 1.0)
58
51
  dry-container (~> 0.7, >= 0.7.1)
59
- dry-core (~> 0.4)
60
- dry-equalizer (~> 0.2)
52
+ dry-core (~> 0.5, >= 0.5)
61
53
  dry-initializer (~> 3.0)
62
- dry-schema (~> 1.5, >= 1.5.2)
63
- envlogic (1.1.2)
54
+ dry-schema (~> 1.8, >= 1.8.0)
55
+ envlogic (1.1.4)
64
56
  dry-inflector (~> 0.1)
65
- io-console (0.5.6)
66
- irb (1.2.4)
67
- reline (>= 0.0.1)
68
- karafka (1.4.0.rc2)
69
- dry-configurable (~> 0.8)
70
- dry-inflector (~> 0.1)
71
- dry-monitor (~> 0.3)
72
- dry-validation (~> 1.2)
57
+ io-console (0.5.9)
58
+ irb (1.3.7)
59
+ reline (>= 0.2.7)
60
+ karafka (1.4.11)
61
+ dry-configurable (~> 0.13)
62
+ dry-inflector (~> 0.2)
63
+ dry-monitor (~> 0.5)
64
+ dry-validation (~> 1.7)
73
65
  envlogic (~> 1.1)
74
- irb (~> 1.0)
75
- rake (>= 11.3)
76
- ruby-kafka (>= 1.0.0)
77
- thor (>= 0.20)
78
- waterdrop (~> 1.4.0)
79
- zeitwerk (~> 2.1)
80
- king_konf (0.3.7)
81
- rake (13.0.1)
82
- reline (0.1.4)
66
+ irb (~> 1.3)
67
+ ruby-kafka (>= 1.3.0)
68
+ thor (>= 1.1)
69
+ waterdrop (~> 1.4)
70
+ zeitwerk (~> 2.4)
71
+ king_konf (1.0.0)
72
+ rake (13.0.6)
73
+ reline (0.2.7)
83
74
  io-console (~> 0.5)
84
- ruby-kafka (1.2.0)
75
+ ruby-kafka (1.4.0)
85
76
  digest-crc
86
- thor (1.0.1)
87
- waterdrop (1.4.0)
77
+ thor (1.1.0)
78
+ waterdrop (1.4.4)
88
79
  delivery_boy (>= 0.2, < 2.x)
89
- dry-configurable (~> 0.8)
90
- dry-monitor (~> 0.3)
91
- dry-validation (~> 1.2)
92
- ruby-kafka (>= 0.7.8)
93
- zeitwerk (~> 2.1)
94
- zeitwerk (2.4.0)
80
+ dry-configurable (~> 0.13)
81
+ dry-monitor (~> 0.5)
82
+ dry-validation (~> 1.7)
83
+ ruby-kafka (>= 1.3.0)
84
+ zeitwerk (~> 2.4)
85
+ zeitwerk (2.5.1)
95
86
 
96
87
  PLATFORMS
97
- ruby
88
+ x86_64-linux
98
89
 
99
90
  DEPENDENCIES
100
91
  karafka-testing!
101
92
 
102
93
  BUNDLED WITH
103
- 2.1.4
94
+ 2.2.32
data/MIT-LICENSE ADDED
@@ -0,0 +1,18 @@
1
+ Permission is hereby granted, free of charge, to any person obtaining
2
+ a copy of this software and associated documentation files (the
3
+ "Software"), to deal in the Software without restriction, including
4
+ without limitation the rights to use, copy, modify, merge, publish,
5
+ distribute, sublicense, and/or sell copies of the Software, and to
6
+ permit persons to whom the Software is furnished to do so, subject to
7
+ the following conditions:
8
+
9
+ The above copyright notice and this permission notice shall be
10
+ included in all copies or substantial portions of the Software.
11
+
12
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
16
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
18
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -1,9 +1,10 @@
1
1
  # Karafka Testing library
2
2
 
3
3
  [![Build Status](https://github.com/karafka/testing/workflows/ci/badge.svg)](https://github.com/karafka/testing/actions?query=workflow%3Aci)
4
- [![Join the chat at https://gitter.im/karafka/karafka](https://badges.gitter.im/karafka/karafka.svg)](https://gitter.im/karafka/karafka?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4
+ [![Gem Version](https://badge.fury.io/rb/karafka-testing.svg)](http://badge.fury.io/rb/karafka-testing)
5
+ [![Join the chat at https://slack.karafka.io](https://raw.githubusercontent.com/karafka/misc/master/slack.svg)](https://slack.karafka.io)
5
6
 
6
- Karafka-Testing is a library that provides rspec helpers, to make testing of Karafka consumers much easier.
7
+ Karafka-Testing is a library that provides RSpec helpers, to make testing of Karafka consumers much easier.
7
8
 
8
9
  ## Installation
9
10
 
@@ -59,20 +60,10 @@ RSpec.describe InlineBatchConsumer do
59
60
  end
60
61
  ```
61
62
 
62
- ## References
63
-
64
- * [Karafka framework](https://github.com/karafka/karafka)
65
- * [Karafka Testing Actions CI](https://github.com/karafka/testing/actions?query=workflow%3Aci)
66
- * [Karafka Testing Coditsu](https://app.coditsu.io/karafka/repositories/testing)
67
-
68
63
  ## Note on contributions
69
64
 
70
- First, thank you for considering contributing to Karafka Testing! It's people like you that make the open source community such a great community!
71
-
72
- Each pull request must pass all the RSpec specs and meet our quality requirements.
73
-
74
- To check if everything is as it should be, we use [Coditsu](https://coditsu.io) that combines multiple linters and code analyzers for both code and documentation. Once you're done with your changes, submit a pull request.
65
+ First, thank you for considering contributing to the Karafka ecosystem! It's people like you that make the open source community such a great community!
75
66
 
76
- Coditsu will automatically check your work against our quality standards. You can find your commit check results on the [builds page](https://app.coditsu.io/karafka/repositories/test/builds/commit_builds) of the Karafka Testing repository.
67
+ Each pull request must pass all the RSpec specs, integration tests and meet our quality requirements.
77
68
 
78
- [![coditsu](https://coditsu.io/assets/quality_bar.svg)](https://app.coditsu.io/karafka/repositories/testing/builds/commit_builds)
69
+ Fork it, update and wait for the Github Actions results.
data/certs/mensfeld.pem CHANGED
@@ -1,25 +1,25 @@
1
1
  -----BEGIN CERTIFICATE-----
2
2
  MIIEODCCAqCgAwIBAgIBATANBgkqhkiG9w0BAQsFADAjMSEwHwYDVQQDDBhtYWNp
3
- ZWovREM9bWVuc2ZlbGQvREM9cGwwHhcNMjAwODExMDkxNTM3WhcNMjEwODExMDkx
4
- NTM3WjAjMSEwHwYDVQQDDBhtYWNpZWovREM9bWVuc2ZlbGQvREM9cGwwggGiMA0G
5
- CSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQDCpXsCgmINb6lHBXXBdyrgsBPSxC4/
6
- 2H+weJ6L9CruTiv2+2/ZkQGtnLcDgrD14rdLIHK7t0o3EKYlDT5GhD/XUVhI15JE
7
- N7IqnPUgexe1fbZArwQ51afxz2AmPQN2BkB2oeQHXxnSWUGMhvcEZpfbxCCJH26w
8
- hS0Ccsma8yxA6hSlGVhFVDuCr7c2L1di6cK2CtIDpfDaWqnVNJEwBYHIxrCoWK5g
9
- sIGekVt/admS9gRhIMaIBg+Mshth5/DEyWO2QjteTodItlxfTctrfmiAl8X8T5JP
10
- VXeLp5SSOJ5JXE80nShMJp3RFnGw5fqjX/ffjtISYh78/By4xF3a25HdWH9+qO2Z
11
- tx0wSGc9/4gqNM0APQnjN/4YXrGZ4IeSjtE+OrrX07l0TiyikzSLFOkZCAp8oBJi
12
- Fhlosz8xQDJf7mhNxOaZziqASzp/hJTU/tuDKl5+ql2icnMv5iV/i6SlmvU29QNg
13
- LCV71pUv0pWzN+OZbHZKWepGhEQ3cG9MwvkCAwEAAaN3MHUwCQYDVR0TBAIwADAL
14
- BgNVHQ8EBAMCBLAwHQYDVR0OBBYEFImGed2AXS070ohfRidiCEhXEUN+MB0GA1Ud
3
+ ZWovREM9bWVuc2ZlbGQvREM9cGwwHhcNMjEwODExMTQxNTEzWhcNMjIwODExMTQx
4
+ NTEzWjAjMSEwHwYDVQQDDBhtYWNpZWovREM9bWVuc2ZlbGQvREM9cGwwggGiMA0G
5
+ CSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQDV2jKH4Ti87GM6nyT6D+ESzTI0MZDj
6
+ ak2/TEwnxvijMJyCCPKT/qIkbW4/f0VHM4rhPr1nW73sb5SZBVFCLlJcOSKOBdUY
7
+ TMY+SIXN2EtUaZuhAOe8LxtxjHTgRHvHcqUQMBENXTISNzCo32LnUxweu66ia4Pd
8
+ 1mNRhzOqNv9YiBZvtBf7IMQ+sYdOCjboq2dlsWmJiwiDpY9lQBTnWORnT3mQxU5x
9
+ vPSwnLB854cHdCS8fQo4DjeJBRZHhEbcE5sqhEMB3RZA3EtFVEXOxlNxVTS3tncI
10
+ qyNXiWDaxcipaens4ObSY1C2HTV7OWb7OMqSCIybeYTSfkaSdqmcl4S6zxXkjH1J
11
+ tnjayAVzD+QVXGijsPLE2PFnJAh9iDET2cMsjabO1f6l1OQNyAtqpcyQcgfnyW0z
12
+ g7tGxTYD+6wJHffM9d9txOUw6djkF6bDxyqB8lo4Z3IObCx18AZjI9XPS9QG7w6q
13
+ LCWuMG2lkCcRgASqaVk9fEf9yMc2xxz5o3kCAwEAAaN3MHUwCQYDVR0TBAIwADAL
14
+ BgNVHQ8EBAMCBLAwHQYDVR0OBBYEFBqUFCKCOe5IuueUVqOB991jyCLLMB0GA1Ud
15
15
  EQQWMBSBEm1hY2llakBtZW5zZmVsZC5wbDAdBgNVHRIEFjAUgRJtYWNpZWpAbWVu
16
- c2ZlbGQucGwwDQYJKoZIhvcNAQELBQADggGBAKiHpwoENVrMi94V1zD4o8/6G3AU
17
- gWz4udkPYHTZLUy3dLznc/sNjdkJFWT3E6NKYq7c60EpJ0m0vAEg5+F5pmNOsvD3
18
- 2pXLj9kisEeYhR516HwXAvtngboUcb75skqvBCU++4Pu7BRAPjO1/ihLSBexbwSS
19
- fF+J5OWNuyHHCQp+kGPLtXJe2yUYyvSWDj3I2//Vk0VhNOIlaCS1+5/P3ZJThOtm
20
- zJUBI7h3HgovwRpcnmk2mXTmU4Zx/bCzX8EA6VY0khEvnmiq7S6eBF0H9qH8KyQ6
21
- EkVLpvmUDFcf/uNaBQdazEMB5jYtwoA8gQlANETNGPi51KlkukhKgaIEDMkBDJOx
22
- 65N7DzmkcyY0/GwjIVIxmRhcrCt1YeCUElmfFx0iida1/YRm6sB2AXqScc1+ECRi
23
- 2DND//YJUikn1zwbz1kT70XmHd97B4Eytpln7K+M1u2g1pHVEPW4owD/ammXNpUy
24
- nt70FcDD4yxJQ+0YNiHd0N8IcVBM1TMIVctMNQ==
16
+ c2ZlbGQucGwwDQYJKoZIhvcNAQELBQADggGBADD0/UuTTFgW+CGk2U0RDw2RBOca
17
+ W2LTF/G7AOzuzD0Tc4voc7WXyrgKwJREv8rgBimLnNlgmFJLmtUCh2U/MgxvcilH
18
+ yshYcbseNvjkrtYnLRlWZR4SSB6Zei5AlyGVQLPkvdsBpNegcG6w075YEwzX/38a
19
+ 8V9B/Yri2OGELBz8ykl7BsXUgNoUPA/4pHF6YRLz+VirOaUIQ4JfY7xGj6fSOWWz
20
+ /rQ/d77r6o1mfJYM/3BRVg73a3b7DmRnE5qjwmSaSQ7u802pJnLesmArch0xGCT/
21
+ fMmRli1Qb+6qOTl9mzD6UDMAyFR4t6MStLm0mIEqM0nBO5nUdUWbC7l9qXEf8XBE
22
+ 2DP28p3EqSuS+lKbAWKcqv7t0iRhhmaod+Yn9mcrLN1sa3q3KSQ9BCyxezCD4Mk2
23
+ R2P11bWoCtr70BsccVrN8jEhzwXngMyI2gVt750Y+dbTu1KgRqZKp/ECe7ZzPzXj
24
+ pIy9vHxTANKYVyI4qj8OrFdEM5BQNu8oQpL0iQ==
25
25
  -----END CERTIFICATE-----
@@ -13,18 +13,19 @@ Gem::Specification.new do |spec|
13
13
  spec.email = %w[maciej@mensfeld.pl]
14
14
  spec.summary = 'Library which provides helpers for easier Karafka consumers tests'
15
15
  spec.description = 'Library which provides helpers for easier Karafka consumers tests'
16
- spec.homepage = 'https://github.com/karafka/testing'
17
- spec.license = 'LGPL-3.0'
16
+ spec.homepage = 'https://karafka.io'
17
+ spec.license = 'MIT'
18
18
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec)/}) }
19
19
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
20
20
  spec.require_paths = %w[lib]
21
21
  spec.cert_chain = %w[certs/mensfeld.pem]
22
+ spec.metadata = { 'source_code_uri' => 'https://github.com/karafka/testing' }
22
23
 
23
- spec.required_ruby_version = '>= 2.5.0'
24
+ spec.required_ruby_version = '>= 2.6.0'
24
25
 
25
26
  if $PROGRAM_NAME.end_with?('gem')
26
27
  spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem')
27
28
  end
28
29
 
29
- spec.add_dependency 'karafka', '~> 1.4.0.rc2'
30
+ spec.add_dependency 'karafka', '~> 1.4.0'
30
31
  end
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Karafka
4
+ module Testing
5
+ # A dummy client that takes over client delegated methods from the consumers
6
+ # For specs we do not mark anything as consumed, nor do we really send heartbeats.
7
+ # Those things are tested in the framework itself
8
+ class DummyClient
9
+ %i[
10
+ mark_as_consumed
11
+ mark_as_consumed!
12
+ trigger_heartbeat
13
+ trigger_heartbeat!
14
+ ].each do |caught_delegator|
15
+ define_method(caught_delegator) { |*| }
16
+ end
17
+ end
18
+ end
19
+ end
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'karafka/testing/errors'
4
+ require 'karafka/testing/dummy_client'
4
5
 
5
6
  module Karafka
6
7
  module Testing
@@ -16,6 +17,8 @@ module Karafka
16
17
  # This is an internal buffer for keeping "to be sent" messages before
17
18
  # we run the consume
18
19
  base.let(:_karafka_raw_data) { [] }
20
+ # Inject a dummy client that will intercept commands directed to the kafka client
21
+ base.before { Persistence::Client.write(DummyClient.new) }
19
22
  # Clear the messages buffer after each spec, so nothing will leak
20
23
  # in between them
21
24
  base.after { _karafka_raw_data.clear }
@@ -78,15 +81,15 @@ module Karafka
78
81
  # @return [Hash] message default options
79
82
  def metadata_defaults
80
83
  {
81
- 'deserializer' => subject.topic.deserializer,
82
- 'create_time' => Time.now,
83
- 'headers' => {},
84
- 'is_control_record' => false,
85
- 'key' => nil,
86
- 'offset' => 0,
87
- 'partition' => 0,
88
- 'receive_time' => Time.now,
89
- 'topic' => subject.topic.name
84
+ deserializer: subject.topic.deserializer,
85
+ create_time: Time.now,
86
+ headers: {},
87
+ is_control_record: false,
88
+ key: nil,
89
+ offset: 0,
90
+ partition: 0,
91
+ receive_time: Time.now,
92
+ topic: subject.topic.name
90
93
  }
91
94
  end
92
95
  end
@@ -4,6 +4,6 @@
4
4
  module Karafka
5
5
  module Testing
6
6
  # Current version of gem. It should match Karafka framework version
7
- VERSION = '1.4.0'
7
+ VERSION = '1.4.4'
8
8
  end
9
9
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: karafka-testing
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Maciej Mensfeld
@@ -11,30 +11,30 @@ cert_chain:
11
11
  - |
12
12
  -----BEGIN CERTIFICATE-----
13
13
  MIIEODCCAqCgAwIBAgIBATANBgkqhkiG9w0BAQsFADAjMSEwHwYDVQQDDBhtYWNp
14
- ZWovREM9bWVuc2ZlbGQvREM9cGwwHhcNMjAwODExMDkxNTM3WhcNMjEwODExMDkx
15
- NTM3WjAjMSEwHwYDVQQDDBhtYWNpZWovREM9bWVuc2ZlbGQvREM9cGwwggGiMA0G
16
- CSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQDCpXsCgmINb6lHBXXBdyrgsBPSxC4/
17
- 2H+weJ6L9CruTiv2+2/ZkQGtnLcDgrD14rdLIHK7t0o3EKYlDT5GhD/XUVhI15JE
18
- N7IqnPUgexe1fbZArwQ51afxz2AmPQN2BkB2oeQHXxnSWUGMhvcEZpfbxCCJH26w
19
- hS0Ccsma8yxA6hSlGVhFVDuCr7c2L1di6cK2CtIDpfDaWqnVNJEwBYHIxrCoWK5g
20
- sIGekVt/admS9gRhIMaIBg+Mshth5/DEyWO2QjteTodItlxfTctrfmiAl8X8T5JP
21
- VXeLp5SSOJ5JXE80nShMJp3RFnGw5fqjX/ffjtISYh78/By4xF3a25HdWH9+qO2Z
22
- tx0wSGc9/4gqNM0APQnjN/4YXrGZ4IeSjtE+OrrX07l0TiyikzSLFOkZCAp8oBJi
23
- Fhlosz8xQDJf7mhNxOaZziqASzp/hJTU/tuDKl5+ql2icnMv5iV/i6SlmvU29QNg
24
- LCV71pUv0pWzN+OZbHZKWepGhEQ3cG9MwvkCAwEAAaN3MHUwCQYDVR0TBAIwADAL
25
- BgNVHQ8EBAMCBLAwHQYDVR0OBBYEFImGed2AXS070ohfRidiCEhXEUN+MB0GA1Ud
14
+ ZWovREM9bWVuc2ZlbGQvREM9cGwwHhcNMjEwODExMTQxNTEzWhcNMjIwODExMTQx
15
+ NTEzWjAjMSEwHwYDVQQDDBhtYWNpZWovREM9bWVuc2ZlbGQvREM9cGwwggGiMA0G
16
+ CSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQDV2jKH4Ti87GM6nyT6D+ESzTI0MZDj
17
+ ak2/TEwnxvijMJyCCPKT/qIkbW4/f0VHM4rhPr1nW73sb5SZBVFCLlJcOSKOBdUY
18
+ TMY+SIXN2EtUaZuhAOe8LxtxjHTgRHvHcqUQMBENXTISNzCo32LnUxweu66ia4Pd
19
+ 1mNRhzOqNv9YiBZvtBf7IMQ+sYdOCjboq2dlsWmJiwiDpY9lQBTnWORnT3mQxU5x
20
+ vPSwnLB854cHdCS8fQo4DjeJBRZHhEbcE5sqhEMB3RZA3EtFVEXOxlNxVTS3tncI
21
+ qyNXiWDaxcipaens4ObSY1C2HTV7OWb7OMqSCIybeYTSfkaSdqmcl4S6zxXkjH1J
22
+ tnjayAVzD+QVXGijsPLE2PFnJAh9iDET2cMsjabO1f6l1OQNyAtqpcyQcgfnyW0z
23
+ g7tGxTYD+6wJHffM9d9txOUw6djkF6bDxyqB8lo4Z3IObCx18AZjI9XPS9QG7w6q
24
+ LCWuMG2lkCcRgASqaVk9fEf9yMc2xxz5o3kCAwEAAaN3MHUwCQYDVR0TBAIwADAL
25
+ BgNVHQ8EBAMCBLAwHQYDVR0OBBYEFBqUFCKCOe5IuueUVqOB991jyCLLMB0GA1Ud
26
26
  EQQWMBSBEm1hY2llakBtZW5zZmVsZC5wbDAdBgNVHRIEFjAUgRJtYWNpZWpAbWVu
27
- c2ZlbGQucGwwDQYJKoZIhvcNAQELBQADggGBAKiHpwoENVrMi94V1zD4o8/6G3AU
28
- gWz4udkPYHTZLUy3dLznc/sNjdkJFWT3E6NKYq7c60EpJ0m0vAEg5+F5pmNOsvD3
29
- 2pXLj9kisEeYhR516HwXAvtngboUcb75skqvBCU++4Pu7BRAPjO1/ihLSBexbwSS
30
- fF+J5OWNuyHHCQp+kGPLtXJe2yUYyvSWDj3I2//Vk0VhNOIlaCS1+5/P3ZJThOtm
31
- zJUBI7h3HgovwRpcnmk2mXTmU4Zx/bCzX8EA6VY0khEvnmiq7S6eBF0H9qH8KyQ6
32
- EkVLpvmUDFcf/uNaBQdazEMB5jYtwoA8gQlANETNGPi51KlkukhKgaIEDMkBDJOx
33
- 65N7DzmkcyY0/GwjIVIxmRhcrCt1YeCUElmfFx0iida1/YRm6sB2AXqScc1+ECRi
34
- 2DND//YJUikn1zwbz1kT70XmHd97B4Eytpln7K+M1u2g1pHVEPW4owD/ammXNpUy
35
- nt70FcDD4yxJQ+0YNiHd0N8IcVBM1TMIVctMNQ==
27
+ c2ZlbGQucGwwDQYJKoZIhvcNAQELBQADggGBADD0/UuTTFgW+CGk2U0RDw2RBOca
28
+ W2LTF/G7AOzuzD0Tc4voc7WXyrgKwJREv8rgBimLnNlgmFJLmtUCh2U/MgxvcilH
29
+ yshYcbseNvjkrtYnLRlWZR4SSB6Zei5AlyGVQLPkvdsBpNegcG6w075YEwzX/38a
30
+ 8V9B/Yri2OGELBz8ykl7BsXUgNoUPA/4pHF6YRLz+VirOaUIQ4JfY7xGj6fSOWWz
31
+ /rQ/d77r6o1mfJYM/3BRVg73a3b7DmRnE5qjwmSaSQ7u802pJnLesmArch0xGCT/
32
+ fMmRli1Qb+6qOTl9mzD6UDMAyFR4t6MStLm0mIEqM0nBO5nUdUWbC7l9qXEf8XBE
33
+ 2DP28p3EqSuS+lKbAWKcqv7t0iRhhmaod+Yn9mcrLN1sa3q3KSQ9BCyxezCD4Mk2
34
+ R2P11bWoCtr70BsccVrN8jEhzwXngMyI2gVt750Y+dbTu1KgRqZKp/ECe7ZzPzXj
35
+ pIy9vHxTANKYVyI4qj8OrFdEM5BQNu8oQpL0iQ==
36
36
  -----END CERTIFICATE-----
37
- date: 2020-09-05 00:00:00.000000000 Z
37
+ date: 2021-12-05 00:00:00.000000000 Z
38
38
  dependencies:
39
39
  - !ruby/object:Gem::Dependency
40
40
  name: karafka
@@ -42,14 +42,14 @@ dependencies:
42
42
  requirements:
43
43
  - - "~>"
44
44
  - !ruby/object:Gem::Version
45
- version: 1.4.0.rc2
45
+ version: 1.4.0
46
46
  type: :runtime
47
47
  prerelease: false
48
48
  version_requirements: !ruby/object:Gem::Requirement
49
49
  requirements:
50
50
  - - "~>"
51
51
  - !ruby/object:Gem::Version
52
- version: 1.4.0.rc2
52
+ version: 1.4.0
53
53
  description: Library which provides helpers for easier Karafka consumers tests
54
54
  email:
55
55
  - maciej@mensfeld.pl
@@ -59,7 +59,6 @@ extra_rdoc_files: []
59
59
  files:
60
60
  - ".coditsu/ci.yml"
61
61
  - ".diffend.yml"
62
- - ".github/FUNDING.yml"
63
62
  - ".github/workflows/ci.yml"
64
63
  - ".gitignore"
65
64
  - ".rspec"
@@ -68,19 +67,21 @@ files:
68
67
  - CHANGELOG.md
69
68
  - Gemfile
70
69
  - Gemfile.lock
71
- - LICENSE
70
+ - MIT-LICENSE
72
71
  - README.md
73
72
  - certs/mensfeld.pem
74
73
  - karafka-testing.gemspec
75
74
  - lib/karafka-testing.rb
76
75
  - lib/karafka/testing.rb
76
+ - lib/karafka/testing/dummy_client.rb
77
77
  - lib/karafka/testing/errors.rb
78
78
  - lib/karafka/testing/rspec/helpers.rb
79
79
  - lib/karafka/testing/version.rb
80
- homepage: https://github.com/karafka/testing
80
+ homepage: https://karafka.io
81
81
  licenses:
82
- - LGPL-3.0
83
- metadata: {}
82
+ - MIT
83
+ metadata:
84
+ source_code_uri: https://github.com/karafka/testing
84
85
  post_install_message:
85
86
  rdoc_options: []
86
87
  require_paths:
@@ -89,14 +90,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
89
90
  requirements:
90
91
  - - ">="
91
92
  - !ruby/object:Gem::Version
92
- version: 2.5.0
93
+ version: 2.6.0
93
94
  required_rubygems_version: !ruby/object:Gem::Requirement
94
95
  requirements:
95
96
  - - ">="
96
97
  - !ruby/object:Gem::Version
97
98
  version: '0'
98
99
  requirements: []
99
- rubygems_version: 3.1.4
100
+ rubygems_version: 3.2.32
100
101
  signing_key:
101
102
  specification_version: 4
102
103
  summary: Library which provides helpers for easier Karafka consumers tests
metadata.gz.sig CHANGED
Binary file
data/.github/FUNDING.yml DELETED
@@ -1 +0,0 @@
1
- open_collective: karafka
data/LICENSE DELETED
@@ -1,165 +0,0 @@
1
- GNU LESSER GENERAL PUBLIC LICENSE
2
- Version 3, 29 June 2007
3
-
4
- Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
5
- Everyone is permitted to copy and distribute verbatim copies
6
- of this license document, but changing it is not allowed.
7
-
8
-
9
- This version of the GNU Lesser General Public License incorporates
10
- the terms and conditions of version 3 of the GNU General Public
11
- License, supplemented by the additional permissions listed below.
12
-
13
- 0. Additional Definitions.
14
-
15
- As used herein, "this License" refers to version 3 of the GNU Lesser
16
- General Public License, and the "GNU GPL" refers to version 3 of the GNU
17
- General Public License.
18
-
19
- "The Library" refers to a covered work governed by this License,
20
- other than an Application or a Combined Work as defined below.
21
-
22
- An "Application" is any work that makes use of an interface provided
23
- by the Library, but which is not otherwise based on the Library.
24
- Defining a subclass of a class defined by the Library is deemed a mode
25
- of using an interface provided by the Library.
26
-
27
- A "Combined Work" is a work produced by combining or linking an
28
- Application with the Library. The particular version of the Library
29
- with which the Combined Work was made is also called the "Linked
30
- Version".
31
-
32
- The "Minimal Corresponding Source" for a Combined Work means the
33
- Corresponding Source for the Combined Work, excluding any source code
34
- for portions of the Combined Work that, considered in isolation, are
35
- based on the Application, and not on the Linked Version.
36
-
37
- The "Corresponding Application Code" for a Combined Work means the
38
- object code and/or source code for the Application, including any data
39
- and utility programs needed for reproducing the Combined Work from the
40
- Application, but excluding the System Libraries of the Combined Work.
41
-
42
- 1. Exception to Section 3 of the GNU GPL.
43
-
44
- You may convey a covered work under sections 3 and 4 of this License
45
- without being bound by section 3 of the GNU GPL.
46
-
47
- 2. Conveying Modified Versions.
48
-
49
- If you modify a copy of the Library, and, in your modifications, a
50
- facility refers to a function or data to be supplied by an Application
51
- that uses the facility (other than as an argument passed when the
52
- facility is invoked), then you may convey a copy of the modified
53
- version:
54
-
55
- a) under this License, provided that you make a good faith effort to
56
- ensure that, in the event an Application does not supply the
57
- function or data, the facility still operates, and performs
58
- whatever part of its purpose remains meaningful, or
59
-
60
- b) under the GNU GPL, with none of the additional permissions of
61
- this License applicable to that copy.
62
-
63
- 3. Object Code Incorporating Material from Library Header Files.
64
-
65
- The object code form of an Application may incorporate material from
66
- a header file that is part of the Library. You may convey such object
67
- code under terms of your choice, provided that, if the incorporated
68
- material is not limited to numerical parameters, data structure
69
- layouts and accessors, or small macros, inline functions and templates
70
- (ten or fewer lines in length), you do both of the following:
71
-
72
- a) Give prominent notice with each copy of the object code that the
73
- Library is used in it and that the Library and its use are
74
- covered by this License.
75
-
76
- b) Accompany the object code with a copy of the GNU GPL and this license
77
- document.
78
-
79
- 4. Combined Works.
80
-
81
- You may convey a Combined Work under terms of your choice that,
82
- taken together, effectively do not restrict modification of the
83
- portions of the Library contained in the Combined Work and reverse
84
- engineering for debugging such modifications, if you also do each of
85
- the following:
86
-
87
- a) Give prominent notice with each copy of the Combined Work that
88
- the Library is used in it and that the Library and its use are
89
- covered by this License.
90
-
91
- b) Accompany the Combined Work with a copy of the GNU GPL and this license
92
- document.
93
-
94
- c) For a Combined Work that displays copyright notices during
95
- execution, include the copyright notice for the Library among
96
- these notices, as well as a reference directing the user to the
97
- copies of the GNU GPL and this license document.
98
-
99
- d) Do one of the following:
100
-
101
- 0) Convey the Minimal Corresponding Source under the terms of this
102
- License, and the Corresponding Application Code in a form
103
- suitable for, and under terms that permit, the user to
104
- recombine or relink the Application with a modified version of
105
- the Linked Version to produce a modified Combined Work, in the
106
- manner specified by section 6 of the GNU GPL for conveying
107
- Corresponding Source.
108
-
109
- 1) Use a suitable shared library mechanism for linking with the
110
- Library. A suitable mechanism is one that (a) uses at run time
111
- a copy of the Library already present on the user's computer
112
- system, and (b) will operate properly with a modified version
113
- of the Library that is interface-compatible with the Linked
114
- Version.
115
-
116
- e) Provide Installation Information, but only if you would otherwise
117
- be required to provide such information under section 6 of the
118
- GNU GPL, and only to the extent that such information is
119
- necessary to install and execute a modified version of the
120
- Combined Work produced by recombining or relinking the
121
- Application with a modified version of the Linked Version. (If
122
- you use option 4d0, the Installation Information must accompany
123
- the Minimal Corresponding Source and Corresponding Application
124
- Code. If you use option 4d1, you must provide the Installation
125
- Information in the manner specified by section 6 of the GNU GPL
126
- for conveying Corresponding Source.)
127
-
128
- 5. Combined Libraries.
129
-
130
- You may place library facilities that are a work based on the
131
- Library side by side in a single library together with other library
132
- facilities that are not Applications and are not covered by this
133
- License, and convey such a combined library under terms of your
134
- choice, if you do both of the following:
135
-
136
- a) Accompany the combined library with a copy of the same work based
137
- on the Library, uncombined with any other library facilities,
138
- conveyed under the terms of this License.
139
-
140
- b) Give prominent notice with the combined library that part of it
141
- is a work based on the Library, and explaining where to find the
142
- accompanying uncombined form of the same work.
143
-
144
- 6. Revised Versions of the GNU Lesser General Public License.
145
-
146
- The Free Software Foundation may publish revised and/or new versions
147
- of the GNU Lesser General Public License from time to time. Such new
148
- versions will be similar in spirit to the present version, but may
149
- differ in detail to address new problems or concerns.
150
-
151
- Each version is given a distinguishing version number. If the
152
- Library as you received it specifies that a certain numbered version
153
- of the GNU Lesser General Public License "or any later version"
154
- applies to it, you have the option of following the terms and
155
- conditions either of that published version or of any later version
156
- published by the Free Software Foundation. If the Library as you
157
- received it does not specify a version number of the GNU Lesser
158
- General Public License, you may choose any version of the GNU Lesser
159
- General Public License ever published by the Free Software Foundation.
160
-
161
- If the Library as you received it specifies that a proxy can decide
162
- whether future versions of the GNU Lesser General Public License shall
163
- apply, that proxy's public statement of acceptance of any version is
164
- permanent authorization for you to choose that version for the
165
- Library.