summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/tags/2.0.1-RC1/modules/implementation-java-runtime/src/test/java/org/apache/tuscany/sca/implementation/java/injection/JavaPropertyValueObjectFactoryTestCase.java.fixme
blob: 366f21d9f01bbec218105e28c823175d1c238dd4 (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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.    
 */
package org.apache.tuscany.sca.implementation.java.injection;

import java.util.Arrays;
import java.util.Collection;
import java.util.Iterator;

import javax.xml.namespace.QName;

import org.apache.tuscany.sca.assembly.AssemblyFactory;
import org.apache.tuscany.sca.assembly.DefaultAssemblyFactory;
import org.apache.tuscany.sca.assembly.Property;
import org.apache.tuscany.sca.core.factory.ObjectCreationException;
import org.apache.tuscany.sca.core.factory.ObjectFactory;
import org.apache.tuscany.sca.databinding.DataBindingExtensionPoint;
import org.apache.tuscany.sca.databinding.DefaultDataBindingExtensionPoint;
import org.apache.tuscany.sca.databinding.Mediator;
import org.apache.tuscany.sca.databinding.impl.SimpleTypeMapperImpl;
import org.apache.tuscany.sca.implementation.java.JavaElementImpl;
import org.easymock.EasyMock;
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;

/**
 * This test case will test the JavaPropertyValueObjectFactory.
 *
 * @version $Rev$ $Date$
 */
public class JavaPropertyValueObjectFactoryTestCase {

    /**
     * The factory we should use for testing.
     */
    private static JavaPropertyValueObjectFactory factory;

    /**
     * The assembly factory used to create Properties.
     */
    private static AssemblyFactory assemblyFactory;

    /**
     * Test Setup.
     */
    @BeforeClass
    public static void setup() {
        // Create the factory
        Mediator mediator = EasyMock.createNiceMock(Mediator.class);
        DataBindingExtensionPoint dpep = new DefaultDataBindingExtensionPoint();
        EasyMock.expect(mediator.getDataBindings()).andReturn(dpep).anyTimes();
        EasyMock.replay(mediator);
        factory = new JavaPropertyValueObjectFactory(mediator);
        
        // Create the AssemblyFactory we should use
        assemblyFactory = new DefaultAssemblyFactory();
    }

    /**
     * A test that will attempt to inject positive, negative and zero into an
     * int property.
     */
    @Test
    public void testIntegerInjectionValid() {
        InjectionTestParams params = new InjectionTestParams();
        params.propertyName = "intField";
        params.xsdType = SimpleTypeMapperImpl.XSD_INT;
        params.expectedType = Integer.TYPE;

        for (int i = -5; i <= 5; i++) {
            params.propertyValue = Integer.toString(i);
            params.expectedValueFromFactory = i;
            doInjection(params);
        }
    }

    /**
     * A test that will attempt to inject positive, negative and zero into an
     * int property using a JavaElement.
     */
    @Test
    public void testIntegerInjectionValidWithJavaElement() {
        InjectionTestParams params = new InjectionTestParams();
        params.propertyName = "intField";
        params.xsdType = SimpleTypeMapperImpl.XSD_INT;
        params.expectedJavaElement = new JavaElementImpl(int.class);

        for (int i = -5; i <= 5; i++) {
            params.propertyValue = Integer.toString(i);
            params.expectedValueFromFactory = i;
            doInjection(params);
        }
    }

    /**
     * A test that will attempt to inject multiple int values into an
     * int property.
     */
    @Test
    public void testIntegerArrayInjectionValid() {
        InjectionTestParams params = new InjectionTestParams();
        params.propertyName = "intField";
        params.xsdType = SimpleTypeMapperImpl.XSD_INT;
        params.isMany = true;
        params.expectedType = int.class;
        params.propertyValue = "1 2 3 4 5";
        params.expectedValueFromFactory = Arrays.asList(1, 2, 3, 4, 5);
        doInjection(params);
    }

    /**
     * A test that will attempt to inject multiple int values into an
     * int property using a JavaElement.
     */
    @Test
    public void testIntegerArrayInjectionValidWithJavaElement() {
        InjectionTestParams params = new InjectionTestParams();
        params.propertyName = "intField";
        params.xsdType = SimpleTypeMapperImpl.XSD_INT;
        params.isMany = true;
        params.expectedJavaElement = new JavaElementImpl(int[].class);
        params.propertyValue = "1 2 3 4 5";
        int[] expected = { 1, 2, 3, 4, 5 };
        params.expectedValueFromFactory = expected; 
        doInjection(params);
    }

    /**
     * A test that will attempt to inject a non-number into an
     * int property.
     */
    @Test
    public void testIntegerInjectionBadNumberInvalid() {
        InjectionTestParams params = new InjectionTestParams();
        params.propertyName = "intField";
        params.xsdType = SimpleTypeMapperImpl.XSD_INT;
        params.expectedType = Integer.TYPE;
        params.propertyValue = "a";
        params.exceptionExpected = true;
        doInjection(params);
    }

    /**
     * A test that will attempt to inject a non-number into an
     * int property using a JavaElement.
     */
    @Test
    public void testIntegerInjectionBadNumberInvalidWithJavaElement() {
        InjectionTestParams params = new InjectionTestParams();
        params.propertyName = "intField";
        params.xsdType = SimpleTypeMapperImpl.XSD_INT;
        params.expectedJavaElement = new JavaElementImpl(Integer.TYPE);
        params.propertyValue = "a";
        params.exceptionExpected = true;
        doInjection(params);
    }

    /**
     * A test that will attempt to inject multiple int values into an
     * int property where one of the property values is not a number.
     * The injection should throw ObjectCreationException
     */
    @Test
    public void testIntegerArrayInjectionBadNumberInvalid() {
        InjectionTestParams params = new InjectionTestParams();
        params.propertyName = "intField";
        params.xsdType = SimpleTypeMapperImpl.XSD_INT;
        params.isMany = true;
        params.expectedType = int.class;
        params.propertyValue = "1 2 aa 4 5";
        params.exceptionExpected = true;
        doInjection(params);
    }

    /**
     * A test that will attempt to inject multiple int values into an
     * int property using a JavaElement where one of the property
     * values is not a number.
     * The injection should throw ObjectCreationException
     */
    @Test
    public void testIntegerArrayInjectionBadNumberInvalidWithJavaElement() {
        InjectionTestParams params = new InjectionTestParams();
        params.propertyName = "intField";
        params.xsdType = SimpleTypeMapperImpl.XSD_INT;
        params.isMany = true;
        params.expectedJavaElement = new JavaElementImpl(int[].class);
        params.propertyValue = "1 2 aa 4 5";
        params.exceptionExpected = true;
        doInjection(params);
    }

    /**
     * A test that will attempt to inject an empty string into an int property.
     * The injection should throw ObjectCreationException
     */
    @Test
    public void testIntegerInjectionEmptyStringInvalid() {
        InjectionTestParams params = new InjectionTestParams();
        params.propertyName = "intField";
        params.xsdType = SimpleTypeMapperImpl.XSD_INT;
        params.expectedType = Integer.TYPE;
        params.propertyValue = "";
        params.exceptionExpected = true;
        doInjection(params);
    }

    /**
     * A test that will attempt to inject an empty string into an int property
     * using a JavaElement.
     * The injection should throw ObjectCreationException
     */
    @Test
    public void testIntegerInjectionEmptyStringInvalidWithJavaElement() {
        InjectionTestParams params = new InjectionTestParams();
        params.propertyName = "intField";
        params.xsdType = SimpleTypeMapperImpl.XSD_INT;
        params.expectedJavaElement = new JavaElementImpl(Integer.TYPE);
        params.propertyValue = "";
        params.exceptionExpected = true;
        doInjection(params);
    }

    /**
     * A test that will attempt to inject a String into a String 
     * property.
     */
    @Test
    public void testStringInjectionValid() {
        InjectionTestParams params = new InjectionTestParams();
        params.propertyName = "StringField";
        params.xsdType = SimpleTypeMapperImpl.XSD_STRING;
        params.expectedType = String.class;

        params.propertyValue = "Some Test String";
        params.expectedValueFromFactory = "Some Test String";
        doInjection(params);
    }

    /**
     * A test that will attempt to inject a String into a String 
     * property using a JavaElement.
     */
    @Test
    public void testStringInjectionValidWithJavaElement() {
        InjectionTestParams params = new InjectionTestParams();
        params.propertyName = "StringField";
        params.xsdType = SimpleTypeMapperImpl.XSD_STRING;
        params.expectedJavaElement = new JavaElementImpl(String.class);

        params.propertyValue = "Some Test String";
        params.expectedValueFromFactory = "Some Test String";
        doInjection(params);
    }

    /**
     * This class defines all the parameters for the Property Injection test.
     */
    private class InjectionTestParams {
        // Input parameters for the test
        public boolean isMany = false;
        public String propertyName;
        public String propertyValue;
        public QName xsdType;
        
        // Expected result for test
        public Object expectedValueFromFactory;
        public Class<?> expectedType;
        public JavaElementImpl expectedJavaElement;
        public boolean exceptionExpected = false;
    }

    /**
     * A test that will attempt to inject multiple String values into an
     * String property.
     */
    @Test
    public void testStringArrayInjectionValid() {
        InjectionTestParams params = new InjectionTestParams();
        params.propertyName = "StringField";
        params.xsdType = SimpleTypeMapperImpl.XSD_STRING;
        params.isMany = true;
        params.expectedType = String.class;
        params.propertyValue = "\"String1\" \"String2\" \"String3\" \"String4\" \"String5\"";
        params.expectedValueFromFactory = Arrays.asList(
                "String1", "String2", "String3", "String4", "String5");
        doInjection(params);
    }

    /**
     * A test that will attempt to inject multiple String values into an
     * String property using a JavaElement.
     */
    @Test
    public void testStringArrayInjectionValidWithJavaElement() {
        InjectionTestParams params = new InjectionTestParams();
        params.propertyName = "StringField";
        params.xsdType = SimpleTypeMapperImpl.XSD_STRING;
        params.isMany = true;
        params.expectedJavaElement = new JavaElementImpl(String.class);
        params.propertyValue = "\"String1\" \"String2\" \"String3\" \"String4\" \"String5\"";
        params.expectedValueFromFactory = Arrays.asList(
                "String1", "String2", "String3", "String4", "String5");
        doInjection(params);
    }

    /**
     * Utility method for testing creating properties  with the 
     * JavaPropertyValueObjectFactory.
     * 
     * @param testParams The parameters for the test
     */
    private void doInjection(final InjectionTestParams testParams) {
        // Create the property
        Property prop = assemblyFactory.createProperty();
        prop.setMany(testParams.isMany);
        prop.setName(testParams.propertyName);
        prop.setXSDType(testParams.xsdType);

        // Mock up the XML that will contain the Property details
        Document doc = EasyMock.createNiceMock(Document.class);
        Element rootElement = EasyMock.createMock(Element.class);
        EasyMock.expect(doc.getDocumentElement()).andReturn(rootElement);
        NodeList nodeList = EasyMock.createMock(NodeList.class);
        EasyMock.expect(rootElement.getChildNodes()).andReturn(nodeList).anyTimes();
        EasyMock.expect(nodeList.getLength()).andReturn(1);
        Node node = EasyMock.createMock(Node.class);
        EasyMock.expect(nodeList.item(0)).andReturn(node);
        EasyMock.expect(node.getTextContent()).andReturn(testParams.propertyValue);
        EasyMock.replay(doc, rootElement, nodeList, node);

        // Create a factory either using the Class or JavaElementImpl constructor
        ObjectFactory<?> objectFactory;
        if (testParams.expectedJavaElement != null) {
            objectFactory = factory.createValueFactory(prop, doc, testParams.expectedJavaElement);
        } else {
            objectFactory = factory.createValueFactory(prop, doc, testParams.expectedType);
        }
        Assert.assertNotNull(objectFactory);

        // Lets test the factory
        try {
            // Create a new instance with the factory
            Object value = objectFactory.getInstance();

            // Did we expect an exception to be thrown?
            if (testParams.exceptionExpected) {
                Assert.fail("Test should have thrown ObjectCreationException");
            }

            // Make sure the result is of the correct type
            if (testParams.expectedValueFromFactory instanceof Collection<?>) {
                // Make sure the Collections contain the same type
                Assert.assertTrue(value instanceof Collection<?>);
                Iterator<?> iter1 = ((Collection<?>) testParams.expectedValueFromFactory).iterator();
                Iterator<?> iter2 = ((Collection<?>) value).iterator();
                Assert.assertEquals(iter1.next().getClass(), iter2.next().getClass());
            } else {
                Assert.assertEquals(testParams.expectedValueFromFactory.getClass(), value.getClass());
            }

            // Validate the result
            Assert.assertNotNull(value);
            if (testParams.expectedValueFromFactory.getClass().isArray()) {
                Assert.assertTrue(compareArrays(testParams.expectedValueFromFactory, value));
            } else {
                Assert.assertEquals(testParams.expectedValueFromFactory, value);
            }
        } catch (ObjectCreationException ex) {
            // Is this an expected exception?
            if (testParams.exceptionExpected) {
                // Make sure the exception error message contains the property name
                Assert.assertTrue(ex.toString().indexOf(testParams.propertyName) != -1);

                // Make sure the exception error message contains the property value
                if (testParams.propertyValue != null) {
                    if (testParams.isMany) {
                        // FIXME: No simple way to do this for multi-value properties
                    } else {
                        Assert.assertTrue(ex.toString().indexOf(testParams.propertyValue) != -1);
                    }
                }
            } else {
                // Test failure. We were not expecting an exception
                ex.printStackTrace();
                Assert.fail("Unexpected exception " + ex);
            }
        }
    }

    /**
     * Compares two Objects that are actually arrays to make sure that they are
     * equal.
     * 
     * @param array1 The first array
     * @param array2 The second array
     * @return True if they are equal. False if they are not
     */
    private boolean compareArrays(final Object array1, final Object array2) {
        // Check for primitive array types
        if (array1 instanceof boolean[]) {
            return Arrays.equals((boolean[]) array1, (boolean[]) array2);
        }
        if (array1 instanceof byte[]) {
            return Arrays.equals((byte[]) array1, (byte[]) array2);
        }
        if (array1 instanceof char[]) {
            return Arrays.equals((char[]) array1, (char[]) array2);
        }
        if (array1 instanceof double[]) {
            return Arrays.equals((double[]) array1, (double[]) array2);
        }
        if (array1 instanceof float[]) {
            return Arrays.equals((float[]) array1, (float[]) array2);
        }
        if (array1 instanceof int[]) {
            return Arrays.equals((int[]) array1, (int[]) array2);
        }
        if (array1 instanceof long[]) {
            return Arrays.equals((long[]) array1, (long[]) array2);
        }
        if (array1 instanceof short[]) {
            return Arrays.equals((short[]) array1, (short[]) array2);
        }
        
        // Not a primitive so must be an Object[]
        return Arrays.equals((Object[]) array1, (Object[]) array2);
    }
}