Ejemplo n.º 1
0
        public async Task GetWishlistCountAsync_WithNoAds_ShouldReturnCorrectly()
        {
            var expectedResult = 0;

            var actualResult = await service.GetWishlistCountAsync("test");

            Assert.AreEqual(expectedResult, actualResult);
        }
Ejemplo n.º 2
0
        public async Task <IActionResult> Wishlist(int page = 1)
        {
            var userId = User.FindFirstValue(ClaimTypes.NameIdentifier);

            if (page <= 0)
            {
                return(Redirect("/User/Wishlist"));
            }

            var adsCount = await userAdWishlistService.GetWishlistCountAsync(userId);

            var lastPage = adsCount / GlobalConstants.AdsOnPageCount + 1;

            if (adsCount % GlobalConstants.AdsOnPageCount == 0 && adsCount > 0)
            {
                lastPage -= 1;
            }

            if (page > lastPage)
            {
                return(Redirect("/User/Wishlist"));
            }

            var ads = await userAdWishlistService.GetUserWishlistAsync(userId, page, GlobalConstants.AdsOnPageCount);

            var viewModel = new WishlistViewModel
            {
                CurrentPage   = page,
                TotalAdsCount = adsCount,
                LastPage      = lastPage,
            };

            foreach (var ad in ads)
            {
                var category = await categoryService.GetByIdAsync(ad.CategoryId);

                var subCategoryName = await subCategoryService.GetByIdAsync(ad.SubCategoryId);

                var town = await townService.GetByIdAsync(ad.TownId);

                viewModel.Advertisements.Add(new WishlistAdViewModel
                {
                    Category  = $"{category.Name} -> {subCategoryName.Name}",
                    CreatedOn = ad.CreatedOn.ToString(GlobalConstants.DateTimeFormat),
                    Id        = ad.Id,
                    Name      = ad.Name,
                    Price     = ad.Price,
                    UserId    = ad.UserId,
                    UserName  = userManager.FindByIdAsync(ad.UserId).GetAwaiter().GetResult().UserName
                });
            }

            return(View(viewModel));
        }