Sha256: 959b0a3b08c258b5537cb1d1c0fbe5e3e488ebd57f6ec1e7ebc0ae6a0a673e01

Contents?: true

Size: 1.59 KB

Versions: 7

Compression:

Stored size: 1.59 KB

Contents

# frozen_string_literal: true

require 'spec_helper'

describe Osso::GraphQL::Schema do
  describe 'Identity Provider' do
    let(:id) { Faker::Internet.uuid }
    let(:domain) { Faker::Internet.domain_name }
    let(:variables) { { id: id } }
    let(:query) do
      <<~GRAPHQL
        query IdentityProvider($id: ID!) {
          identityProvider(id: $id) {            
            id
            service
            domain
            acsUrl
            ssoCert
            ssoUrl
            status
          }
        }
      GRAPHQL
    end

    before do
      create(:identity_provider)
      create(:identity_provider, id: id, domain: domain)
    end

    subject do
      described_class.execute(
        query,
        variables: variables,
        context: { scope: current_scope },
      )
    end

    describe 'for an admin user' do
      let(:current_scope) { :admin }
      it 'returns Identity Provider for id' do
        expect(subject['errors']).to be_nil
        expect(subject.dig('data', 'identityProvider', 'id')).to eq(id)
      end
    end

    describe 'for an email scoped user' do
      let(:current_scope) { domain }

      it 'returns Enterprise Account for domain' do
        expect(subject['errors']).to be_nil
        expect(subject.dig('data', 'identityProvider', 'domain')).to eq(domain)
      end
    end

    describe 'for the wrong email scoped user' do
      let(:current_scope) { 'bar.com' }

      it 'returns Enterprise Account for domain' do
        expect(subject['errors']).to_not be_empty
        expect(subject.dig('data', 'enterpriseAccount')).to be_nil
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
osso-0.0.3.16 spec/graphql/query/identity_provider_spec.rb
osso-0.0.3.15 spec/graphql/query/identity_provider_spec.rb
osso-0.0.3.14 spec/graphql/query/identity_provider_spec.rb
osso-0.0.3.13 spec/graphql/query/identity_provider_spec.rb
osso-0.0.3.12 spec/graphql/query/identity_provider_spec.rb
osso-0.0.3.11 spec/graphql/query/identity_provider_spec.rb
osso-0.0.3.9 spec/graphql/query/identity_provider_spec.rb