Esempio n. 1
0
        public void SearchInEmptyCollection()
        {
            #region InputData
            var products = new Product[]
            {
            };
            #endregion
            #region ProperOutput
            var properResult = new Product[] { };
            #endregion

            var searchProvider           = new SearchProvider.SearchProvider();
            IQueryable <Product> matches = searchProvider.Search(products.AsQueryable(), "Papier", x => x.Name, x => x.Description);
            Assert.True(matches.Count() == 0);
        }
Esempio n. 2
0
        public void FindNoMatchingProducts()
        {
            #region InputData
            var products = new Product[]
            {
                new Product()
                {
                    Id          = 4,
                    Description = "Ołowek karton 100szt",
                    GrossPrice  = 20M,
                    Name        = "Ołowek",
                    NetPrice    = 9.99M,
                    Stock       = 1000
                }
            };
            #endregion
            #region ProperOutput
            var properResult = new Product[] {};
            #endregion

            var searchProvider           = new SearchProvider.SearchProvider();
            IQueryable <Product> matches = searchProvider.Search(products.AsQueryable(), "Papier", x => x.Name, x => x.Description);
            Assert.True(matches.Count() == 0);
        }
Esempio n. 3
0
        public void FindMatchingProducts2()
        {
            #region InputData
            var products = new Product[]
            {
                new Product()
                {
                    Description = "Wysokiej jakości papier kancelaryjny",
                    GrossPrice  = 9.99M,
                    Id          = 1,
                    Name        = "Papier kancelaryjny ryza 50szt"
                }
                , new Product()
                {
                    GrossPrice  = 9.99M,
                    Description = "Papier ścierny do ścierania wszystkiego",
                    Id          = 2,
                    Name        = "Papier ścierny 5cmx15cm",
                    NetPrice    = 9.99M,
                    Stock       = 100
                },
                //new Product()
                //{
                //    Name = "Papierowa toreba na zakupy 50szt",
                //    Description = "Wytrzymała torba na zakupy",
                //    GrossPrice = 9.99M,
                //    Id = 3,
                //    NetPrice = 9.99M,
                //    Stock = 1000

                //},
                new Product()
                {
                    Id          = 4,
                    Description = "Ołowek karton 100szt",
                    GrossPrice  = 20M,
                    Name        = "Ołowek",
                    NetPrice    = 9.99M,
                    Stock       = 1000
                }
            };
            #endregion
            #region ProperOutput
            var properResult = new Product[]
            {
                new Product()
                {
                    Description = "Wysokiej jakości papier kancelaryjny",
                    GrossPrice  = 9.99M,
                    Id          = 1,
                    Name        = "Papier kancelaryjny ryza 50szt"
                }
                , new Product()
                {
                    GrossPrice  = 9.99M,
                    Description = "Papier ścierny do ścierania wszystkiego",
                    Id          = 2,
                    Name        = "Papier ścierny 5cmx15cm",
                    NetPrice    = 9.99M,
                    Stock       = 100
                }
            };
            #endregion

            var searchProvider           = new SearchProvider.SearchProvider();
            IQueryable <Product> matches = searchProvider.Search(products.AsQueryable(), "Papier", x => x.Name, x => x.Description);
            Assert.True(matches.OrderBy(x => x.Id).Select(x => x.Id).ToList().SequenceEqual(properResult.OrderBy(x => x.Id).Select(x => x.Id)));
        }