MultiThreadingTest.cs 1.24 KB
Newer Older
1
2
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Svg.Exceptions;
3
4
5
6
7
8
9
using System;
using System.Diagnostics;
using System.Threading.Tasks;

namespace Svg.UnitTests
{

10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
    [TestClass]
    public class MultiThreadingTest : SvgTestHelper
    {

        protected override string TestFile { get { return @"d:\temp\test.svg"; } }
        protected override int ExpectedSize { get { return 600000; } }

        private void LoadFile()
        {
            LoadSvg(GetXMLDocFromFile());
        }

        
        [TestMethod]
        public void TestSingleThread()
        {
            LoadFile();
        }
28
29


30
31
32
33
34
35
36
37
38
        [TestMethod]
        public void TestMultiThread()
        {
            Parallel.For(0, 10, (x) =>
            {
                LoadFile();
            });
            Trace.WriteLine("Done");
        }
39

40

41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
        [TestMethod]
        [ExpectedException(typeof(SvgMemoryException))]
        public void SVGGivesMemoryExceptionOnTooManyParallelTest()
        {
            try
            {
                Parallel.For(0, 50, (x) =>
                {
                    LoadFile();
                });
            }
            catch (AggregateException ex)
            {
                throw ex.InnerException;
            }
        }
    }
}