コード例 #1
0
 def test_validation_query_returns_external_error(self):
     """ The form is invalid if given a query that returns any errors """
     data = {'query': 'http://www.example.com?x=y', 'description': 'foo'}
     with patch('oneanddone.tasks.forms.BugzillaUtils') as BugzillaUtils:
         message = 'bar'
         BugzillaUtils().request_bugcount.side_effect = ValueError(message)
         form = TaskImportBatchForm(data=data)
         self.assertFalse(form.is_valid())
         eq_(form.non_field_errors(), ['External error: ' + message])
コード例 #2
0
ファイル: test_forms.py プロジェクト: akatsoulas/oneanddone
 def test_validation_query_returns_external_error(self):
     """ The form is invalid if given a query that returns any errors """
     data = {'query': 'http://www.example.com?x=y',
             'description': 'foo'}
     with patch('oneanddone.tasks.forms.BugzillaUtils') as BugzillaUtils:
         message = 'bar'
         BugzillaUtils().request_bugcount.side_effect = ValueError(message)
         form = TaskImportBatchForm(data=data)
         self.assertFalse(form.is_valid())
         eq_(form.non_field_errors(), ['External error: ' + message])
コード例 #3
0
 def test_validation_invalid_query(self):
     """
     The form is invalid when the query has no URL parameters.
     """
     data = {'query': 'http://www.example.com', 'description': 'foo'}
     form = TaskImportBatchForm(data=data)
     self.assertFalse(form.is_valid())
     eq_(form.non_field_errors(), [('For the query URL, please provide '
                                    'a full URL that includes search '
                                    'parameters.')])
コード例 #4
0
 def test_validation_no_query_results(self):
     """
     The form is invalid when given a query that returns 0 results.
     """
     data = {'query': 'http://www.example.com?x=y', 'description': 'foo'}
     with patch('oneanddone.tasks.forms.BugzillaUtils') as BugzillaUtils:
         BugzillaUtils().request_bugcount.return_value = 0
         form = TaskImportBatchForm(data=data)
         self.assertFalse(form.is_valid())
         eq_(form.non_field_errors(), [('Your query does not return'
                                        ' any results.')])
コード例 #5
0
ファイル: test_forms.py プロジェクト: akatsoulas/oneanddone
 def test_validation_invalid_query(self):
     """
     The form is invalid when the query has no URL parameters.
     """
     data = {'query': 'http://www.example.com',
             'description': 'foo'}
     form = TaskImportBatchForm(data=data)
     self.assertFalse(form.is_valid())
     eq_(form.non_field_errors(),
         [('For the query URL, please provide '
           'a full URL that includes search '
           'parameters.')])
コード例 #6
0
ファイル: test_forms.py プロジェクト: akatsoulas/oneanddone
 def test_validation_no_query_results(self):
     """
     The form is invalid when given a query that returns 0 results.
     """
     data = {'query': 'http://www.example.com?x=y',
             'description': 'foo'}
     with patch('oneanddone.tasks.forms.BugzillaUtils') as BugzillaUtils:
         BugzillaUtils().request_bugcount.return_value = 0
         form = TaskImportBatchForm(data=data)
         self.assertFalse(form.is_valid())
         eq_(form.non_field_errors(), [('Your query does not return'
                                        ' any results.')])
コード例 #7
0
    def get_forms(self):
        kwargs = {'initial': None}
        if self.request.method == 'POST':
            kwargs['data'] = self.request.POST
        batch_form = TaskImportBatchForm(instance=None,
                                         prefix='batch',
                                         **kwargs)
        criterion_formset = TaskInvalidCriteriaFormSet(prefix='criterion',
                                                       **kwargs)
        kwargs['initial'] = {
            'end_date': date.today() + timedelta(days=30),
            'repeatable': False,
            'owner': self.request.user
        }

        task_form = TaskForm(instance=None, prefix='task', **kwargs)

        forms = {
            'criterion_formset': criterion_formset,
            'batch_form': batch_form,
            'task_form': task_form
        }

        # Create a hidden form for each possible PreviewConfirmationForm stage.
        # These forms are used to signal what the next stage should be.
        make_stage = lambda x: PreviewConfirmationForm(data={'stage': x})
        stages = PreviewConfirmationForm.submission_stages
        forms.update({'stage_form__' + s: make_stage(s) for s in stages})
        return forms
コード例 #8
0
ファイル: test_forms.py プロジェクト: akatsoulas/oneanddone
    def test_num_fresh_bugs_with_big_stale_query(self):
        """
        Given a query that returns max_batch_size + n results, where
        n < max_batch_size, the number of fresh bugs in the form's
        cleaned data is equal to n the second time the query is submitted
        (Next n bugs are accepted.)
        """
        max_batch_size = 3
        n = 2
        query_params = 'foo'
        db_bugs = BugzillaBugFactory.create_batch(max_batch_size)
        batch1 = TaskImportBatchFactory.create()
        for bug in db_bugs:
            TaskFactory.create_batch(1, batch=batch1, imported_item=bug,
                                     is_invalid=False)

        with patch('oneanddone.tasks.forms.BugzillaUtils.request_bugs') as request_bugs:
            stale_bugs = [{u'id': bug.bugzilla_id, u'summary': bug.summary}
                          for bug in db_bugs]
            new_bugs = [{u'id': 50 + i, u'summary': u'a'} for i in range(n)]
            all_bugs = stale_bugs + new_bugs

            def fake_request(request_params, fields=['id', 'summary'],
                             offset=0, limit=99):
                return all_bugs[offset:offset + limit]

            request_bugs.side_effect = fake_request
            bugs = TaskImportBatchForm._get_fresh_bugs(batch1.query,
                                                       query_params,
                                                       len(all_bugs),
                                                       max_batch_size)
            eq_(bugs, all_bugs[max_batch_size:])
コード例 #9
0
ファイル: test_forms.py プロジェクト: akatsoulas/oneanddone
    def test_num_fresh_bugs_with_small_stale_query(self):
        """
        Given a query that returns n < max_batch_size results, the
        number of fresh bugs in the form's cleaned data is equal to 0,
        if the query has been submitted before
        """
        max_batch_size = 20
        query_params = 'foo'
        bug1, bug2 = BugzillaBugFactory.create_batch(2)
        batch1 = TaskImportBatchFactory.create()
        TaskFactory.create_batch(1, batch=batch1, imported_item=bug1,
                                 is_invalid=False)
        TaskFactory.create_batch(1, batch=batch1, imported_item=bug2,
                                 is_invalid=False)
        with patch('oneanddone.tasks.forms.BugzillaUtils.request_bugs') as request_bugs:
            # two bugs previously imported in batch1
            request_bugs.return_value = [{u'id': bug1.bugzilla_id,
                                          u'summary': bug1.summary},
                                         {u'id': bug2.bugzilla_id,
                                          u'summary': bug2.summary}]
            bugs = TaskImportBatchForm._get_fresh_bugs(batch1.query,
                                                       query_params,
                                                       len(request_bugs()),
                                                       max_batch_size)

            eq_(len(bugs), 0)
コード例 #10
0
    def test_num_fresh_bugs_with_big_fresh_query(self):
        """
        Given a query that returns max_batch_size + n results, where
        n < max_batch_size, the first max_batch_size bugs are accepted.
        """
        max_batch_size = 2
        query_params = fresh_query = 'foo'
        with patch('oneanddone.tasks.forms.BugzillaUtils.request_bugs'
                   ) as request_bugs:
            request_bugs.return_value = [{
                u'id': 50,
                u'summary': u'a'
            }, {
                u'id': 51,
                u'summary': u'b'
            }, {
                u'id': 52,
                u'summary': u'c'
            }, {
                u'id': 53,
                u'summary': u'd'
            }]
            bugs = TaskImportBatchForm._get_fresh_bugs(fresh_query,
                                                       query_params,
                                                       len(request_bugs()),
                                                       max_batch_size)

            eq_(bugs, request_bugs()[:max_batch_size])
コード例 #11
0
    def test_num_fresh_bugs_with_small_stale_query(self):
        """
        Given a query that returns n < max_batch_size results, the
        number of fresh bugs in the form's cleaned data is equal to 0,
        if the query has been submitted before
        """
        max_batch_size = 20
        query_params = 'foo'
        bug1, bug2 = BugzillaBugFactory.create_batch(2)
        batch1 = TaskImportBatchFactory.create()
        TaskFactory.create_batch(1,
                                 batch=batch1,
                                 imported_item=bug1,
                                 is_invalid=False)
        TaskFactory.create_batch(1,
                                 batch=batch1,
                                 imported_item=bug2,
                                 is_invalid=False)
        with patch('oneanddone.tasks.forms.BugzillaUtils.request_bugs'
                   ) as request_bugs:
            # two bugs previously imported in batch1
            request_bugs.return_value = [{
                u'id': bug1.bugzilla_id,
                u'summary': bug1.summary
            }, {
                u'id': bug2.bugzilla_id,
                u'summary': bug2.summary
            }]
            bugs = TaskImportBatchForm._get_fresh_bugs(batch1.query,
                                                       query_params,
                                                       len(request_bugs()),
                                                       max_batch_size)

            eq_(len(bugs), 0)
コード例 #12
0
    def test_validation_query_returns_bugzilla_error(self):
        """ The form is invalid if given a query that returns any errors """
        data = {'query': 'http://www.example.com?x=y', 'description': 'foo'}
        with patch('oneanddone.tasks.forms.BugzillaUtils') as BugzillaUtils:
            request_bugcount = BugzillaUtils().request_bugcount
            message = ('Sorry. we cannot retrieve any data from Bugzilla at '
                       'this time. Please report this to the '
                       'One and Done team.')

            request_bugcount.side_effect = RuntimeError
            form = TaskImportBatchForm(data=data)
            self.assertFalse(form.is_valid())
            eq_(form.non_field_errors(), [message])

            request_bugcount.side_effect = RequestException
            form = TaskImportBatchForm(data=data)
            self.assertFalse(form.is_valid())
            eq_(form.non_field_errors(), [message])
コード例 #13
0
ファイル: test_forms.py プロジェクト: akatsoulas/oneanddone
    def test_num_fresh_bugs_with_big_fresh_query(self):
        """
        Given a query that returns max_batch_size + n results, where
        n < max_batch_size, the first max_batch_size bugs are accepted.
        """
        max_batch_size = 2
        query_params = fresh_query = 'foo'
        with patch('oneanddone.tasks.forms.BugzillaUtils.request_bugs') as request_bugs:
            request_bugs.return_value = [{u'id': 50, u'summary': u'a'},
                                         {u'id': 51, u'summary': u'b'},
                                         {u'id': 52, u'summary': u'c'},
                                         {u'id': 53, u'summary': u'd'}]
            bugs = TaskImportBatchForm._get_fresh_bugs(fresh_query,
                                                       query_params,
                                                       len(request_bugs()),
                                                       max_batch_size)

            eq_(bugs, request_bugs()[:max_batch_size])
コード例 #14
0
ファイル: test_forms.py プロジェクト: akatsoulas/oneanddone
 def test_num_fresh_bugs_with_small_new_query(self):
     """
     Given a query that returns n < max_batch_size results, the
     number of fresh bugs in the form's cleaned data is equal to
     n if this is the first time the query is ever submitted.
     """
     max_batch_size = 20
     query_params = 'foo'
     with patch('oneanddone.tasks.forms.BugzillaUtils.request_bugs') as request_bugs:
         # two fresh bugs
         request_bugs.return_value = [{u'id': 50, u'summary': u'foo'},
                                      {u'id': 51, u'summary': u'bar'}]
         query = 'baz'
         n = len(request_bugs())
         fresh_bugs = TaskImportBatchForm._get_fresh_bugs(query,
                                                          query_params,
                                                          n, max_batch_size)
         eq_(len(fresh_bugs), n)
コード例 #15
0
    def test_num_fresh_bugs_with_big_stale_query(self):
        """
        Given a query that returns max_batch_size + n results, where
        n < max_batch_size, the number of fresh bugs in the form's
        cleaned data is equal to n the second time the query is submitted
        (Next n bugs are accepted.)
        """
        max_batch_size = 3
        n = 2
        query_params = 'foo'
        db_bugs = BugzillaBugFactory.create_batch(max_batch_size)
        batch1 = TaskImportBatchFactory.create()
        for bug in db_bugs:
            TaskFactory.create_batch(1,
                                     batch=batch1,
                                     imported_item=bug,
                                     is_invalid=False)

        with patch('oneanddone.tasks.forms.BugzillaUtils.request_bugs'
                   ) as request_bugs:
            stale_bugs = [{
                u'id': bug.bugzilla_id,
                u'summary': bug.summary
            } for bug in db_bugs]
            new_bugs = [{u'id': 50 + i, u'summary': u'a'} for i in range(n)]
            all_bugs = stale_bugs + new_bugs

            def fake_request(request_params,
                             fields=['id', 'summary'],
                             offset=0,
                             limit=99):
                return all_bugs[offset:offset + limit]

            request_bugs.side_effect = fake_request
            bugs = TaskImportBatchForm._get_fresh_bugs(batch1.query,
                                                       query_params,
                                                       len(all_bugs),
                                                       max_batch_size)
            eq_(bugs, all_bugs[max_batch_size:])
コード例 #16
0
 def test_num_fresh_bugs_with_small_new_query(self):
     """
     Given a query that returns n < max_batch_size results, the
     number of fresh bugs in the form's cleaned data is equal to
     n if this is the first time the query is ever submitted.
     """
     max_batch_size = 20
     query_params = 'foo'
     with patch('oneanddone.tasks.forms.BugzillaUtils.request_bugs'
                ) as request_bugs:
         # two fresh bugs
         request_bugs.return_value = [{
             u'id': 50,
             u'summary': u'foo'
         }, {
             u'id': 51,
             u'summary': u'bar'
         }]
         query = 'baz'
         n = len(request_bugs())
         fresh_bugs = TaskImportBatchForm._get_fresh_bugs(
             query, query_params, n, max_batch_size)
         eq_(len(fresh_bugs), n)
コード例 #17
0
ファイル: test_forms.py プロジェクト: akatsoulas/oneanddone
    def test_validation_query_returns_bugzilla_error(self):
        """ The form is invalid if given a query that returns any errors """
        data = {'query': 'http://www.example.com?x=y',
                'description': 'foo'}
        with patch('oneanddone.tasks.forms.BugzillaUtils') as BugzillaUtils:
            request_bugcount = BugzillaUtils().request_bugcount
            message = ('Sorry. we cannot retrieve any data from Bugzilla at '
                       'this time. Please report this to the '
                       'One and Done team.')

            request_bugcount.side_effect = RuntimeError
            form = TaskImportBatchForm(data=data)
            self.assertFalse(form.is_valid())
            eq_(form.non_field_errors(), [message])

            request_bugcount.side_effect = RequestException
            form = TaskImportBatchForm(data=data)
            self.assertFalse(form.is_valid())
            eq_(form.non_field_errors(), [message])