コード例 #1
0
    def test_less_than_100_tasks(self):
        """Ensure that when less than 100 tasks are passed in, only one batch
        is returned with all the tasks in it.
        """
        from furious.context.context import _task_batcher

        tasks = 'a' * 99

        result = list(_task_batcher(tasks))

        self.assertEqual(1, len(result))
        self.assertEqual(len(tasks), len(result[0]))
コード例 #2
0
ファイル: test_context.py プロジェクト: Workiva/furious
    def test_less_than_100_tasks(self):
        """Ensure that when less than 100 tasks are passed in, only one batch
        is returned with all the tasks in it.
        """
        from furious.context.context import _task_batcher

        tasks = 'a' * 99

        result = list(_task_batcher(tasks))

        self.assertEqual(1, len(result))
        self.assertEqual(len(tasks), len(result[0]))
コード例 #3
0
    def test_one_task(self):
        """Ensure that when one task is passed in, only one batch is returned
        with one task in it.
        """
        from furious.context.context import _task_batcher

        tasks = [1]

        result = list(_task_batcher(tasks))

        self.assertEqual(1, len(result))
        self.assertEqual(1, len(result[0]))
コード例 #4
0
ファイル: test_context.py プロジェクト: Workiva/furious
    def test_one_task(self):
        """Ensure that when one task is passed in, only one batch is returned
        with one task in it.
        """
        from furious.context.context import _task_batcher

        tasks = [1]

        result = list(_task_batcher(tasks))

        self.assertEqual(1, len(result))
        self.assertEqual(1, len(result[0]))
コード例 #5
0
ファイル: test_context.py プロジェクト: Workiva/furious
    def test_more_than_100_tasks(self):
        """Ensure that when more than 100 tasks are passed in, that the
        correct number of batches are returned with the tasks in them.
        """
        from furious.context.context import _task_batcher

        tasks = 'a' * 101

        result = list(_task_batcher(tasks))

        self.assertEqual(2, len(result))
        self.assertEqual(100, len(result[0]))
        self.assertEqual(1, len(result[1]))
コード例 #6
0
    def test_more_than_100_tasks(self):
        """Ensure that when more than 100 tasks are passed in, that the
        correct number of batches are returned with the tasks in them.
        """
        from furious.context.context import _task_batcher

        tasks = 'a' * 101

        result = list(_task_batcher(tasks))

        self.assertEqual(2, len(result))
        self.assertEqual(100, len(result[0]))
        self.assertEqual(1, len(result[1]))
コード例 #7
0
ファイル: test_context.py プロジェクト: Workiva/furious
    def test_more_than_100_tasks_with_large_batch_size(self):
        """Ensure that when more than 100 tasks are passed in, and the
        batch_size parameter is larger than 100, that batches with a max size
        of 100 are returned with the tasks in them.
        """
        from furious.context.context import _task_batcher

        tasks = 'a' * 101
        batch_size = 2000

        result = list(_task_batcher(tasks, batch_size=batch_size))

        self.assertEqual(2, len(result))
        self.assertEqual(100, len(result[0]))
        self.assertEqual(1, len(result[1]))
コード例 #8
0
    def test_more_than_100_tasks_with_large_batch_size(self):
        """Ensure that when more than 100 tasks are passed in, and the
        batch_size parameter is larger than 100, that batches with a max size
        of 100 are returned with the tasks in them.
        """
        from furious.context.context import _task_batcher

        tasks = 'a' * 101
        batch_size = 2000

        result = list(_task_batcher(tasks, batch_size=batch_size))

        self.assertEqual(2, len(result))
        self.assertEqual(100, len(result[0]))
        self.assertEqual(1, len(result[1]))
コード例 #9
0
ファイル: test_context.py プロジェクト: Workiva/furious
    def test_tasks_with_small_batch_size(self):
        """Ensure that when a batch_size parameter is smaller than 100,
        that the correct number of batches are created with the tasks in them.
        """
        from furious.context.context import _task_batcher

        tasks = 'a' * 101
        batch_size = 30

        result = list(_task_batcher(tasks, batch_size=batch_size))

        self.assertEqual(4, len(result))
        self.assertEqual(30, len(result[0]))
        self.assertEqual(30, len(result[1]))
        self.assertEqual(30, len(result[2]))
        self.assertEqual(11, len(result[3]))
コード例 #10
0
    def test_tasks_with_small_batch_size(self):
        """Ensure that when a batch_size parameter is smaller than 100,
        that the correct number of batches are created with the tasks in them.
        """
        from furious.context.context import _task_batcher

        tasks = 'a' * 101
        batch_size = 30

        result = list(_task_batcher(tasks, batch_size=batch_size))

        self.assertEqual(4, len(result))
        self.assertEqual(30, len(result[0]))
        self.assertEqual(30, len(result[1]))
        self.assertEqual(30, len(result[2]))
        self.assertEqual(11, len(result[3]))
コード例 #11
0
    def test_no_tasks(self):
        """Ensure that when to tasks are passed in, no tasks are returned."""
        from furious.context.context import _task_batcher

        self.assertEqual([], list(_task_batcher([])))
コード例 #12
0
ファイル: test_context.py プロジェクト: Workiva/furious
    def test_no_tasks(self):
        """Ensure that when to tasks are passed in, no tasks are returned."""
        from furious.context.context import _task_batcher

        self.assertEqual([], list(_task_batcher([])))