Exemplo n.º 1
0
        public void MapModelToBO()
        {
            var mapper = new BOLUserMapper();
            ApiUserRequestModel model = new ApiUserRequestModel();

            model.SetProperties("A", "A");
            BOUser response = mapper.MapModelToBO(1, model);

            response.Password.Should().Be("A");
            response.Username.Should().Be("A");
        }
Exemplo n.º 2
0
        public void MapBOToModel()
        {
            var    mapper = new BOLUserMapper();
            BOUser bo     = new BOUser();

            bo.SetProperties(1, "A", "A");
            ApiUserResponseModel response = mapper.MapBOToModel(bo);

            response.Id.Should().Be(1);
            response.Password.Should().Be("A");
            response.Username.Should().Be("A");
        }
Exemplo n.º 3
0
        public void MapBOToModelList()
        {
            var    mapper = new BOLUserMapper();
            BOUser bo     = new BOUser();

            bo.SetProperties(1, "A", DateTime.Parse("1/1/1987 12:00:00 AM"), "A", "A", "A", "A", "A", 1, "A", "A", "A", "A", "A");
            List <ApiUserResponseModel> response = mapper.MapBOToModel(new List <BOUser>()
            {
                { bo }
            });

            response.Count.Should().Be(1);
        }
Exemplo n.º 4
0
        public void MapBOToModelList()
        {
            var    mapper = new BOLUserMapper();
            BOUser bo     = new BOUser();

            bo.SetProperties("A", "A", "A", "A", "A", Guid.Parse("8420cdcf-d595-ef65-66e7-dff9f98764da"), true, true, "A", "A");
            List <ApiUserResponseModel> response = mapper.MapBOToModel(new List <BOUser>()
            {
                { bo }
            });

            response.Count.Should().Be(1);
        }
Exemplo n.º 5
0
        public void MapModelToBO()
        {
            var mapper = new BOLUserMapper();
            ApiUserRequestModel model = new ApiUserRequestModel();

            model.SetProperties("A", "A", "A", "A", Guid.Parse("8420cdcf-d595-ef65-66e7-dff9f98764da"), true, true, "A", "A");
            BOUser response = mapper.MapModelToBO("A", model);

            response.DisplayName.Should().Be("A");
            response.EmailAddress.Should().Be("A");
            response.ExternalId.Should().Be("A");
            response.ExternalIdentifiers.Should().Be("A");
            response.IdentificationToken.Should().Be(Guid.Parse("8420cdcf-d595-ef65-66e7-dff9f98764da"));
            response.IsActive.Should().Be(true);
            response.IsService.Should().Be(true);
            response.JSON.Should().Be("A");
            response.Username.Should().Be("A");
        }
Exemplo n.º 6
0
        public void MapModelToBO()
        {
            var mapper = new BOLUserMapper();
            ApiUserRequestModel model = new ApiUserRequestModel();

            model.SetProperties("A", DateTime.Parse("1/1/1987 12:00:00 AM"), "A", "A", "A", "A", "A", 1, "A", "A", "A", "A", "A");
            BOUser response = mapper.MapModelToBO(1, model);

            response.BioImgUrl.Should().Be("A");
            response.Birthday.Should().Be(DateTime.Parse("1/1/1987 12:00:00 AM"));
            response.ContentDescription.Should().Be("A");
            response.Email.Should().Be("A");
            response.FullName.Should().Be("A");
            response.HeaderImgUrl.Should().Be("A");
            response.Interest.Should().Be("A");
            response.LocationLocationId.Should().Be(1);
            response.Password.Should().Be("A");
            response.PhoneNumber.Should().Be("A");
            response.Privacy.Should().Be("A");
            response.Username.Should().Be("A");
            response.Website.Should().Be("A");
        }
Exemplo n.º 7
0
        public void MapModelToBO()
        {
            var mapper = new BOLUserMapper();
            ApiUserRequestModel model = new ApiUserRequestModel();

            model.SetProperties("A", 1, 1, DateTime.Parse("1/1/1987 12:00:00 AM"), "A", 1, "A", DateTime.Parse("1/1/1987 12:00:00 AM"), "A", 1, 1, 1, "A");
            BOUser response = mapper.MapModelToBO(1, model);

            response.AboutMe.Should().Be("A");
            response.AccountId.Should().Be(1);
            response.Age.Should().Be(1);
            response.CreationDate.Should().Be(DateTime.Parse("1/1/1987 12:00:00 AM"));
            response.DisplayName.Should().Be("A");
            response.DownVote.Should().Be(1);
            response.EmailHash.Should().Be("A");
            response.LastAccessDate.Should().Be(DateTime.Parse("1/1/1987 12:00:00 AM"));
            response.Location.Should().Be("A");
            response.Reputation.Should().Be(1);
            response.UpVote.Should().Be(1);
            response.View.Should().Be(1);
            response.WebsiteUrl.Should().Be("A");
        }