PageRenderTime 43ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/mcs/class/corlib/Test/System.Threading/SemaphoreSlimTests.cs

https://bitbucket.org/steenlund/mono-2.6.7-for-amiga
C# | 84 lines | 52 code | 9 blank | 23 comment | 1 complexity | c9f1403243bafd87b27948c817233e0c MD5 | raw file
Possible License(s): LGPL-2.0, MPL-2.0-no-copyleft-exception, CC-BY-SA-3.0, GPL-2.0, LGPL-2.1
  1. #if NET_4_0
  2. // SemaphoreSlimTests.cs
  3. //
  4. // Copyright (c) 2008 Jérémie "Garuma" Laval
  5. //
  6. // Permission is hereby granted, free of charge, to any person obtaining a copy
  7. // of this software and associated documentation files (the "Software"), to deal
  8. // in the Software without restriction, including without limitation the rights
  9. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. // copies of the Software, and to permit persons to whom the Software is
  11. // furnished to do so, subject to the following conditions:
  12. //
  13. // The above copyright notice and this permission notice shall be included in
  14. // all copies or substantial portions of the Software.
  15. //
  16. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. // THE SOFTWARE.
  23. //
  24. //
  25. using System;
  26. using System.Linq;
  27. using System.Threading;
  28. using NUnit.Framework;
  29. namespace ParallelFxTests
  30. {
  31. [TestFixture]
  32. public class SemaphoreSlimTests
  33. {
  34. SemaphoreSlim sem;
  35. SemaphoreSlim semMax;
  36. [SetUp]
  37. public void Setup()
  38. {
  39. sem = new SemaphoreSlim(5);
  40. semMax = new SemaphoreSlim(5, 5);
  41. }
  42. [Test]
  43. public void CurrentCountMaxTestCase()
  44. {
  45. semMax.Wait();
  46. semMax.Release(3);
  47. Assert.AreEqual(5, semMax.CurrentCount);
  48. }
  49. [Test]
  50. public void CurrentCountTestCase()
  51. {
  52. sem.Wait();
  53. sem.Wait();
  54. sem.Release();
  55. Assert.AreEqual(4, sem.CurrentCount);
  56. }
  57. [Test]
  58. public void WaitStressTest()
  59. {
  60. int count = -1;
  61. bool[] array = new bool[7];
  62. ParallelTestHelper.ParallelStressTest(sem, delegate (SemaphoreSlim s) {
  63. int index = Interlocked.Increment(ref count);
  64. s.Wait();
  65. Thread.Sleep(40);
  66. s.Release();
  67. array[index] = true;
  68. }, 7);
  69. bool result = array.Aggregate((acc, e) => acc && e);
  70. Assert.IsTrue(result, "#1");
  71. Assert.AreEqual(5, sem.CurrentCount, "#2");
  72. }
  73. }
  74. }
  75. #endif