public void Test_SaveAssignsIdToObject() { //Arrange firstRecipe.Save(); //Act Recipe testRecipe = Recipe.GetAllRecipes()[0]; int result = firstRecipe.GetRecipeId(); int testId = testRecipe.GetRecipeId(); //Assert Assert.Equal(testId, result); }
public void Test_FindFindsRecipeInDatabase() { //Arrange Recipe firstRecipe = new Recipe("Salmon", "Salmon", "Boil", "3"); firstRecipe.Save(); //Act Recipe result = Recipe.Find(firstRecipe.GetId()); //Assert Assert.Equal(firstRecipe, result); }
public void Test_GetCategories_ReturnsAllCategoriesForARecipe() { //Arrange firstRecipe.Save(); firstCategory.Save(); firstRecipe.AddCategory(firstCategory); List <Category> savedCategories = firstRecipe.GetCategories(); List <Category> firstList = new List <Category> { firstCategory }; //Assert Assert.Equal(firstList, savedCategories); }
public void Test_SaveAssignsIdToObject() { //Arrange Recipe firstRecipe = new Recipe("Salmon", "Salmon", "Boil", "3"); firstRecipe.Save(); //Act Recipe savedRecipe = Recipe.GetAll()[0]; int result = savedRecipe.GetId(); int testId = firstRecipe.GetId(); //Assert Assert.Equal(testId, result); }
public void Test_SaveToDatabase() { // Arrange Recipe firstRecipe = new Recipe("Ham", "A Delicious Ham Sandwich", "Butter Bread. Add Ham. Add Cheese. Eat."); firstRecipe.Save(); // Act List <Recipe> result = Recipe.GetAllRecipes(); List <Recipe> testList = new List <Recipe> { firstRecipe }; // Assert Assert.Equal(testList, result); }
public void Test_AddCategory_AddsCategoryToCategory() { //Arrange Category testCategory = new Category("Spicy"); testCategory.Save(); Recipe testRecipe = new Recipe("Salmon", "Salmon", "Boil", "3"); testRecipe.Save(); //Act testCategory.AddRecipe(testRecipe); List <Recipe> result = testCategory.GetRecipes(); List <Recipe> testList = new List <Recipe> { testRecipe }; //Assert Assert.Equal(testList, result); }
public void Test_AddCategory_AddsCategoryToRecipe() { //Arrange Recipe testRecipe = new Recipe("Salmon", "Salmon", "Boil", "3"); testRecipe.Save(); Category testCategory = new Category("Soup"); testCategory.Save(); //Act testRecipe.AddCategory(testCategory); List <Category> result = testRecipe.GetCategories(); List <Category> testList = new List <Category> { testCategory }; //Assert Assert.Equal(testList, result); }
public HomeModule() { Get["/"] = _ => { return(View["index.cshtml"]); }; Get["/categories"] = _ => { return(View["categories.cshtml"]); }; Get["/recipes"] = _ => { Dictionary <string, object> model = new Dictionary <string, object>(); List <Recipe> allRecipes = Recipe.GetAllRecipes(); List <Category> allCategories = Category.GetAllCategories(); model.Add("recipe", allRecipes); model.Add("categories", allCategories); return(View["recipes.cshtml", model]); }; Post["/recipes"] = _ => { Console.WriteLine("Ckeck returns: " + Request.Form["boxtest"]); Dictionary <string, object> model = new Dictionary <string, object>(); Recipe newRecipe = new Recipe(Request.Form["recipe-name"], Request.Form["recipe-description"], Request.Form["recipe-instructions"]); Category newCategory = Category.Find(Request.Form["assign-category"]); newRecipe.Save(); newRecipe.AddCategory(newCategory); List <Category> allCategories = Category.GetAllCategories(); List <Recipe> allRecipes = Recipe.GetAllRecipes(); model.Add("recipe", allRecipes); model.Add("categories", allCategories); return(View["recipes.cshtml", model]); }; Get["/categories"] = _ => { List <Category> allCategories = Category.GetAllCategories(); return(View["categories.cshtml", allCategories]); }; Post["/categories"] = _ => { Category newCategory = new Category(Request.Form["category-name"]); newCategory.Save(); List <Category> allCategories = Category.GetAllCategories(); return(View["categories.cshtml", allCategories]); }; Get["/category/{id}/{name}"] = parameters => { Category selectedCategory = Category.Find(parameters.id); List <Recipe> allRecipes = selectedCategory.GetRecipes(); Dictionary <string, object> model = new Dictionary <string, object>(); model.Add("category", selectedCategory); model.Add("recipes", allRecipes); return(View["category.cshtml", model]); }; Get["/recipe/{id}/{name}"] = parameters => { Dictionary <string, object> model = new Dictionary <string, object>(); Recipe selectedRecipe = Recipe.Find(parameters.id); List <Ingredient> ingredientList = Ingredient.GetAllIngredients(); model.Add("recipe", selectedRecipe); model.Add("instructions", selectedRecipe.SplitInstructions()); model.Add("ingredients", ingredientList); return(View["recipe.cshtml", model]); }; Post["/recipe/{id}/{name}"] = parameters => { Dictionary <string, object> model = new Dictionary <string, object>(); // Ingredient newIngredient = new Ingredient(); Recipe selectedRecipe = Recipe.Find(parameters.id); List <Ingredient> recipeIngredients = new List <Ingredient> { }; if (Request.Form["ingredient"] != "") { var newIngredient = Request.Form["ingredient"]; foreach (var ingredient in Ingredient.Find(newIngredient)) { selectedRecipe.AddIngredient(ingredient); } } model.Add("recipe", selectedRecipe); model.Add("instructions", selectedRecipe.SplitInstructions()); model.Add("ingredients", recipeIngredients); return(View["recipe.cshtml", model]); }; }
public HomeModule() { //Shows index page Get["/"] = _ => { return(View["index.cshtml"]); }; //Shows all styles of food recipes Get["/categories"] = _ => { List <Category> AllCategories = Category.GetAll(); return(View["categories.cshtml", AllCategories]); }; // Displays form to input new category Get["/categories/new"] = _ => { return(View["category_new.cshtml"]); }; // Demonstrates that the add was successful Post["/categories/new"] = _ => { Category newCategory = new Category(Request.Form["category-name"]); newCategory.Save(); List <Category> AllCategories = Category.GetAll(); return(View["categories.cshtml", AllCategories]); }; //Finds the proper category, and lists the recipes within it. Recipes can be added to this category from here. Get["/category/{id}"] = parameters => { Dictionary <string, object> model = new Dictionary <string, object>(); Category SelectedCategory = Category.Find(parameters.id); List <Recipe> CategoryRecipes = SelectedCategory.GetRecipes(); List <Recipe> AllRecipes = Recipe.GetAll(); model.Add("category", SelectedCategory); model.Add("categoryRecipes", CategoryRecipes); model.Add("allRecipes", AllRecipes); return(View["category.cshtml", model]); }; Get["/category/{id}/edit"] = parameters => { Category SelectedCategory = Category.Find(parameters.id); return(View["category_edit_form.cshtml", SelectedCategory]); }; Patch["/category/{id}/updated"] = parameters => { Category selectedCategory = Category.Find(parameters.id); selectedCategory.Update(Request.Form["category-style"]); return(View["category_updated.cshtml"]); }; Delete["/categories/{id}/deleted"] = parameters => { Category selectedCategory = Category.Find(parameters.id); selectedCategory.Delete(); List <Category> AllCategories = Category.GetAll(); return(View["categories.cshtml", AllCategories]); }; //Add a recipe to a category Post["/recipe_added"] = _ => { Recipe recipe = Recipe.Find(Request.Form["recipe-id"]); Category category = Category.Find(Request.Form["category-id"]); category.AddRecipe(recipe); return(View["success.cshtml"]); }; //Shows all recipes under that particular category; Gives you option to add a recipe Get["/recipes"] = _ => { List <Recipe> AllRecipes = Recipe.GetAll(); return(View["recipes.cshtml", AllRecipes]); }; // Displays the form to add a new recipe Get["/recipes/new"] = _ => { return(View["recipe_new.cshtml"]); }; // Demonstrates that the add for recipe was successful Post["/recipes/new"] = _ => { Recipe newRecipe = new Recipe(Request.Form["recipe-name"], Request.Form["recipe-ingredients"], Request.Form["recipe-instructions"], Request.Form["recipe-rating"]); newRecipe.Save(); List <Recipe> AllRecipes = Recipe.GetAll(); return(View["recipes.cshtml", AllRecipes]); }; //Find targeted recipe and all associated categories. Recipe can be added to category. Get["/recipes/{id}"] = parameters => { Dictionary <string, object> model = new Dictionary <string, object>(); Recipe SelectedRecipe = Recipe.Find(parameters.id); List <Category> RecipeCategories = SelectedRecipe.GetCategories(); List <Category> AllCategories = Category.GetAll(); model.Add("recipe", SelectedRecipe); model.Add("recipeCategories", RecipeCategories); model.Add("allCategories", AllCategories); return(View["recipe.cshtml", model]); }; Get["/recipe/{id}/edit"] = parameters => { Recipe SelectedRecipe = Recipe.Find(parameters.id); return(View["recipe_edit_form.cshtml", SelectedRecipe]); }; Patch["/recipe/{id}/updated"] = parameters => { Recipe selectedRecipe = Recipe.Find(parameters.id); selectedRecipe.Update(Request.Form["recipe-name"]); return(View["category_updated.cshtml"]); }; Delete["/recipe/{id}/deleted"] = parameters => { Recipe selectedRecipe = Recipe.Find(parameters.id); selectedRecipe.Delete(); List <Recipe> AllRecipes = Recipe.GetAll(); return(View["recipes.cshtml", AllRecipes]); }; //This will add a category to te recipe ; then show success page once added. Post["/category_added"] = _ => { Recipe recipe = Recipe.Find(Request.Form["recipe-id"]); Category category = Category.Find(Request.Form["category-id"]); recipe.AddCategory(category); return(View["success.cshtml"]); }; Post["/searched_recipes"] = _ => { List <Recipe> MatchedRecipes = Recipe.SearchedIngredient(Request.Form["searched-recipes"]); return(View["recipes_by_ingredient.cshtml", MatchedRecipes]); }; }