Welcome to mirror list, hosted at ThFree Co, Russian Federation.

GenerationServicesTests.cs « Composition « ComponentModel « System « ComponentModelUnitTest « Tests « System.ComponentModel.Composition « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b1bfe9251e3da8e4ba171d6cd4b3ec0ef39a9851 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
// -----------------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
// -----------------------------------------------------------------------
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection.Emit;
using System.Reflection;
using System.ComponentModel.Composition;
using System.UnitTesting;
using Microsoft.Internal;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System.ComponentModel.Composition.UnitTesting;

namespace Microsoft.Internal
{
    [TestClass]
    public class GenerationServicesTests
    {
        // Has to be public, otherwise the dynamic method doesn't see it
        public enum TestEnum
        {
            First = 1,
            Second = 2
        }

        public static class DelegateTestClass
        {
            public static int Method(int i)
            {
                return i;
            }
        }

        private Func<T> CreateValueGenerator<T>(T value)
        {
            DynamicMethod methodBuilder = new DynamicMethod(TestServices.GenerateRandomString(), typeof(T), Type.EmptyTypes);
            // Generate the method body that simply returns the dictionary
            ILGenerator ilGenerator = methodBuilder.GetILGenerator();
            GenerationServices.LoadValue(ilGenerator, value);
            ilGenerator.Emit(OpCodes.Ret);
            return (Func<T>)methodBuilder.CreateDelegate(typeof(Func<T>));
        }

        private void TestSuccessfulValueGeneration<T>(T value)
        {
            Func<T> result = this.CreateValueGenerator<T>(value);
            T generatedValue = result.Invoke();
            Assert.AreEqual(value, generatedValue);
        }

        private void TestSuccessfulDictionaryGeneration(IDictionary<string, object> dictionary)
        {
            Func<IDictionary<string, object>> result = this.CreateValueGenerator<IDictionary<string, object>>(dictionary);
            IDictionary<string, object> generatedDictionary = result.Invoke();
            EnumerableAssert.AreEqual(dictionary, generatedDictionary);
        }

        private void TestSuccessfulEnumerableGeneration<T>(IEnumerable enumerable)
        {
            Func<IEnumerable> result = this.CreateValueGenerator<IEnumerable>(enumerable);
            IEnumerable generatedEnumerable = result.Invoke();
            Assert.IsTrue(generatedEnumerable.Cast<T>().SequenceEqual(enumerable.Cast<T>()));
        }

        [TestMethod]
        public void PrimitiveTypes()
        {
            this.TestSuccessfulValueGeneration(Char.MinValue);
            this.TestSuccessfulValueGeneration(Char.MaxValue);
            this.TestSuccessfulValueGeneration((Char)42);

            this.TestSuccessfulValueGeneration(true);
            this.TestSuccessfulValueGeneration(false);

            this.TestSuccessfulValueGeneration(Byte.MinValue);
            this.TestSuccessfulValueGeneration(Byte.MaxValue);
            this.TestSuccessfulValueGeneration((Byte)42);

            this.TestSuccessfulValueGeneration(SByte.MinValue);
            this.TestSuccessfulValueGeneration(SByte.MaxValue);
            this.TestSuccessfulValueGeneration((SByte)42);

            this.TestSuccessfulValueGeneration(Int16.MinValue);
            this.TestSuccessfulValueGeneration(Int16.MaxValue);
            this.TestSuccessfulValueGeneration((Int16)42);

            this.TestSuccessfulValueGeneration(UInt16.MinValue);
            this.TestSuccessfulValueGeneration(UInt16.MaxValue);
            this.TestSuccessfulValueGeneration((UInt16)42);

            this.TestSuccessfulValueGeneration(Int32.MinValue);
            this.TestSuccessfulValueGeneration(Int32.MaxValue);
            this.TestSuccessfulValueGeneration((Int32)42);

            this.TestSuccessfulValueGeneration(UInt32.MinValue);
            this.TestSuccessfulValueGeneration(UInt32.MaxValue);
            this.TestSuccessfulValueGeneration((UInt32)42);

            this.TestSuccessfulValueGeneration(Int64.MinValue);
            this.TestSuccessfulValueGeneration(Int64.MaxValue);
            this.TestSuccessfulValueGeneration((Int64)42);

            this.TestSuccessfulValueGeneration(UInt64.MinValue);
            this.TestSuccessfulValueGeneration(UInt64.MaxValue);
            this.TestSuccessfulValueGeneration((UInt64)42);

            this.TestSuccessfulValueGeneration(Single.MinValue);
            this.TestSuccessfulValueGeneration(Single.MaxValue);
            this.TestSuccessfulValueGeneration((Single)42.42);

            this.TestSuccessfulValueGeneration(Double.MinValue);
            this.TestSuccessfulValueGeneration(Double.MaxValue);
            this.TestSuccessfulValueGeneration((Double)42.42);
        }

        [TestMethod]
        public void StringType()
        {
            this.TestSuccessfulValueGeneration("42");
        }

        [TestMethod]
        public void EnumType()
        {
            this.TestSuccessfulValueGeneration(TestEnum.Second);
        }


        [TestMethod]
        public void TypeType()
        {
            this.TestSuccessfulValueGeneration(typeof(TestEnum));
        }

        [TestMethod]
        public void PrimitiveTypeEnumerable()
        {
            int[] enumerable = new int[] { 1, 2, 3, 4, 5 };
            this.TestSuccessfulEnumerableGeneration<int>(enumerable);
        }

        [TestMethod]
        public void StringTypeEnumerable()
        {
            string[] enumerable = new string[] { "1", "2", "3", "4", "5" };
            this.TestSuccessfulEnumerableGeneration<string>(enumerable);
        }

        [TestMethod]
        [Ignore]
        [WorkItem(507696)]
        public void EnumTypeEnumerable()
        {
            TestEnum[] enumerable = new TestEnum[] { TestEnum.First, TestEnum.Second };
            this.TestSuccessfulEnumerableGeneration<string>(enumerable);
        }


        [TestMethod]
        public void MixedEnumerable()
        {
            List<object> list = new List<object>();
            list.Add(42);
            list.Add("42");
            list.Add(typeof(TestEnum));
            list.Add(TestEnum.Second);
            list.Add(null);

            this.TestSuccessfulEnumerableGeneration<object>(list);
        }
    }
}