コード例 #1
0
    def test_question_with_no_answers_should_not_be_skipped(self):
        # Given
        answers = {}
        answer_schema = {
            'id': 'answer_1',
            'title': '',
            'type': '',
            'label': ''
        }
        skip_condition = {
            'when': [{
                'id': 'answer_1',
                'condition': 'equals',
                'value': 'skip me'
            }]
        }
        question_schema = {
            'id': 'question_id',
            'title': 'question_title',
            'type': 'GENERAL',
            'answers': [answer_schema],
            'skip_condition': skip_condition
        }

        # When
        question = Question(question_schema, answers)

        # Then
        self.assertFalse(question.is_skipped(answers))
コード例 #2
0
 def _build_questions(block_id, section_schema, answers):
     questions = []
     for question_schema in section_schema["questions"]:
         question = Question(block_id, question_schema, answers)
         if not question.is_skipped(answers):
             questions.append(question)
     return questions
コード例 #3
0
ファイル: section.py プロジェクト: qateam123/eq
 def _build_questions(section_schema, answers):
     questions = []
     for question_schema in section_schema['questions']:
         question = Question(question_schema, answers)
         if not question.is_skipped(answers):
             questions.append(question)
     return questions
コード例 #4
0
    def test_question_with_no_answers_should_not_be_skipped(self):
        # Given
        answers = {}
        answer_schema = {'id': 'answer_1', 'title': '', 'type': '', 'label': ''}
        skip_condition = {'when': {'id': 'answer_1', 'condition': 'equals', 'value': 'skip me'}}
        question_schema = {'id': 'question_id', 'title': 'question_title', 'type': 'GENERAL', 'answers': [answer_schema],
                           'skip_condition': skip_condition}

        # When
        question = Question('1', question_schema, answers)

        # Then
        self.assertFalse(question.is_skipped(answers))
コード例 #5
0
    def test_build_answers_repeating_answers(self):
        # Given
        self.answer_store.add(Answer(
            answer_id='answer',
            value='Value',
        ))
        self.answer_store.add(
            Answer(
                answer_id='answer',
                value='Value 2',
                group_instance=1,
                group_instance_id='group-1',
            ))
        self.answer_store.add(
            Answer(
                answer_id='answer',
                value='Value 3',
                group_instance=2,
                group_instance_id='group-2',
            ))
        answer_schema = {'id': 'answer', 'title': '', 'type': '', 'label': ''}
        question_schema = {
            'id': 'question_id',
            'title': 'question_title',
            'type': 'RepeatingAnswer',
            'answers': [answer_schema]
        }

        # When
        with patch('app.templating.summary.question.get_question_title',
                   return_value=False):
            question = Question(question_schema, self.answer_store,
                                self.metadata, self.schema, 0)
            # Then
            self.assertEqual(len(question.answers), 1)
            self.assertEqual(question.answers[0]['value'], 'Value')

            question = Question(question_schema, self.answer_store,
                                self.metadata, self.schema, 1)
            # Then
            self.assertEqual(len(question.answers), 1)
            self.assertEqual(question.answers[0]['value'], 'Value 2')

            question = Question(question_schema, self.answer_store,
                                self.metadata, self.schema, 2)
            # Then
            self.assertEqual(len(question.answers), 1)
            self.assertEqual(question.answers[0]['value'], 'Value 3')
コード例 #6
0
    def test_merge_multiple_date_range_answers(self):
        # Given
        self.answer_store.add_or_update(Answer(
            answer_id='answer_1',
            value='13/02/2016',
        ))
        self.answer_store.add_or_update(Answer(
            answer_id='answer_2',
            value='13/09/2016',
        ))
        self.answer_store.add_or_update(Answer(
            answer_id='answer_3',
            value='13/03/2016',
        ))
        self.answer_store.add_or_update(Answer(
            answer_id='answer_4',
            value='13/10/2016',
        ))

        first_date_answer_schema = {'id': 'answer_1', 'label': 'From', 'type': 'date'}
        second_date_answer_schema = {'id': 'answer_2', 'label': 'To', 'type': 'date'}
        third_date_answer_schema = {'id': 'answer_3', 'label': 'First period', 'type': 'date'}
        fourth_date_answer_schema = {'id': 'answer_4', 'label': 'Second period', 'type': 'date'}
        question_schema = {'id': 'question_id', 'title': 'question_title', 'type': 'DateRange', 'answers':
                           [first_date_answer_schema, second_date_answer_schema, third_date_answer_schema, fourth_date_answer_schema]}

        # When
        question = Question(question_schema, self.answer_store, self.metadata, self.schema, 0)

        # Then
        self.assertEqual(len(question.answers), 2)
        self.assertEqual(question.answers[0]['value']['from'], '13/02/2016')
        self.assertEqual(question.answers[0]['value']['to'], '13/09/2016', '%d/%m/%Y')
        self.assertEqual(question.answers[1]['value']['from'], '13/03/2016', '%d/%m/%Y')
        self.assertEqual(question.answers[1]['value']['to'], '13/10/2016', '%d/%m/%Y')
コード例 #7
0
    def test_checkbox_button_none_selected_should_be_none(self):
        # Given
        self.answer_store.add(Answer(
            answer_id='answer_1',
            value=[],
        ))
        options = [{
            'label': 'Light Side',
            'value': 'Light Side',
        }]
        answer_schema = {
            'id': 'answer_1',
            'label': 'Which side?',
            'type': 'Checkbox',
            'options': options
        }
        question_schema = {
            'id': 'question_id',
            'title': 'question_title',
            'type': 'GENERAL',
            'answers': [answer_schema]
        }

        # When
        with patch('app.templating.summary.question.get_question_title',
                   return_value=False):
            question = Question(question_schema, self.answer_store,
                                self.metadata, self.schema)

        # Then
        self.assertEqual(question.answers[0]['value'], None)
コード例 #8
0
    def test_radio_button_none_selected_should_be_none(self):
        # Given
        answers = {'answer_1': None}
        options = [{
            'label': 'Light Side',
            'value': 'Light Side',
        }]
        answer_schema = {
            'id': 'answer_1',
            'label': 'Which side?',
            'type': 'Radio',
            'options': options
        }
        question_schema = {
            'id': 'question_id',
            'title': 'question_title',
            'type': 'GENERAL',
            'answers': [answer_schema]
        }

        # When
        question = Question(question_schema, answers)

        # Then
        self.assertEqual(question.answers[0].value, None)
コード例 #9
0
    def test_radio_button_other_option_text(self):
        # Given
        answers = {'answer_1': 'I want to be on the dark side'}
        options = [{
            'label': 'Light Side',
            'value': 'Light Side',
        }, {
            'label': 'Other option label',
            'value': 'other',
            "other": {
                "label": "Please specify other"
            }
        }]
        answer_schema = {
            'id': 'answer_1',
            'label': 'Which side?',
            'type': 'Radio',
            'options': options
        }
        question_schema = {
            'id': 'question_id',
            'title': 'question_title',
            'type': 'GENERAL',
            'answers': [answer_schema]
        }

        # When
        question = Question(question_schema, answers)

        # Then
        self.assertEqual(question.answers[0].value,
                         'I want to be on the dark side')
コード例 #10
0
    def test_checkbox_button_other_option_text(self):
        # Given
        answers = {'answer_1': ['Light Side', 'other', 'Neither']}
        options = [{
            'label': 'Light Side',
            'value': 'Light Side',
        }, {
            'label': 'Other',
            'value': 'other',
            "other": {
                "label": "Please specify other"
            }
        }]
        answer_schema = {
            'id': 'answer_1',
            'label': 'Which side?',
            'type': 'Checkbox',
            'options': options
        }
        question_schema = {
            'id': 'question_id',
            'title': 'question_title',
            'type': 'GENERAL',
            'answers': [answer_schema]
        }

        # When
        question = Question(question_schema, answers)

        # Then
        self.assertEqual(len(question.answers[0].value), 2)
        self.assertEqual(question.answers[0].value[0], 'Light Side')
        self.assertEqual(question.answers[0].value[1], 'Neither')
コード例 #11
0
    def test_radio_button_none_selected_should_be_none(self):
        # Given
        options = [{
            'label': 'Light Side',
            'value': 'Light Side',
        }]
        answer_schema = {
            'id': 'answer_1',
            'label': 'Which side?',
            'type': 'Radio',
            'options': options,
            'group_instance': 0
        }
        question_schema = {
            'id': 'question_id',
            'title': 'question_title',
            'type': 'GENERAL',
            'answers': [answer_schema]
        }

        # When
        with patch('app.templating.summary.question.get_question_title',
                   return_value=False):
            question = Question(question_schema, self.answer_store,
                                self.metadata, self.schema, 0)

        # Then
        self.assertEqual(question.answers[0]['value'], None)
コード例 #12
0
    def test_create_question_with_multiple_answers(self):
        # Given
        self.answer_store.add_or_update(Answer(
            answer_id='answer_1',
            value='Han',
        ))
        self.answer_store.add_or_update(Answer(
            answer_id='answer_2',
            value='Solo',
        ))
        first_answer_schema = {
            'id': 'answer_1',
            'label': 'First name',
            'type': 'text'
        }
        second_answer_schema = {
            'id': 'answer_2',
            'label': 'Surname',
            'type': 'text'
        }
        question_schema = {'id': 'question_id', 'title': 'question_title', 'type': 'GENERAL',
                           'answers': [first_answer_schema, second_answer_schema]}

        # When
        with patch('app.templating.summary.question.get_question_title', return_value=False):
            question = Question(question_schema, self.answer_store, self.metadata, self.schema, 0)

        # Then
        self.assertEqual(len(question.answers), 2)
        self.assertEqual(question.answers[0]['value'], 'Han')
        self.assertEqual(question.answers[1]['value'], 'Solo')
コード例 #13
0
    def test_radio_answer_with_detail_answer_returns_the_value(self):
        # Given
        self.answer_store.add_or_update(Answer(
            answer_id='answer_1',
            value='Other',
        ))
        self.answer_store.add_or_update(Answer(
            answer_id='child_answer',
            value='Test',
        ))
        options = [{
            'label': 'Other',
            'value': 'Other',
            'detail_answer': {
                'id': 'child_answer',
                'type': 'TextField'
            }
        }]
        answer_schema = [{
            'id': 'answer_1',
            'label': 'Which side?',
            'type': 'Radio',
            'options': options
        }]
        question_schema = {'id': 'question_id', 'title': 'question_title', 'type': 'GENERAL',
                           'answers': answer_schema}

        # When
        with patch('app.templating.summary.question.get_question_title', return_value=False):
            question = Question(question_schema, self.answer_store, self.metadata, self.schema, 0)

        # Then
        self.assertEqual(question.answers[0]['value']['detail_answer_value'], 'Test')
コード例 #14
0
    def test_checkbox_button_other_option_text(self):
        # Given
        self.answer_store.add_or_update(Answer(
            answer_id='answer_1',
            value=['Light Side', 'other'],
        ))
        self.answer_store.add_or_update(Answer(
            answer_id='child_answer',
            value='Neither',
        ))
        options = [{
            'label': 'Light Side',
            'value': 'Light Side',
        }, {
            'label': 'other',
            'value': 'other',
            'detail_answer': {'id': 'child_answer'}
        }]
        answer_schema = {'id': 'answer_1', 'label': 'Which side?', 'type': 'Checkbox', 'options': options}
        question_schema = {'id': 'question_id', 'title': 'question_title', 'type': 'GENERAL', 'answers': [answer_schema]}

        # When
        with patch('app.templating.summary.question.get_question_title', return_value=False):
            question = Question(question_schema, self.answer_store, self.metadata, self.schema, 0)

        # Then
        self.assertEqual(len(question.answers[0]['value']), 2)
        self.assertEqual(question.answers[0]['value'][0].label, 'Light Side')
        self.assertEqual(question.answers[0]['value'][1].detail_answer_value, 'Neither')
コード例 #15
0
    def test_dropdown_selected_option_label(self):
        # Given
        options = [{
            'label': 'Light Side label',
            'value': 'Light Side',
        }, {
            'label': 'Dark Side label',
            'value': 'Dark Side',
        }]
        answer_schema = {
            'id': 'answer_1',
            'label': 'Which side?',
            'type': 'Dropdown',
            'options': options
        }
        question_schema = {
            'id': 'question_id',
            'title': 'question_title',
            'type': 'GENERAL',
            'answers': [answer_schema]
        }

        self.answer_store.add(Answer(
            answer_id='answer_1',
            value='Dark Side',
        ))

        # When
        with patch('app.templating.summary.question.get_question_title',
                   return_value=False):
            question = Question(question_schema, self.answer_store,
                                self.metadata, self.schema, 0)

        # Then
        self.assertEqual(question.answers[0]['value'], 'Dark Side label')
コード例 #16
0
    def test_merge_date_range_answers(self):
        # Given
        answers = {'answer_1': '13/02/2016', 'answer_2': '13/09/2016'}
        first_date_answer_schema = {
            'id': 'answer_1',
            'label': 'From',
            'type': 'date'
        }
        second_date_answer_schema = {
            'id': 'answer_2',
            'label': 'To',
            'type': 'date'
        }
        question_schema = {
            'id': 'question_id',
            'title': 'question_title',
            'type': 'DateRange',
            'answers': [first_date_answer_schema, second_date_answer_schema]
        }

        # When
        question = Question(question_schema, answers)

        # Then
        self.assertEqual(len(question.answers), 1)
        self.assertEqual(question.answers[0].value['from'], '13/02/2016')
        self.assertEqual(question.answers[0].value['to'], '13/09/2016',
                         '%d/%m/%Y')
コード例 #17
0
    def test_checkbox_button_options(self):
        # Given
        answers = {'answer_1': ['Light Side', 'Dark Side']}
        options = [{
            'label': 'Light Side',
            'value': 'Light Side',
        }, {
            'label': 'Dark Side',
            'value': 'Dark Side',
        }]
        answer_schema = {
            'id': 'answer_1',
            'label': 'Which side?',
            'type': 'Checkbox',
            'options': options
        }
        question_schema = {
            'id': 'question_id',
            'title': 'question_title',
            'type': 'GENERAL',
            'answers': [answer_schema]
        }

        # When
        question = Question(question_schema, answers)

        # Then
        self.assertEqual(len(question.answers[0].value), 2)
        self.assertEqual(question.answers[0].value[0], 'Light Side')
        self.assertEqual(question.answers[0].value[1], 'Dark Side')
コード例 #18
0
    def test_create_question_with_multiple_answers(self):
        # Given
        answers = {'answer_1': 'Han', 'answer_2': 'Solo'}
        first_answer_schema = {
            'id': 'answer_1',
            'label': 'First name',
            'type': 'text'
        }
        second_answer_schema = {
            'id': 'answer_2',
            'label': 'Surname',
            'type': 'text'
        }
        question_schema = {
            'id': 'question_id',
            'title': 'question_title',
            'type': 'GENERAL',
            'answers': [first_answer_schema, second_answer_schema]
        }

        # When
        question = Question(question_schema, answers)

        # Then
        self.assertEqual(len(question.answers), 2)
        self.assertEqual(question.answers[0].value, 'Han')
        self.assertEqual(question.answers[1].value, 'Solo')
コード例 #19
0
    def test_create_question_with_relationship_answers(self):
        with self.app_request_context():
            schema = load_schema_from_params('test', 'routing_on_answer_from_driving_repeating_group')

        answers = [
            {'group_instance': 0, 'group_instance_id': 'aaa', 'answer_id': 'primary-name', 'answer_instance': 0, 'value': 'Aaa'},
            {'group_instance': 0, 'group_instance_id': 'bbb', 'answer_id': 'repeating-name', 'answer_instance': 0, 'value': 'Bbb'},
            {'group_instance': 1, 'group_instance_id': 'ccc', 'answer_id': 'repeating-name', 'answer_instance': 0, 'value': 'Ccc'},
            {'group_instance': 0, 'group_instance_id': 'aaa', 'answer_id': 'who-is-related', 'answer_instance': 0, 'value': 'Husband or wife'},
            {'group_instance': 0, 'group_instance_id': 'aaa', 'answer_id': 'who-is-related', 'answer_instance': 1, 'value': 'Mother or father'},
            {'group_instance': 1, 'group_instance_id': 'bbb', 'answer_id': 'who-is-related', 'answer_instance': 0, 'value': 'Relation - other'},
        ]

        answer_store = AnswerStore(answers)

        question_schema = {
            'answers': [{
                'label': '%(current_person)s is the .... of %(other_person)s',
                'id': 'who-is-related',
                'options': [
                    {'label': 'Husband or wife', 'value': 'Husband or wife'},
                    {'label': 'Mother or father', 'value': 'Mother or father'},
                    {'label': 'Relation - other', 'value': 'Relation - other'},

                ],
                'type': 'Relationship',
                'parent_id': 'relationship-question'
            }],
            'id': 'relationship-question',
            'title': 'Describe how this person is related to the others',
            'description': 'If members are not related, select the ‘unrelated’ option, including foster parents and foster children.',
            'member_label': "answers['primary-name'] | default(answers['repeating-name'])",
            'type': 'Relationship',
            'parent_id': 'relationships'
        }

        question = Question(question_schema, answer_store, self.metadata, schema, 0)
        self.assertEqual(len(question.answers), 2)
        self.assertEqual(question.answers[0]['value'], 'Husband or wife')
        self.assertEqual(question.answers[1]['value'], 'Mother or father')

        question = Question(question_schema, answer_store, self.metadata, schema, 1)
        self.assertEqual(len(question.answers), 1)
        self.assertEqual(question.answers[0]['value'], 'Relation - other')
コード例 #20
0
 def _build_questions(block_schema, answer_store, metadata, schema):
     questions = []
     for question_schema in block_schema.get('questions', []):
         is_skipped = evaluate_skip_conditions(
             question_schema.get('skip_conditions'), schema, metadata,
             answer_store)
         if not is_skipped:
             question = Question(question_schema, answer_store, metadata,
                                 schema).serialize()
             questions.append(question)
     return questions
コード例 #21
0
    def test_merge_multiple_date_range_answers(self):
        # Given
        answers = {
            'answer_1': '13/02/2016',
            'answer_2': '13/09/2016',
            'answer_3': '13/03/2016',
            'answer_4': '13/10/2016'
        }
        first_date_answer_schema = {
            'id': 'answer_1',
            'label': 'From',
            'type': 'date'
        }
        second_date_answer_schema = {
            'id': 'answer_2',
            'label': 'To',
            'type': 'date'
        }
        third_date_answer_schema = {
            'id': 'answer_3',
            'label': 'First period',
            'type': 'date'
        }
        fourth_date_answer_schema = {
            'id': 'answer_4',
            'label': 'Second period',
            'type': 'date'
        }
        question_schema = {
            'id':
            'question_id',
            'title':
            'question_title',
            'type':
            'DateRange',
            'answers': [
                first_date_answer_schema, second_date_answer_schema,
                third_date_answer_schema, fourth_date_answer_schema
            ]
        }

        # When
        question = Question(question_schema, answers)

        # Then
        self.assertEqual(len(question.answers), 2)
        self.assertEqual(question.answers[0].value['from'], '13/02/2016')
        self.assertEqual(question.answers[0].value['to'], '13/09/2016',
                         '%d/%m/%Y')
        self.assertEqual(question.answers[1].value['from'], '13/03/2016',
                         '%d/%m/%Y')
        self.assertEqual(question.answers[1].value['to'], '13/10/2016',
                         '%d/%m/%Y')
コード例 #22
0
    def test_create_question_with_answer_label_when_empty_title(self):
        # Given
        answer_schema = {'type': 'Number', 'id': 'age-answer', 'mandatory': True, 'label': 'Age'}
        question_schema = {'id': 'question_id', 'title': '', 'type': 'GENERAL', 'answers': [answer_schema]}

        # When
        with patch('app.templating.summary.question.get_question_title', return_value=False):
            question = Question(question_schema, self.answer_store, self.metadata, self.schema, 0)

        # Then
        self.assertEqual(question.title, 'Age')
        self.assertEqual(len(question.answers), 1)
コード例 #23
0
    def test_create_question_with_no_answers(self):
        # Given
        question_title = 'question_title'
        question_schema = {'id': 'question_id', 'title': question_title, 'type': 'GENERAL', 'answers': []}

        # When
        with patch('app.templating.summary.question.get_question_title', return_value=question_title):
            question = Question(question_schema, self.answer_store, self.metadata, self.schema, 0)

        # Then
        self.assertEqual(question.id, 'question_id-0')
        self.assertEqual(question.title, question_title)
        self.assertEqual(len(question.answers), 0)
コード例 #24
0
    def test_checkbox_answer_with_other_value_returns_the_value(self):
        # Given
        self.answer_store.add(
            Answer(
                answer_id='answer_1',
                value=['Light Side', 'Other'],
            ))
        self.answer_store.add(Answer(
            answer_id='child_answer',
            value='Test',
        ))

        options = [{
            'label': 'Light Side',
            'value': 'Light Side',
        }, {
            'label': 'Other',
            'value': 'Other',
            'child_answer_id': 'child_answer'
        }]
        answer_schema = [{
            'id': 'answer_1',
            'label': 'Which side?',
            'type': 'Checkbox',
            'options': options
        }, {
            'parent_answer_id': 'answer_1',
            'id': 'child_answer',
            'type': 'TextField'
        }]
        question_schema = {
            'id': 'question_id',
            'title': 'question_title',
            'type': 'GENERAL',
            'answers': answer_schema
        }

        # When
        with patch('app.templating.summary.question.get_question_title',
                   return_value=False):
            question = Question(question_schema, self.answer_store,
                                self.metadata, self.schema, 0)

        # Then
        self.assertEqual(len(question.answers[0]['value']), 2)
        self.assertEqual(question.answers[0]['child_answer_value'], 'Test')
コード例 #25
0
    def test_create_question(self):
        # Given
        answers = mock.MagicMock()
        answer_schema = mock.MagicMock()
        question_schema = {
            'id': 'question_id',
            'title': 'question_title',
            'type': 'GENERAL',
            'answers': [answer_schema]
        }

        # When
        question = Question(question_schema, answers)

        # Then
        self.assertEqual(question.id, 'question_id')
        self.assertEqual(question.title, 'question_title')
        self.assertEqual(len(question.answers), 1)
コード例 #26
0
    def test_checkbox_button_other_option_empty(self):
        # Given
        self.answer_store.add(
            Answer(
                answer_id='answer_1',
                value=['other', ''],
            ))

        options = [{
            'label': 'Light Side',
            'value': 'Light Side',
        }, {
            'label': 'Other option label',
            'value': 'other',
            'other': {
                'label': 'Please specify other'
            }
        }]
        answer_schema = {
            'id': 'answer_1',
            'label': 'Which side?',
            'type': 'Checkbox',
            'options': options
        }
        question_schema = {
            'id': 'question_id',
            'title': 'question_title',
            'type': 'GENERAL',
            'answers': [answer_schema]
        }

        # When
        with patch('app.templating.summary.question.get_question_title',
                   return_value=False):
            question = Question(question_schema, self.answer_store,
                                self.metadata, self.schema, 0)

        # Then
        self.assertEqual(len(question.answers[0]['value']), 1)
        self.assertEqual(question.answers[0]['value'][0].label,
                         'Other option label')
        self.assertEqual(question.answers[0]['value'][0].should_display_other,
                         True)
コード例 #27
0
    def test_create_question_with_conditional_title(self):
        # Given
        self.answer_store.add(Answer(
            answer_id='answer_1',
            value='Han',
        ))

        title_when = [{
            'id': 'answer_1',
            'condition': 'equals',
            'value': 'Han'
        }]
        question_schema = {
            'id':
            'question_id',
            'titles': [{
                'value': 'conditional_title',
                'when': title_when
            }, {
                'value': 'question_title'
            }],
            'type':
            'GENERAL',
            'answers': [self.answer_schema]
        }

        # When
        with patch('app.templating.utils.evaluate_when_rules',
                   side_effect=[True, False]) as evaluate_when_rules:
            question = Question(question_schema, self.answer_store,
                                self.metadata, self.schema, 0)

        # Then
        evaluate_when_rules.assert_called_once_with(title_when,
                                                    self.schema,
                                                    self.metadata,
                                                    self.answer_store,
                                                    0,
                                                    group_instance_id=None)
        self.assertEqual(question.id, 'question_id-0')
        self.assertEqual(question.title, 'conditional_title')
        self.assertEqual(len(question.answers), 1)
コード例 #28
0
    def test_build_answers_repeating_answers(self):
        # Given
        answers = {
            'answer': 'value',
            'answer_1': 'value1',
            'answer_2': 'value2',
        }
        answer_schema = {'id': 'answer', 'title': '', 'type': '', 'label': ''}
        question_schema = {
            'id': 'question_id',
            'title': 'question_title',
            'type': 'RepeatingAnswer',
            'answers': [answer_schema]
        }

        # When
        question = Question(question_schema, answers)

        # Then
        self.assertEqual(len(question.answers), 3)
コード例 #29
0
    def test_merge_date_range_answers(self):
        # Given
        self.answer_store.add(
            Answer(
                answer_id='answer_1',
                value='13/02/2016',
            ))
        self.answer_store.add(
            Answer(
                answer_id='answer_2',
                value='13/09/2016',
            ))
        first_date_answer_schema = {
            'id': 'answer_1',
            'label': 'From',
            'type': 'date'
        }
        second_date_answer_schema = {
            'id': 'answer_2',
            'label': 'To',
            'type': 'date'
        }
        question_schema = {
            'id': 'question_id',
            'title': 'question_title',
            'type': 'DateRange',
            'answers': [first_date_answer_schema, second_date_answer_schema]
        }

        # When
        with patch('app.templating.summary.question.get_question_title',
                   return_value=False):
            question = Question(question_schema, self.answer_store,
                                self.metadata, self.schema, 0)

        # Then
        self.assertEqual(len(question.answers), 1)
        self.assertEqual(question.answers[0]['value']['from'], '13/02/2016')
        self.assertEqual(question.answers[0]['value']['to'], '13/09/2016',
                         '%d/%m/%Y')
コード例 #30
0
    def test_radio_button_other_option_text(self):
        # Given
        self.answer_store.add(
            Answer(
                answer_id='answer_1',
                value='I want to be on the dark side',
            ))
        options = [{
            'label': 'Light Side',
            'value': 'Light Side',
        }, {
            'label': 'Other option label',
            'value': 'other',
            'other': {
                'label': 'Please specify other'
            }
        }]
        answer_schema = {
            'id': 'answer_1',
            'label': 'Which side?',
            'type': 'Radio',
            'options': options
        }
        question_schema = {
            'id': 'question_id',
            'title': 'question_title',
            'type': 'GENERAL',
            'answers': [answer_schema]
        }

        # When
        with patch('app.templating.summary.question.get_question_title',
                   return_value=False):
            question = Question(question_schema, self.answer_store,
                                self.metadata, self.schema, 0)

        # Then
        self.assertEqual(question.answers[0]['value'],
                         'I want to be on the dark side')