summaryrefslogtreecommitdiff
path: root/java/perftests/src/test/java/org/apache/qpid/disttest/client/property/ListPropertyValueTest.java
blob: 3172eb07ed3ba52922a2dde21664a0088e6b9586 (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
/*
 * 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.qpid.disttest.client.property;

import java.util.ArrayList;
import java.util.List;

import org.apache.qpid.test.utils.QpidTestCase;

public class ListPropertyValueTest extends QpidTestCase
{
    private ListPropertyValue _generator;
    private List<PropertyValue> _items;

    @Override
    public void setUp() throws Exception
    {
        super.setUp();
        _generator = new ListPropertyValue();
        _items = new ArrayList<PropertyValue>();
        _items.add(new SimplePropertyValue(new Integer(1)));
        _items.add(new SimplePropertyValue(new Double(2.1)));
        _items.add(new SimplePropertyValue(new Boolean(true)));
        ListPropertyValue innerList = new ListPropertyValue();
        List<PropertyValue> innerListItems = new ArrayList<PropertyValue>();
        innerListItems.add(new SimplePropertyValue("test"));
        innerListItems.add(new SimplePropertyValue(new Integer(2)));
        innerList.setItems(innerListItems);
        _items.add(innerList);
        _generator.setItems(_items);
    }

    public void testGetItems()
    {
        List<? extends Object> items = _generator.getItems();
        assertEquals("Unexpected list items", _items, items);
    }

    public void testGetValue()
    {
        for (int i = 0; i < 2; i++)
        {
            assertEquals("Unexpected first item", new Integer(1), _generator.getValue());
            assertEquals("Unexpected second item", new Double(2.1), _generator.getValue());
            assertEquals("Unexpected third item", new Boolean(true), _generator.getValue());
            if (i == 0)
            {
                assertEquals("Unexpected forth item", "test", _generator.getValue());
            }
            else
            {
                assertEquals("Unexpected forth item", new Integer(2), _generator.getValue());
            }
        }
    }

    public void testNonCyclicGetValue()
    {
        _generator.setCyclic(false);
        assertFalse("Generator should not be cyclic", _generator.isCyclic());
        assertEquals("Unexpected first item", new Integer(1), _generator.getValue());
        assertEquals("Unexpected second item", new Double(2.1), _generator.getValue());
        assertEquals("Unexpected third item", new Boolean(true), _generator.getValue());
        assertEquals("Unexpected forth item", "test", _generator.getValue());
        assertEquals("Unexpected fifth item", new Integer(2), _generator.getValue());
        assertEquals("Unexpected sixs item", "test", _generator.getValue());
        assertEquals("Unexpected sevens item", new Integer(2), _generator.getValue());
    }
}