Sha256: c79f66e43057126c80b46e86af0c6074b44754afd535e10b8427b88c6ccf6ab6

Contents?: true

Size: 1.04 KB

Versions: 21

Compression:

Stored size: 1.04 KB

Contents

require 'rails_helper'

RSpec.describe Bobot::Event::Optin do
  let :payload do
    {
      'sender' => {
        'id' => '3'
      },
      'recipient' => {
        'id' => '3'
      },
      'timestamp' => 145_776_419_762_7,
      'optin' => {
        'ref' => 'PASS_THROUGH_PARAM'
      }
    }
  end

  subject { Bobot::Event::Optin.new(payload) }

  describe '.messaging' do
    it 'returns the original payload' do
      expect(subject.messaging).to eq(payload)
    end
  end

  describe '.sender' do
    it 'returns the sender' do
      expect(subject.sender).to eq(payload['sender'])
    end
  end

  describe '.recipient' do
    it 'returns the recipient' do
      expect(subject.recipient).to eq(payload['recipient'])
    end
  end

  describe '.sent_at' do
    it 'returns when the postback was sent' do
      expect(subject.sent_at).to eq(Time.zone.at(payload['timestamp'] / 1000))
    end
  end

  describe '.ref' do
    it 'returns the data-ref defined with the entry point' do
      expect(subject.ref).to eq(payload['optin']['ref'])
    end
  end
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
bobot-3.7.3 spec/bobot/event/optin_spec.rb
bobot-3.7.2 spec/bobot/event/optin_spec.rb
bobot-3.6.3 spec/bobot/event/optin_spec.rb
bobot-3.6.0 spec/bobot/event/optin_spec.rb
bobot-3.5.2 spec/bobot/event/optin_spec.rb
bobot-3.5.1 spec/bobot/event/optin_spec.rb
bobot-3.5.0 spec/bobot/event/optin_spec.rb
bobot-3.0.7 spec/bobot/event/optin_spec.rb
bobot-3.0.6 spec/bobot/event/optin_spec.rb
bobot-3.0.5 spec/bobot/event/optin_spec.rb
bobot-3.0.3 spec/bobot/event/optin_spec.rb
bobot-3.0.2 spec/bobot/event/optin_spec.rb
bobot-3.0.1 spec/bobot/event/optin_spec.rb
bobot-2.6.2 spec/bobot/event/optin_spec.rb
bobot-2.6.1 spec/bobot/event/optin_spec.rb
bobot-2.6.0 spec/bobot/event/optin_spec.rb
bobot-2.5.0 spec/bobot/event/optin_spec.rb
bobot-2.3.0 spec/bobot/event/optin_spec.rb
bobot-2.1.0 spec/bobot/event/optin_spec.rb
bobot-1.0.53 spec/bobot/event/optin_spec.rb