Sha256: dbf6f4e672c1e1842e5a179b776ca9bdf0e7dbf8b42ef0eefdab4aef5447ce2f

Contents?: true

Size: 1.37 KB

Versions: 2

Compression:

Stored size: 1.37 KB

Contents

require "spec_helper"

describe TriviaCrack::API::Profile do

  let(:session) { TriviaCrack::Session.new session_id: "session", user_id: 1 }
  let(:client) { (Class.new(APIStub) { include TriviaCrack::API::Profile }).new session }

  let(:response) { double(code: code, body: raw_data) }

  before { allow(Unirest).to receive(:get) { response } }

  describe "#get_profile" do

    subject { client.get_profile 111 }

    let(:raw_data) { SpecData.get "profile.json" }

    context 'given that the request is successful' do
      let(:code) { 200 }

      it { expect(TriviaCrack::Parsers::ProfileParser).to receive(:parse).once; subject }
      it { is_expected.to be_a TriviaCrack::Profile }
    end

    context 'given that the request fails' do
      let(:code) { 400 }

      it { expect{ subject }.to raise_error TriviaCrack::Errors::RequestError }
    end
  end

  describe "#get_my_profile" do

    subject { client.get_my_profile }

    let(:raw_data) { SpecData.get "my_profile.json" }

    context 'given that the request is successful' do
      let(:code) { 200 }

      it { expect(TriviaCrack::Parsers::ProfileParser).to receive(:parse).once; subject }
      it { is_expected.to be_a TriviaCrack::Profile }
    end

    context 'given that the request fails' do
      let(:code) { 400 }

      it { expect{ subject }.to raise_error TriviaCrack::Errors::RequestError }
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
triviacrack-0.2.0 spec/api/profile_spec.rb
triviacrack-0.1.0 spec/api/profile_spec.rb