83 lines
3.4 KiB
C#
83 lines
3.4 KiB
C#
using System.Text;
|
|
|
|
namespace DamageAssesment.Api.Questions.Test
|
|
{
|
|
public class MockData
|
|
{
|
|
|
|
public static async Task<(bool, IEnumerable<Questions.Models.MultiLanQuestion>, string)> getOkResponse()
|
|
{
|
|
IEnumerable<Questions.Models.MultiLanQuestion> list = new List<Questions.Models.MultiLanQuestion>();
|
|
|
|
for (int i = 0; i < 10; i++)
|
|
{
|
|
list.Append(new Questions.Models.MultiLanQuestion { 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<Questions.Models.SurveyQuestions>, string)> getOkSurveyResponse()
|
|
{
|
|
List<Questions.Models.SurveyQuestions> list = new List<Questions.Models.SurveyQuestions>();
|
|
|
|
for (int i = 0; i < 10; i++)
|
|
{
|
|
List<Models.MultiLanQuestion> question = new List<Models.MultiLanQuestion>();
|
|
question.Add(new Models.MultiLanQuestion { 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,
|
|
Questions = question
|
|
});
|
|
}
|
|
return (true, list, null);
|
|
}
|
|
|
|
public static async Task<(bool, Questions.Models.MultiLanQuestion, 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.MultiLanQuestion, string)> getBadRequestResponse()
|
|
{
|
|
return (false, null, "Bad Request");
|
|
}
|
|
|
|
public static async Task<(bool, Questions.Models.MultiLanQuestion, string)> getNotFoundResponse()
|
|
{
|
|
return (false, null, "Not Found");
|
|
}
|
|
public static async Task<(bool, IEnumerable<Questions.Models.MultiLanQuestion>, string)> getNoContentResponse()
|
|
{
|
|
IEnumerable<Questions.Models.MultiLanQuestion> list = new List<Questions.Models.MultiLanQuestion>();
|
|
return (false, list, null);
|
|
}
|
|
public static async Task<(bool, List<Questions.Models.SurveyQuestions>, string)> getNoSurveyContentResponse()
|
|
{
|
|
List<Questions.Models.SurveyQuestions> list = new List<Questions.Models.SurveyQuestions>();
|
|
return (false, list, null);
|
|
}
|
|
|
|
public static async Task<Questions.Models.Question> getInputQuestionData()
|
|
{
|
|
Models.QuestionsTranslation QuestionsTranslation = new Models.QuestionsTranslation()
|
|
{
|
|
Language = "en",
|
|
QuestionText = "Sample question"
|
|
};
|
|
List<Models.QuestionsTranslation> QuestionsTranslations = new List<Models.QuestionsTranslation>();
|
|
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};
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
}
|