コード例 #1
0
        public void IsValidReturnUrl_NullReturnUrl_ThrowsException()
        {
            var service = new AgreementConsentService(
                Mock.Of <IEventService>(),
                Mock.Of <IIdentityServerInteractionService>(),
                Mock.Of <IScopeRepository>());

            Assert.ThrowsAsync <ArgumentNullException>(async() => await service.IsValidReturnUrl(null));
        }
コード例 #2
0
        public static void GrantConsent_NullReturnUrl_ThrowsException()
        {
            var service = new AgreementConsentService(
                Mock.Of <IEventService>(),
                Mock.Of <IIdentityServerInteractionService>(),
                Mock.Of <IScopeRepository>());

            Assert.ThrowsAsync <ArgumentNullException>(async() => await service.GrantConsent(null, string.Empty));
        }
コード例 #3
0
        public async Task GrantConsent_BadReturnUrl_ReturnsFailure()
        {
            var service = new AgreementConsentService(
                Mock.Of <IEventService>(),
                Mock.Of <IIdentityServerInteractionService>(),
                Mock.Of <IScopeRepository>());

            var result = await service.GrantConsent(new Uri("https://www.badurl.co.uk/"), null);

            result.Should().Be(Result.Failure <Uri>());
        }
コード例 #4
0
        public async Task IsValidReturnUrl_BadReturnUrl_ReturnsFalse()
        {
            var service = new AgreementConsentService(
                Mock.Of <IEventService>(),
                Mock.Of <IIdentityServerInteractionService>(),
                Mock.Of <IScopeRepository>());

            var isValidReturnUrl = await service.IsValidReturnUrl(new Uri("https://www.badurl.co.uk/"));

            isValidReturnUrl.Should().BeFalse();
        }
コード例 #5
0
        public async Task IsValidReturnUrl_ValidReturnUrl_ReturnsFalse()
        {
            var mockInteractionService = new Mock <IIdentityServerInteractionService>();

            mockInteractionService.Setup(i => i.GetAuthorizationContextAsync(It.IsNotNull <string>()))
            .ReturnsAsync(new AuthorizationRequest());

            var service = new AgreementConsentService(
                Mock.Of <IEventService>(),
                mockInteractionService.Object,
                Mock.Of <IScopeRepository>());

            var isValidReturnUrl = await service.IsValidReturnUrl(new Uri("https://www.goodurl.co.uk/"));

            isValidReturnUrl.Should().BeTrue();
        }
コード例 #6
0
        public async Task GrantConsent_ValidReturnUrl_ReturnsSuccess()
        {
            var mockInteractionService = new Mock <IIdentityServerInteractionService>();

            mockInteractionService.Setup(i => i.GetAuthorizationContextAsync(It.IsNotNull <string>()))
            .ReturnsAsync(new AuthorizationRequest());

            var service = new AgreementConsentService(
                Mock.Of <IEventService>(),
                mockInteractionService.Object,
                Mock.Of <IScopeRepository>());

            var returnUrl = new Uri("https://www.goodurl.co.uk/");
            var result    = await service.GrantConsent(returnUrl, null);

            result.Should().Be(Result.Success(returnUrl));
        }
コード例 #7
0
        public async Task GrantConsent_ValidReturnUrl_RaisesConsentGrantedEvent()
        {
            const string subjectId = "SubjectId";
            const string clientId  = "ClientId";

            var requestedScopes = new[] { "Scope1" };

            var context = new AuthorizationRequest {
                ClientId = clientId, ScopesRequested = requestedScopes
            };
            var mockInteractionService = new Mock <IIdentityServerInteractionService>();

            mockInteractionService.Setup(i => i.GetAuthorizationContextAsync(It.IsNotNull <string>()))
            .ReturnsAsync(context);

            var expectedScopes      = new[] { "Scope1", "Scope2" };
            var mockScopeRepository = Mock.Of <IScopeRepository>(r => r.Scopes == expectedScopes);

            Expression <Action <IEventService> > raise = e => e.RaiseAsync(It.IsNotNull <Event>());
            Event actualEvent = null;

            var mockEventService = new Mock <IEventService>();

            mockEventService.Setup(raise)
            .Callback <Event>(e => actualEvent = e);

            var service = new AgreementConsentService(
                mockEventService.Object,
                mockInteractionService.Object,
                mockScopeRepository);

            await service.GrantConsent(new Uri("https://www.goodurl.co.uk/"), subjectId);

            mockEventService.Verify(raise, Times.Once());

            actualEvent.Should().BeOfType <ConsentGrantedEvent>();
            actualEvent.Should().BeEquivalentTo(new ConsentGrantedEvent(
                                                    subjectId,
                                                    clientId,
                                                    requestedScopes,
                                                    expectedScopes,
                                                    true));
        }
コード例 #8
0
        public async Task GrantConsent_ValidReturnUrl_GrantsExpectedConsent()
        {
            AuthorizationRequest actualContext         = null;
            ConsentResponse      actualConsentResponse = null;

            void GrantConsentCallback(AuthorizationRequest context, ConsentResponse response, string subject)
            {
                actualContext         = context;
                actualConsentResponse = response;
            }

            var expectedContext        = new AuthorizationRequest();
            var mockInteractionService = new Mock <IIdentityServerInteractionService>();

            mockInteractionService.Setup(i => i.GetAuthorizationContextAsync(It.IsNotNull <string>()))
            .ReturnsAsync(expectedContext);

            Expression <Func <IIdentityServerInteractionService, Task> > grantConsent = i => i.GrantConsentAsync(
                It.IsNotNull <AuthorizationRequest>(),
                It.IsNotNull <ConsentResponse>(),
                It.IsAny <string>());

            mockInteractionService.Setup(grantConsent)
            .Callback <AuthorizationRequest, ConsentResponse, string>(GrantConsentCallback);

            var expectedScopes      = new[] { "Scope1", "Scope2" };
            var mockScopeRepository = Mock.Of <IScopeRepository>(r => r.Scopes == expectedScopes);

            var service = new AgreementConsentService(
                Mock.Of <IEventService>(),
                mockInteractionService.Object,
                mockScopeRepository);

            await service.GrantConsent(new Uri("https://www.goodurl.co.uk/"), null);

            mockInteractionService.Verify(grantConsent, Times.Once());

            actualContext.Should().Be(expectedContext);
            actualConsentResponse.Should().BeEquivalentTo(new ConsentResponse {
                RememberConsent = true, ScopesConsented = expectedScopes
            });
        }