123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- // Licensed to the .NET Foundation under one or more agreements.
- // The .NET Foundation licenses this file to you under the MIT License.
- // See the LICENSE file in the project root for more information.
- using System;
- using System.Reactive.Concurrency;
- using Microsoft.VisualStudio.TestTools.UnitTesting;
- using Assert = Xunit.Assert;
- namespace ReactiveTests.Tests
- {
- [TestClass]
- public class AsyncLockTest
- {
- [TestMethod]
- public void Wait_ArgumentChecking()
- {
- var asyncLock = new AsyncLock();
- Assert.Throws<ArgumentNullException>(() => asyncLock.Wait(null));
- }
- [TestMethod]
- public void Wait_Graceful()
- {
- var ok = false;
- new AsyncLock().Wait(() => { ok = true; });
- Assert.True(ok);
- }
- [TestMethod]
- public void Wait_Fail()
- {
- var l = new AsyncLock();
- var ex = new Exception();
- try
- {
- l.Wait(() => { throw ex; });
- Assert.True(false);
- }
- catch (Exception e)
- {
- Assert.Same(ex, e);
- }
- // has faulted; should not run
- l.Wait(() => { Assert.True(false); });
- }
- [TestMethod]
- public void Wait_QueuesWork()
- {
- var l = new AsyncLock();
- var l1 = false;
- var l2 = false;
- l.Wait(() => { l.Wait(() => { Assert.True(l1); l2 = true; }); l1 = true; });
- Assert.True(l2);
- }
- [TestMethod]
- public void Dispose()
- {
- var l = new AsyncLock();
- var l1 = false;
- var l2 = false;
- var l3 = false;
- var l4 = false;
- l.Wait(() =>
- {
- l.Wait(() =>
- {
- l.Wait(() =>
- {
- l3 = true;
- });
- l2 = true;
- l.Dispose();
- l.Wait(() =>
- {
- l4 = true;
- });
- });
- l1 = true;
- });
- Assert.True(l1);
- Assert.True(l2);
- Assert.False(l3);
- Assert.False(l4);
- }
- }
- }
|