예제 #1
0
        public void Identity_POST_ErrorsAreDisplayed()
        {
            WebAppTest(client =>
            {
                ExecutorStub.SetupCommand <AddIdentity, NextSection>((cmd, def) => { throw new DomainException("simulated logic error"); });

                var response = client.Get(CocActions.Identity("form123")).Form <IdentityModel>(1)
                               .Submit(client, r => r.SetExpectedResponse(HttpStatusCode.OK));

                response.Doc.Find(".validation-summary-errors").Should().NotBeNull();
            });
        }
예제 #2
0
        public void Identity_GET_PopulatesExistingDetails()
        {
            WebAppTest(client =>
            {
                var detail = NewCocDetail("form123");
                ExecutorStub.SetupQuery(It.IsAny <FindCocSection>(), detail);

                var response = client.Get(CocActions.Identity(detail.Id));

                ExecutorStub.Executed <FindCocSection>(0).ShouldBeEquivalentTo(new FindCocSection {
                    FormId = detail.Id, Section = Sections.Identity
                });
                response.Doc.Form <IdentityModel>(1).GetText(m => m.Email).Should().Be(detail.Identity);
            });
        }
예제 #3
0
        public void Identity_POST_PopulatesIdentity()
        {
            WebAppTest(client =>
            {
                var response = client.Get(CocActions.Identity("form123")).Form <IdentityModel>(1)
                               .SetText(m => m.Email, "*****@*****.**")
                               .Submit(client);

                ExecutorStub.Executed <AddIdentity>(0).ShouldBeEquivalentTo(new AddIdentity
                {
                    FormId   = "form123",
                    Identity = "*****@*****.**",
                });

                response.ActionResultOf <RedirectResult>().Url.Should().NotBeNullOrWhiteSpace();
            });
        }