Exemplo n.º 1
0
        public void Cancel_JobsCancelledBeforeRunning_JobInCanceledStatus()
        {
            var job = new LambdaJob(() => { });

            job.Cancel();
            job.Start().Wait();

            Assert.AreEqual(JobStatus.Cancelled, job.Status);
        }
Exemplo n.º 2
0
        public void Cancel_JobIgnoresCancellationToken_JobInSuccessStatus()
        {
            var job = new LambdaJob(() => { Thread.Sleep(100); });

            job.StatusChanged += (sender, args) =>
            {
                if (args.Status == JobStatus.InProgress)
                {
                    job.Cancel();
                }
            };

            job.Start().Wait();

            Assert.AreEqual(JobStatus.Success, job.Status);
        }
Exemplo n.º 3
0
        public void Cancel_JobHandlesCancellationToken_JobInCancelledStatus()
        {
            var job = new LambdaJob <int>(token =>
            {
                token.ThrowIfCancellationRequested();

                return(0);
            });

            job.StatusChanged += (sender, args) =>
            {
                if (args.Status == JobStatus.InProgress)
                {
                    job.Cancel();
                }
            };

            job.Start().Wait();

            Assert.AreEqual(JobStatus.Cancelled, job.Status);
        }