Sha256: 39a1d85f87895a7e9b005940931ec9ada1f766aa05f1c45c4fcfd4c52c38785b
Contents?: true
Size: 1.73 KB
Versions: 1
Compression:
Stored size: 1.73 KB
Contents
# frozen_string_literal: true require 'spec_helper' describe Osso::GraphQL::Schema do describe 'ConfigureIdentityProvider' do let(:enterprise_account) { create(:enterprise_account) } let(:identity_provider) { create(:identity_provider, enterprise_account: enterprise_account) } let(:variables) do { input: { id: identity_provider.id, service: 'OKTA', ssoUrl: 'https://example.com', ssoCert: 'BEGIN_CERTIFICATE', }, } end let(:mutation) do <<~GRAPHQL mutation ConfigureIdentityProvider($input: ConfigureIdentityProviderInput!) { configureIdentityProvider(input: $input) { identityProvider { id domain configured enterpriseAccountId service acsUrl ssoCert ssoUrl } } } GRAPHQL end subject do described_class.execute( mutation, variables: variables, context: { scope: current_scope }, ) end describe 'for an admin user' do let(:current_scope) { :admin } it 'configures an identity provider' do expect(subject.dig('data', 'configureIdentityProvider', 'identityProvider', 'configured')). to be true end end describe 'for an email scoped user' do let(:domain) { Faker::Internet.domain_name } let(:current_scope) { domain } let(:enterprise_account) { create(:enterprise_account, domain: domain) } it 'creates an identity provider' do expect(subject.dig('data', 'configureIdentityProvider', 'identityProvider', 'domain')). to eq(domain) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
osso-0.0.3.6 | spec/graphql/mutations/configure_identity_provider_spec.rb |