90 lines
3.6 KiB
C#
90 lines
3.6 KiB
C#
using DamageAssesment.Api.Questions.Db;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Internal;
|
|
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DamageAssesment.Api.Questions.Test
|
|
{
|
|
public class MockData
|
|
{
|
|
|
|
public static async Task<(bool, IEnumerable<Questions.Models.Question>, string)> getOkResponse()
|
|
{
|
|
IEnumerable<Questions.Models.Question> list = new List<Questions.Models.Question>();
|
|
|
|
for (int i = 0; i < 10; i++)
|
|
{
|
|
list.Append(new Questions.Models.Question { Id = i, TypeText = "Text" + i, SurveyId = 1, QuestionNumber = 1, IsRequired = true, Comment = false, Key = true, QuestionGroup = "group1",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.Question> question = new List<Models.Question>();
|
|
question.Add(new Models.Question { Id = i, TypeText = "Text" + i, SurveyId = 1, QuestionNumber = 1, IsRequired = true, Comment = false, Key = true, QuestionGroup = "group1", CategoryId = i });
|
|
list.Append(new Questions.Models.SurveyQuestions
|
|
{
|
|
CategoryId = i,
|
|
CategoryImage = "img" + i,
|
|
CategoryName = "Category " + i,
|
|
Questions = question
|
|
});
|
|
}
|
|
return (true, list, null);
|
|
}
|
|
|
|
public static async Task<(bool, Questions.Models.Question, 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.Question, string)> getBadRequestResponse()
|
|
{
|
|
return (false, null, "Bad Request");
|
|
}
|
|
|
|
public static async Task<(bool, Questions.Models.Question, string)> getNotFoundResponse()
|
|
{
|
|
return (false, null, "Not Found");
|
|
}
|
|
public static async Task<(bool, IEnumerable<Questions.Models.Question>, string)> getNoContentResponse()
|
|
{
|
|
IEnumerable<Questions.Models.Question> list = new List<Questions.Models.Question>();
|
|
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, QuestionGroup = "group1" ,CategoryId=1};
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
}
|