using System.Text; namespace DamageAssesment.Api.Questions.Test { public class MockData { public static async Task<(bool, IEnumerable, string)> getOkResponse() { IEnumerable list = new List(); for (int i = 0; i < 10; i++) { list.Append(new Questions.Models.MultiLanguage { Id = i, TypeText = "Text" + i, SurveyId = 1, QuestionNumber = 1, IsRequired = true, Comment = false, Key = true, CategoryId=i }); } return (true, list, null); } public static async Task<(bool, List, string)> getOkSurveyResponse() { List list = new List(); for (int i = 0; i < 10; i++) { List question = new List(); question.Add(new Models.MultiLanguage { Id = i, TypeText = "Text" + i, SurveyId = 1, QuestionNumber = 1, IsRequired = true, Comment = false, Key = true, CategoryId = i }); list.Append(new Questions.Models.SurveyQuestions { CategoryId = i, IconLibrary = "img" + i, IconName = "Category " + i, QuestionsText = question }); } return (true, list, null); } public static async Task<(bool, Questions.Models.MultiLanguage, string)> getOkResponse(int Id) { var Questions = await getOkResponse(); var Question = Questions.Item2.FirstOrDefault(s => s.Id == Id); return (true, Question, null); } public static async Task<(bool, Questions.Models.MultiLanguage, string)> getBadRequestResponse() { return (false, null, "Bad Request"); } public static async Task<(bool, Questions.Models.MultiLanguage, string)> getNotFoundResponse() { return (false, null, "Not Found"); } public static async Task<(bool, IEnumerable, string)> getNoContentResponse() { IEnumerable list = new List(); return (false, list, null); } public static async Task<(bool, List, string)> getNoSurveyContentResponse() { List list = new List(); return (false, list, null); } public static async Task getInputQuestionData() { Models.QuestionsTranslation QuestionsTranslation = new Models.QuestionsTranslation() { Language = "en", QuestionText = "Sample question" }; List QuestionsTranslations = new List(); QuestionsTranslations.Add(QuestionsTranslation); return new Questions.Models.Question { Id = 1, Questions=QuestionsTranslations, TypeText = "Text 1", SurveyId = 1, QuestionNumber = 1, IsRequired = true, Comment = false, Key = true, CategoryId=1}; } } }