Esempio n. 1
0
        public void AddInvitesTest()
        {
            string   testName = "my new event";
            DateTime testDate = new DateTime(2012, 3, 6, 11, 3, 5);
            Person   person1  = new Person {
                FirstName = "Bob", LastName = "Smith"
            };
            Person person2 = new Person {
                FirstName = "Alice", LastName = "Jones"
            };
            Person person3 = new Person {
                FirstName = "George", LastName = "Clinton"
            };
            PartyController controller = new PartyController();

            int partyId = controller.CreateParty(new Party
            {
                Name = testName,
                Date = testDate
            });

            int personId1 = controller.CreatePerson(person1);
            int personId2 = controller.CreatePerson(person2);
            int personId3 = controller.CreatePerson(person3);

            controller.InvitePeople(partyId, new List <int> {
                personId1, personId2
            });

            IEnumerable <Rsvp> rsvpList = controller.GetPartyRsvps(partyId);

            Assert.AreEqual(rsvpList.Count(), 2);

            bool foundPerson1 = false;
            bool foundPerson2 = false;

            foreach (var rsvp in rsvpList)
            {
                if (rsvp.FirstName == person1.FirstName &&
                    rsvp.LastName == person1.LastName &&
                    rsvp.PersonId == personId1)
                {
                    foundPerson1 = true;
                }
                if (rsvp.FirstName == person2.FirstName &&
                    rsvp.LastName == person2.LastName &&
                    rsvp.PersonId == personId2)
                {
                    foundPerson2 = true;
                }
                Assert.AreEqual(rsvp.PartyId, partyId);
                Assert.AreEqual(rsvp.PartyName, testName);
            }
            Assert.IsTrue(foundPerson1);
            Assert.IsTrue(foundPerson2);
        }
Esempio n. 2
0
        public void CreatePartyTest()
        {
            string          testName   = "my new event";
            DateTime        testDate   = new DateTime(2012, 3, 6, 11, 3, 5);
            PartyController controller = new PartyController();

            int newId = controller.CreateParty(new Party
            {
                Name = testName,
                Date = testDate
            });

            Party party = controller.GetParty(newId);

            Assert.AreEqual(party.Id, newId);
            Assert.AreEqual(party.Name, testName);
            Assert.AreEqual(party.Date, testDate);
            Assert.AreEqual(party.Cancelled, Cancelled.No);
        }
Esempio n. 3
0
        public async Task ReturnRedirectToActionForCreatePartyPost()
        {
            IActionResult result = await _sut.CreateParty("*****@*****.**");

            Assert.IsType <RedirectToActionResult>(result);
        }