paweljw/bookstore-backend

View on GitHub
spec/commands/authenticate_user_command_spec.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

require 'rails_helper'

describe AuthenticateUserCommand do
  include ActiveSupport::Testing::TimeHelpers

  let!(:user) { create(:user, id: 1, email: 'static@rails.local') }

  context 'with right user and password' do
    before { travel_to Time.zone.local(2017, 1, 1, 0, 0, 1, 1) }
    after { travel_back }

    let(:expected_token) do
      'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJlbWFpbCI6I' \
        'nN0YXRpY0ByYWlscy5sb2NhbCIsImFkbWluIjpmYWxzZSwiZXhwIjoxNDgzMzE1M' \
        'jAxfQ.cWBf9KEAfDS04d1JnyfQkkHBoIF-07ySj35HPb6yf30'
    end

    subject { described_class.call(user.email, 'password123') }

    it { expect(subject.success?).to be }
    it { expect(subject.result).to eq expected_token }
  end

  context 'with right user and wrong password' do
    subject { described_class.call(user.email, 'hackerman123') }

    it { expect(subject.success?).to_not be }
    it { expect(subject.result).to_not be }
  end

  context 'with everything wrong' do
    subject { described_class.call('dhh@rails.local', 'hackerman123') }

    it { expect(subject.success?).to_not be }
    it { expect(subject.result).to_not be }
  end
end