Exemplo n.º 1
0
        public void when_question_already_exist_should_do_nothing()
        {
            var qustionId = Guid.NewGuid();
            var question  = "this is the simple question";

            Given(new QuestionCreated(qustionId, question));
            When(s => QuestionActions.Create(s, qustionId, question));
            Then();
        }
Exemplo n.º 2
0
        public void when_question_created_should_properly_create()
        {
            var qustionId = Guid.NewGuid();
            var question  = "this is the simple question";

            Given();
            When(s => QuestionActions.Create(s, qustionId, question));
            Then(new QuestionCreated(qustionId, question));
        }
Exemplo n.º 3
0
        public void Not_created_question_want_to_add_answer_should_do_nothing()
        {
            var qustionId = Guid.NewGuid();
            var answerId  = Guid.NewGuid();
            var answer    = "this is the test answer";

            Given();
            When(s => QuestionActions.Create(s, qustionId, answerId, answer, false));
            Then();
        }
Exemplo n.º 4
0
        public void Created_question_create_answer_should_emmited_event()
        {
            var qustionId = Guid.NewGuid();
            var question  = "this is the simple question";
            var answerId  = Guid.NewGuid();
            var answer    = "this is the test answer";

            Given(new QuestionCreated(qustionId, question));
            When(s => QuestionActions.Create(s, qustionId, answerId, answer, false));
            Then(new AnswerCreated(answerId, qustionId, answer, false));
        }
Exemplo n.º 5
0
        public void one_question_exist_add_another_should_properly_emmited_event()
        {
            var qustionId1 = Guid.NewGuid();
            var question1  = "this is the simple question 1";

            var qustionId2 = Guid.NewGuid();
            var question2  = "this is the simple question 2";

            Given(new QuestionCreated(qustionId1, question1));
            When(s => QuestionActions.Create(s, qustionId2, question2));
            Then(new QuestionCreated(qustionId2, question2));
        }
Exemplo n.º 6
0
        public void Given_Two_Question_connect_one_answer_to_both_should_emmited_events()
        {
            var qustionId1 = Guid.NewGuid();
            var question1  = "this is the simple question 1";
            var qustionId2 = Guid.NewGuid();
            var question2  = "this is the simple question 2";
            var answerId1  = Guid.NewGuid();
            var answer1    = "this is the test answer";


            Given(new QuestionCreated(qustionId1, question1));
            Given(new QuestionCreated(qustionId2, question2));
            When(s => QuestionActions.Create(s, qustionId1, answerId1, answer1, true));
            When(s => QuestionActions.Create(s, qustionId2, answerId1, answer1, false));
            Then(new AnswerCreated(answerId1, qustionId1, answer1, true), new AnswerCreated(answerId1, qustionId2, answer1, false));
        }
Exemplo n.º 7
0
        public async Task <Guid> HandleAsync(CreateQuestion command)
        {
            var questionId = Guid.NewGuid();

            var questionStreamId = $"{StreamPrefix.Question}_{command.CreatedOn}";

            await _eventStoreConnectionProvider.Execute <QuestionState>(questionStreamId, s => QuestionActions.Create(s, questionId, command.Question));

            await _eventStoreConnectionProvider.Execute <QuestionState>(questionStreamId, s => TagActions.Create(s, questionId, command.Tag));


            return(questionId);
        }
Exemplo n.º 8
0
        public async Task <Guid> HandleAsync(CreateAnswer command)
        {
            var id = Guid.NewGuid();
            var questionStreamId = $"{StreamPrefix.Question}_{command.CreatedBy}";
            await _eventStoreConnectionProvider.Execute <QuestionState>(questionStreamId, s => QuestionActions.Create(s, command.QuestionId, id, command.Answer, command.IsCorrect));

            return(id);
        }