public void MessageWithPrintDetailsAndRecipientById() { //Arrange var printDetails = DomainUtility.GetPrintDetails(); var source = DomainUtility.GetMessageWithBytesAndStaticGuidRecipientById(); source.PrintDetails = printDetails; var expectedDto = DomainUtility.GetMessageDataTransferObjectWithBytesAndStaticGuidRecipientById(); expectedDto.recipient.printdetails = DomainUtility.GetPrintDetailsDataTransferObject(); //Act var actualDto = SendDataTransferObjectConverter.ToDataTransferObject(source); //Assert Comparator.AssertEqual(expectedDto, actualDto); }
public void MessageWithPrintIfUnread() { //Arrange var printDetails = DomainUtility.GetPrintDetails(); var sender = new Sender(1010); var deadline = DateTime.Now.AddDays(6); var source = new Message( sender, DomainUtility.GetRecipientByNameAndAddress(), new Document("PrimaryDocument subject", "txt", new byte[3]) ) { Attachments = new List <IDocument> { new Document("TestSubject attachment subject", "txt", new byte[3]) { Guid = "attachmentGuid" } }, DeliveryTime = DateTime.Today.AddDays(3), PrimaryDocument = { Guid = "primaryDocumentGuid" }, PrintDetails = printDetails, PrintIfUnread = new PrintIfUnread(deadline, printDetails) }; var expectedDto = new message { Item = sender.Id, recipient = new messagerecipient { Item = new nameandaddress { fullname = "Ola Nordmann", postalcode = "0001", city = "Oslo", addressline1 = "Biskop Gunnerus Gate 14" }, ItemElementName = ItemChoiceType1.nameandaddress, printdetails = DomainUtility.GetPrintDetailsDataTransferObject() }, primarydocument = new document { subject = "PrimaryDocument subject", filetype = "txt", uuid = "primaryDocumentGuid", authenticationlevelSpecified = true, sensitivitylevelSpecified = true }, attachment = new[] { new document { subject = "TestSubject attachment subject", filetype = "txt", uuid = "attachmentGuid", sensitivitylevelSpecified = true, authenticationlevelSpecified = true } }, deliverytime = DateTime.Today.AddDays(3), deliverytimeSpecified = true, printifunread = new printifunread { printifunreadafter = deadline, printdetails = DomainUtility.GetPrintDetailsDataTransferObject() } }; //Act var actualDto = SendDataTransferObjectConverter.ToDataTransferObject(source); //Assert Comparator.AssertEqual(expectedDto, actualDto); }