spreewald 4.6.2 → 4.6.3

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: a8b36c0e7f58e2fdc53690d9bed5690077215e16f874cf953d04e3bc96eb6ad5
4
- data.tar.gz: 5be73a131b725ed532f318f8dc373f2758b29620ad11a4e83154ba068b754a5f
3
+ metadata.gz: f21efaeee956e332f09bf91655335cfc24bcf5f5a46403c11ea6fa4d2f390b25
4
+ data.tar.gz: '09cae0432a1190dbfc515456705b6977ca4320c688e46ee5e1307a8ca07f9f69'
5
5
  SHA512:
6
- metadata.gz: c0ccd9c02ae206858b788f96d8a5a79144046e64cc8164e577fd81c4b02e1eccb94fd241295ddb29827374115c83d072b24e2818d3aea0c42685ec907dd874e7
7
- data.tar.gz: a8ecc4aff210a281a7e077ea6e7c9200ab402ce5e2171db3e9c4dee251adad36f834227f5d70c27ace7f697df1dc71b40556e5ef6fbed2b7e9e3bc2eb1805d3f
6
+ metadata.gz: 295f1e8f0ea1b1b544d622005e020b8ba168eb27612077d55a58613162eb4ee65c0e32ba287ddef7f0fc58408817f48c3093e9b6c8ff94603076de3878ceccfc
7
+ data.tar.gz: d7ab22c6640d44c85c5b18f7c9e1028194eadd284d872aedf8ed56c64423a2e0409e8e545b2fbacf782d89ef219292797a5dc7a583494dcd5ce54c7bb7790399
data/CHANGELOG.md CHANGED
@@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file.
3
3
 
4
4
  This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
5
5
 
6
+ ## 4.6.3
7
+ - Fix email steps not showing the attachments
8
+
6
9
  ## 4.6.2
7
10
  - Fix uninitialized constant `XPath::HTML` when using `When I fill in "..." with "..." inside any "..."` ([#210](https://github.com/makandra/spreewald/issues/210))
8
11
 
data/Gemfile.ruby266.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- spreewald (4.6.2)
4
+ spreewald (4.6.3)
5
5
  capybara
6
6
  cucumber
7
7
  cucumber_priority (>= 0.3.0)
data/Gemfile.ruby320.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- spreewald (4.6.2)
4
+ spreewald (4.6.3)
5
5
  capybara
6
6
  cucumber
7
7
  cucumber_priority (>= 0.3.0)
@@ -24,7 +24,6 @@ class MailFinder
24
24
  body = [header, body].join("\n\n")
25
25
  end
26
26
 
27
- filename_method = Rails::VERSION::MAJOR < 3 ? 'original_filename' : 'filename'
28
27
  matching_header = ActionMailer::Base.deliveries.select do |mail|
29
28
  [ conditions[:to].nil? || mail.to.include?(resolve_email conditions[:to]),
30
29
  conditions[:cc].nil? || mail.cc && mail.cc.include?(resolve_email conditions[:cc]),
@@ -32,7 +31,7 @@ class MailFinder
32
31
  conditions[:from].nil? || mail.from.include?(resolve_email conditions[:from]),
33
32
  conditions[:reply_to].nil? || mail.reply_to.include?(resolve_email conditions[:reply_to]),
34
33
  conditions[:subject].nil? || mail.subject.include?(conditions[:subject]),
35
- conditions[:attachments].nil? || conditions[:attachments].split(/\s*,\s*/).sort == Array(mail.attachments).collect(&:"#{filename_method}").sort
34
+ conditions[:attachments].nil? || conditions[:attachments].split(/\s*,\s*/).sort == attachment_filenames(mail)
36
35
  ].all?
37
36
  end
38
37
 
@@ -64,6 +63,9 @@ class MailFinder
64
63
  header << "CC: #{mail.cc.join(', ')}\n" if mail.cc
65
64
  header << "BCC: #{mail.bcc.join(', ')}\n" if mail.bcc
66
65
  header << "Subject: #{mail.subject}\n"
66
+ header << "Attachments: #{attachment_filenames(mail).join(', ')}\n" if mail.attachments.any?
67
+
68
+ header
67
69
  end
68
70
 
69
71
  def email_text_body(mail, type = '')
@@ -94,6 +96,12 @@ class MailFinder
94
96
  Regexp.new(expected)
95
97
  end
96
98
 
99
+ private
100
+
101
+ def attachment_filenames(mail)
102
+ Array(mail.attachments).collect(&:filename).sort
103
+ end
104
+
97
105
  end
98
106
  end
99
107
 
@@ -1,3 +1,3 @@
1
1
  module Spreewald
2
- VERSION = '4.6.2'
2
+ VERSION = '4.6.3'
3
3
  end
@@ -93,4 +93,26 @@ describe Spreewald::Steps::ShowMeTheMails do
93
93
  expect { step.run }.to output(expected_output).to_stdout
94
94
  end
95
95
  end
96
+
97
+ context "with attachments" do
98
+ it 'includes the filenames of the attachments' do
99
+ mail = Mail.new do
100
+ attachments['attached_file.pdf'] = File.open("tests/shared/public/fixture_files/attachment.pdf") {}
101
+ attachments['other_attached_file.pdf'] = File.open("tests/shared/public/fixture_files/attachment.pdf") {}
102
+ end
103
+
104
+ expected_output = <<~TXT
105
+ E-Mail #0
106
+ --------------------------------------------------------------------------------
107
+ From:
108
+ Subject:
109
+ Attachments: attached_file.pdf, other_attached_file.pdf
110
+ --------------------------------------------------------------------------------
111
+
112
+ TXT
113
+ step = Spreewald::Steps::ShowMeTheMails.new([mail], true)
114
+ expect { step.run }.to output(expected_output).to_stdout
115
+ end
116
+ end
117
+
96
118
  end
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- spreewald (4.6.2)
4
+ spreewald (4.6.3)
5
5
  capybara
6
6
  cucumber
7
7
  cucumber_priority (>= 0.3.0)
@@ -67,14 +67,7 @@ class EmailsController < ApplicationController
67
67
  private
68
68
 
69
69
  def deliver(method_name)
70
- case
71
- when Rails.version.to_i >= 5
72
- SpreewaldMailer.send(method_name).deliver
73
- when Rails.version.to_i >= 3
74
- Mailer.public_send(method_name).deliver
75
- else
76
- Mailer.public_send("deliver_#{method_name}")
77
- end
70
+ SpreewaldMailer.send(method_name).deliver
78
71
  end
79
72
 
80
73
  end
@@ -7,113 +7,60 @@ class Mailer < ActionMailer::Base
7
7
  FROM = "from@example.com"
8
8
  SUBJECT = "SUBJECT"
9
9
 
10
- if Rails.version >= "3"
11
-
12
- def email
13
- attachments['attached_file.pdf'] = File.open("#{Rails.root}/public/fixture_files/attachment.pdf", "w") {}
14
- mail(
15
- :from => FROM,
16
- :reply_to => REPLY_TO,
17
- :to => TO,
18
- :cc => CC,
19
- :bcc => BCC,
20
- :subject => SUBJECT
21
- )
22
- end
23
-
24
- def email_crlf
25
- email
26
- end
27
-
28
- def email_with_umlauts
29
- email
30
- end
31
-
32
- def html_email_with_links
33
- email
34
- end
35
-
36
- def text_email_with_links
37
- email
38
- end
39
-
40
- def html_email_with_linebreaks
41
- email
42
- end
43
-
44
- def html_email_with_specific_line
45
- email
46
- end
47
-
48
- def text_email_with_specific_line
49
- email
50
- end
51
-
52
- def html_email_for_successful_test_without_header
53
- email
54
- end
55
-
56
- def text_email_for_successful_test_without_header
57
- email
58
- end
59
-
60
- def html_email_for_failed_test_without_header
61
- email
62
- end
63
-
64
- def text_email_for_failed_test_without_header
65
- email
66
- end
67
-
68
- else
10
+ def email
11
+ attachments['attached_file.pdf'] = File.open("#{Rails.root}/public/fixture_files/attachment.pdf") {}
12
+ mail(
13
+ :from => FROM,
14
+ :reply_to => REPLY_TO,
15
+ :to => TO,
16
+ :cc => CC,
17
+ :bcc => BCC,
18
+ :subject => SUBJECT
19
+ )
20
+ end
69
21
 
70
- def email
71
- attachments['attached_file.pdf'] = File.open("#{Rails.root}/public/fixture_files/attachment.pdf", "w") {}
72
- recipients TO
73
- reply_to REPLY_TO
74
- from FROM
75
- cc CC
76
- bcc BCC
77
- subject SUBJECT
78
- body BODY
79
- end
22
+ def email_crlf
23
+ email
24
+ end
80
25
 
81
- def email_crlf
82
- email
83
- end
26
+ def email_with_umlauts
27
+ email
28
+ end
84
29
 
85
- def html_email_with_links
86
- email
87
- end
30
+ def html_email_with_links
31
+ email
32
+ end
88
33
 
89
- def text_email_with_links
90
- email
91
- end
34
+ def text_email_with_links
35
+ email
36
+ end
92
37
 
93
- def html_email_with_specific_line
94
- email
95
- end
38
+ def html_email_with_linebreaks
39
+ email
40
+ end
96
41
 
97
- def text_email_with_specific_line
98
- email
99
- end
42
+ def html_email_with_specific_line
43
+ email
44
+ end
100
45
 
101
- def html_email_for_successful_test_without_header
102
- email
103
- end
46
+ def text_email_with_specific_line
47
+ email
48
+ end
104
49
 
105
- def text_email_for_successful_test_without_header
106
- email
107
- end
50
+ def html_email_for_successful_test_without_header
51
+ email
52
+ end
108
53
 
109
- def html_email_for_failed_test_without_header
110
- email
111
- end
54
+ def text_email_for_successful_test_without_header
55
+ email
56
+ end
112
57
 
113
- def text_email_for_failed_test_without_header
114
- email
115
- end
58
+ def html_email_for_failed_test_without_header
59
+ email
60
+ end
116
61
 
62
+ def text_email_for_failed_test_without_header
63
+ email
117
64
  end
118
65
 
119
66
  end
@@ -297,6 +297,24 @@ Feature: Test Spreewald's email steps
297
297
  '''
298
298
  """
299
299
 
300
+ Then the following multiline step should succeed:
301
+ """
302
+ Then an email should have been sent with:
303
+ '''
304
+ From: from@example.com
305
+ Attachments: attached_file.pdf
306
+ '''
307
+ """
308
+
309
+ Then the following multiline step should fail:
310
+ """
311
+ Then an email should have been sent with:
312
+ '''
313
+ From: from@example.com
314
+ Attachments: not_attached_file.pdf
315
+ '''
316
+ """
317
+
300
318
  When I clear my emails
301
319
  And I go to "/emails/send_crlf_email"
302
320
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spreewald
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.6.2
4
+ version: 4.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tobias Kraze
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-07 00:00:00.000000000 Z
11
+ date: 2024-11-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cucumber