How to use recipients method of Howitzer Package

Best Howitzer_ruby code snippet using Howitzer.recipients

mailgun_spec.rb

Source:mailgun_spec.rb Github

copy

Full Screen

...41 context 'when message is found' do42 let(:event) do43 {44 'message' => {45 'recipients' => [recipient],46 'headers' => {47 'subject' => message_subject48 }49 },50 'storage' => {51 'key' => '1234567890',52 'url' => 'https://si.api.mailgun.net/v3/domains/mg.strongqa.com/messages/1234567890'53 }54 }55 end56 it do57 expect(Howitzer::Email.adapter).to receive(:new).with(message).once58 subject59 end60 end61 context 'when subject is Regexp' do62 let(:event) do63 {64 'message' => {65 'recipients' => [recipient],66 'headers' => {67 'subject' => message_subject68 }69 },70 'storage' => {71 'key' => '1234567890',72 'url' => 'https://si.api.mailgun.net/v3/domains/mg.strongqa.com/messages/1234567890'73 }74 }75 end76 it do77 expect(Howitzer::Email.adapter).to receive(:new).with(message).once78 subject { Howitzer::MailAdapters::Mailgun.find(recipient, message_subject_regexp, wait: 0.01) }79 end80 end81 context 'when message is not found' do82 let(:event) do83 {84 'message' => {85 'recipients' => ['other@test.com'],86 'headers' => {87 'subject' => message_subject88 }89 },90 'storage' => {91 'key' => '1234567890',92 'url' => 'https://si.api.mailgun.net/v3/domains/mg.strongqa.com/messages/1234567890'93 }94 }95 end96 it do97 expect { subject }.to raise_error(98 Howitzer::EmailNotFoundError,99 "Message with subject '#{message_subject}' for recipient '#{recipient}' was not found."100 )101 end102 end103 end104 describe '#plain_text_body' do105 it { expect(email_object.plain_text_body).to eql message['body-plain'] }106 end107 describe '#html_body' do108 it { expect(email_object.html_body).to eql message['stripped-html'] }109 end110 describe '#text' do111 it { expect(email_object.text).to eql message['stripped-text'] }112 end113 describe '#mail_from' do114 it { expect(email_object.mail_from).to eql message['From'] }115 end116 describe '#recipients' do117 subject { email_object.recipients }118 it { is_expected.to be_a_kind_of Array }119 context 'when one recipient' do120 it { is_expected.to include message['To'] }121 end122 context 'when more than one recipient' do123 let(:second_recipient) { 'second_tester@gmail.com' }124 let(:message_with_multiple_recipients) { message.merge('To' => "#{recipient}, #{second_recipient}") }125 let(:email_object) { Howitzer::Email.adapter.new(message_with_multiple_recipients) }126 it { is_expected.to eql [recipient, second_recipient] }127 end128 end129 describe '#received_time' do130 it { expect(email_object.received_time).to eql message['Received'][27..63] }131 end132 describe '#sender_email' do133 it { expect(email_object.sender_email).to eql message['sender'] }134 end135 describe '#mime_part' do136 subject { email_object.mime_part }137 context 'when has attachments' do138 let(:files) { [double] }139 before { email_object.instance_variable_set(:@message, 'attachments' => files) }...

Full Screen

Full Screen

mailtrap_spec.rb

Source:mailtrap_spec.rb Github

copy

Full Screen

...71 end72 describe '#mail_from' do73 it { expect(email_object.mail_from).to eql message['from_email'] }74 end75 describe '#recipients' do76 subject { email_object.recipients }77 it { is_expected.to be_a_kind_of Array }78 context 'when one recipient' do79 it { is_expected.to include message['to_email'] }80 end81 context 'when more than one recipient' do82 let(:second_recipient) { 'second_tester@gmail.com' }83 let(:message_with_multiple_recipients) { message.merge('to_email' => "#{recipient}, #{second_recipient}") }84 let(:email_object) { Howitzer::Email.adapter.new(message_with_multiple_recipients) }85 it { is_expected.to eql [recipient, second_recipient] }86 end87 end88 describe '#received_time' do89 it { expect(email_object.received_time).to eql Time.parse(message['created_at']).to_s }90 end91 describe '#sender_email' do92 it { expect(email_object.sender_email).to eql message['from_email'] }93 end94 describe '#mime_part' do95 context 'when has attachments' do96 it { expect(email_object.mime_part).not_to be_empty }97 end98 context 'when no attachments' do...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful