Exemplo n.º 1
0
        public void ProcessingQueueEnqueuesOperationIfProcessQueueIsFullAndCurrentlyRunningTaskFails()
        {
            bool operation1Processed = false;
            bool operation2Processed = false;

            var queue = new ThrottledProcessingQueue(1);
            ManualResetEventSlim pause = new ManualResetEventSlim(false);

            Task operation1 = new Task(() =>
            {
                //simulate a long running operation
                Thread.Sleep(TimeSpan.FromMilliseconds(100));
                operation1Processed = true;
                // throw exception to simulate failed operation
                throw new InvalidOperationException();
            });
            Task operation2 = new Task(() =>
            {
                operation2Processed = true;
                pause.Set();
            });

            queue.RegisterOperation(operation1);
            queue.RegisterOperation(operation2);
            operation1.ContinueWith(t => queue.UpdateProcessingQueue());

            pause.Wait(TimeSpan.FromSeconds(10));

            Assert.IsTrue(operation1Processed);
            Assert.IsTrue(operation2Processed);
        }
Exemplo n.º 2
0
        public void ProcessingQueueOperationsInProcessDoesNotExceedMaxOperationsMultiThreaded()
        {
            const int expected = 20;

            bool maxOperationsExceeded = false;
            int  operationsProcessed   = 0;

            ManualResetEventSlim pause = new ManualResetEventSlim(false);

            var    queue  = new ThrottledProcessingQueue(10);
            Random random = new Random();

            Parallel.For(0, 20, i => queue.RegisterOperation(new Task(() =>
            {
                if (queue.MaxOperations == 20)
                {
                    maxOperationsExceeded = true;
                }

                //simulate operation running
                Thread.Sleep(TimeSpan.FromMilliseconds(random.Next(0, 200)));

                Interlocked.Increment(ref operationsProcessed);
                if (operationsProcessed == 20)
                {
                    pause.Set();
                }
                queue.UpdateProcessingQueue();
            })));

            pause.Wait(TimeSpan.FromSeconds(10));

            Assert.IsFalse(maxOperationsExceeded);
            Assert.AreEqual(expected, operationsProcessed);
        }
Exemplo n.º 3
0
        public void ProcessingQueueEnqueuesOperationsIfProcessQueueIsFullMultiThreadedAndCurrentlyRunningTaskFails()
        {
            bool operation1Processed = false;
            bool operation2Processed = false;

            var queue = new ThrottledProcessingQueue(10);
            ManualResetEventSlim pause = new ManualResetEventSlim(false);

            Parallel.For(0, 10, i => queue.RegisterOperation(new Task(() =>
            {
                //simulate long running operation
                Thread.Sleep(TimeSpan.FromMilliseconds(100));
                operation1Processed = true;

                queue.UpdateProcessingQueue();

                // throw exception to simulate failed operation
                throw new InvalidOperationException();
            })));
            queue.RegisterOperation(new Task(() =>
            {
                operation2Processed = true;
                pause.Set();
            }));

            pause.Wait(TimeSpan.FromSeconds(10));

            Assert.IsTrue(operation1Processed);
            Assert.IsTrue(operation2Processed);
        }
Exemplo n.º 4
0
        public void ProcessingQueueEnqueueOperationThrowsIfTaskSchedulerIsNull()
        {
            var queue = new ThrottledProcessingQueue();

            Task t = new Task(() => { });

            Assert.Throws <ArgumentNullException>(() => queue.RegisterOperation(t, null as TaskScheduler));
        }
Exemplo n.º 5
0
        public void ProcessingQueueEnqueueOperationThrowsIfTaskIsAlreadyStarted()
        {
            var queue = new ThrottledProcessingQueue();

            Task t = Task.Factory.StartNew(() => { });

            Assert.Throws <ArgumentException>(() => queue.RegisterOperation(t));
        }
Exemplo n.º 6
0
        public void ProcessingQueueEnqueueOperationThrowsIfTaskCollectionContainsNull()
        {
            var queue = new ThrottledProcessingQueue();

            Task[] tasks = new[] { new Task(() => { }), null, new Task(() => { }) };

            Assert.Throws <ArgumentException>(() => queue.RegisterOperations(tasks));
        }
        /// <summary>
        /// Registers a collection of operations for processing against a specified <see cref="TaskScheduler"/>.
        /// </summary>
        /// <param name="queue">The queue to register the operations against.</param>
        /// <param name="operations">A collection of tasks representing the operations.</param>
        /// <param name="scheduler">A scheduler.</param>
        /// <exception cref="ArgumentNullException"><paramref name="operations"/> was null or contained a null entry.</exception>
        /// <exception cref="ArgumentException"><paramref name="operations"/> contained a task that has already been started or completed.</exception>
        public static void RegisterOperations(this ThrottledProcessingQueue queue, IEnumerable <Task> operations, TaskScheduler scheduler)
        {
            queue.ThrowIfNull(nameof(queue), $"{nameof(queue)} parameter cannot be null");
            operations.ThrowIfNullOrContainsNull(nameof(operations), $"{nameof(operations)} parameter cannot be null");

            foreach (var operation in operations)
            {
                queue.RegisterOperation(operation, scheduler);
            }
        }
Exemplo n.º 8
0
        public void ProcessingQueueStartsOperationIfProcessQueueIsNotFull()
        {
            bool operationProcessed = false;

            var queue = new ThrottledProcessingQueue();

            Task operation = new Task(() =>
            {
                operationProcessed = true;
            });

            queue.RegisterOperations(new[] { operation });

            operation.Wait();

            Assert.IsTrue(operationProcessed);
        }
 /// <summary>
 /// Registers a collection of operations for processing against the current <see cref="TaskScheduler"/>.
 /// </summary>
 /// <param name="queue">The queue to register the operations against.</param>
 /// <param name="operations">A collection of tasks representing the operations.</param>
 /// <exception cref="ArgumentNullException"><paramref name="operations"/> was null or contained a null entry.</exception>
 /// <exception cref="ArgumentException"><paramref name="operations"/> contained a task that has already been started or completed.</exception>
 public static void RegisterOperations(this ThrottledProcessingQueue queue, IEnumerable <Task> operations)
 {
     RegisterOperations(queue, operations, TaskScheduler.Current);
 }
Exemplo n.º 10
0
        public void ProcessingQueueEnqueueOperationThrowsIfTasksCollectionIsNull()
        {
            var queue = new ThrottledProcessingQueue();

            Assert.Throws <ArgumentNullException>(() => queue.RegisterOperations(null as Task[]));
        }
Exemplo n.º 11
0
        public void ProcessingQueueInitialisesWithSpecifiedMaxOperations()
        {
            var queue = new ThrottledProcessingQueue(100);

            Assert.IsNotNull(queue);
        }
Exemplo n.º 12
0
        public void ProcessingQueueInitialises()
        {
            var queue = new ThrottledProcessingQueue();

            Assert.IsNotNull(queue);
        }