當前位置: 首頁>>代碼示例>>C#>>正文


C# FakeHookedModule.RequiresAuthentication方法代碼示例

本文整理匯總了C#中Nancy.Tests.Fakes.FakeHookedModule.RequiresAuthentication方法的典型用法代碼示例。如果您正苦於以下問題:C# FakeHookedModule.RequiresAuthentication方法的具體用法?C# FakeHookedModule.RequiresAuthentication怎麽用?C# FakeHookedModule.RequiresAuthentication使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Nancy.Tests.Fakes.FakeHookedModule的用法示例。


在下文中一共展示了FakeHookedModule.RequiresAuthentication方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Should_add_an_item_to_the_start_of_the_begin_pipeline_when_RequiresAuthentication_enabled

        public void Should_add_an_item_to_the_start_of_the_begin_pipeline_when_RequiresAuthentication_enabled()
        {
            var module = new FakeHookedModule(A.Fake<BeforePipeline>());

            module.RequiresAuthentication();

            A.CallTo(() => module.Before.AddItemToStartOfPipeline(A<Func<NancyContext, Response>>.Ignored)).MustHaveHappened(Repeated.Exactly.Once);
        }
開發者ID:nuxleus,項目名稱:Nancy,代碼行數:8,代碼來源:ModuleSecurityFixture.cs

示例2: Should_return_unauthorized_response_with_RequiresAuthentication_enabled_and_no_user

        public void Should_return_unauthorized_response_with_RequiresAuthentication_enabled_and_no_user()
        {
            var module = new FakeHookedModule(new BeforePipeline());
            module.RequiresAuthentication();

            var result = module.Before.Invoke(new NancyContext(), new CancellationToken());

            result.Result.ShouldNotBeNull();
            result.Result.StatusCode.ShouldEqual(HttpStatusCode.Unauthorized);
        }
開發者ID:RadifMasud,項目名稱:Nancy,代碼行數:10,代碼來源:ModuleSecurityFixture.cs

示例3: Should_return_null_with_RequiresAuthentication_enabled_and_user_provided

        public void Should_return_null_with_RequiresAuthentication_enabled_and_user_provided()
        {
            var module = new FakeHookedModule(new BeforePipeline());
            module.RequiresAuthentication();

            var context = new NancyContext
            {
                CurrentUser = GetFakeUser("Bob")
            };

            var result = module.Before.Invoke(context, new CancellationToken());

            result.Result.ShouldBeNull();
        }
開發者ID:RadifMasud,項目名稱:Nancy,代碼行數:14,代碼來源:ModuleSecurityFixture.cs

示例4: Should_return_unauthorized_response_with_RequiresAuthentication_enabled_and_blank_username

        public void Should_return_unauthorized_response_with_RequiresAuthentication_enabled_and_blank_username()
        {
            var module = new FakeHookedModule(new BeforePipeline());
            module.RequiresAuthentication();

            var context = new NancyContext
                              {
                                  CurrentUser = GetFakeUser(String.Empty)
                              };

            var result = module.Before.Invoke(context, new CancellationToken());

            result.Result.ShouldNotBeNull();
            result.Result.StatusCode.ShouldEqual(HttpStatusCode.Unauthorized);
        }
開發者ID:JulianRooze,項目名稱:Nancy,代碼行數:15,代碼來源:ModuleSecurityFixture.cs

示例5: Should_return_unauthorized_response_with_RequiresAuthentication_enabled_and_blank_username

        public void Should_return_unauthorized_response_with_RequiresAuthentication_enabled_and_blank_username()
        {
            var module = new FakeHookedModule(new BeforePipeline());
            module.RequiresAuthentication();
            var context = new NancyContext();
            context.Items[Nancy.Security.SecurityConventions.AuthenticatedUsernameKey] = String.Empty;

            var result = module.Before.Invoke(context);

            result.ShouldNotBeNull();
            result.StatusCode.ShouldEqual(HttpStatusCode.Unauthorized);
        }
開發者ID:nuxleus,項目名稱:Nancy,代碼行數:12,代碼來源:ModuleSecurityFixture.cs

示例6: Should_return_null_with_RequiresAuthentication_enabled_and_username_provided

        public void Should_return_null_with_RequiresAuthentication_enabled_and_username_provided()
        {
            var module = new FakeHookedModule(new BeforePipeline());
            module.RequiresAuthentication();
            var context = new NancyContext();
            context.Items[Nancy.Security.SecurityConventions.AuthenticatedUsernameKey] = "test";

            var result = module.Before.Invoke(context);

            result.ShouldBeNull();
        }
開發者ID:nuxleus,項目名稱:Nancy,代碼行數:11,代碼來源:ModuleSecurityFixture.cs


注:本文中的Nancy.Tests.Fakes.FakeHookedModule.RequiresAuthentication方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。