Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6ac6a16d07d6830196226d2b6cd09bd3da9a333e (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2009 Oracle. All rights reserved.
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0, which accompanies this distribution
 * and is available at http://www.eclipse.org/legal/epl-v10.html.
 * 
 * Contributors:
 *     Oracle - initial API and implementation
 ******************************************************************************/
package org.eclipse.jpt.common.utility.tests.internal.iterables;

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

import junit.framework.TestCase;

import org.eclipse.jpt.common.utility.internal.Transformer;
import org.eclipse.jpt.common.utility.internal.iterables.TransformationListIterable;

@SuppressWarnings("nls")
public class TransformationListIterableTests extends TestCase {

	public TransformationListIterableTests(String name) {
		super(name);
	}

	public void testTransform1() {
		int i = 1;
		for (Integer integer : this.buildIterable1()) {
			assertEquals(i++, integer.intValue());
		}
	}

	private Iterable<Integer> buildIterable1() {
		return this.buildTransformationListIterable1(this.buildNestedList());
	}

	private Iterable<Integer> buildTransformationListIterable1(List<String> nestedList) {
		// transform each string into an integer with a value of the string's length
		return new TransformationListIterable<String, Integer>(nestedList) {
			@Override
			protected Integer transform(String next) {
				return new Integer(next.length());
			}
		};
	}

	public void testTransform2() {
		int i = 1;
		for (Integer integer : this.buildIterable2()) {
			assertEquals(i++, integer.intValue());
		}
	}

	private Iterable<Integer> buildIterable2() {
		return this.buildTransformationListIterable2(this.buildNestedList());
	}

	private Iterable<Integer> buildTransformationListIterable2(List<String> nestedList) {
		// transform each string into an integer with a value of the string's length
		return new TransformationListIterable<String, Integer>(nestedList, this.buildTransformer());
	}

	private Transformer<String, Integer> buildTransformer() {
		// transform each string into an integer with a value of the string's length
		return new Transformer<String, Integer>() {
			public Integer transform(String next) {
				return new Integer(next.length());
			}
		};
	}

	private List<String> buildNestedList() {
		List<String> c = new ArrayList<String>();
		c.add("1");
		c.add("22");
		c.add("333");
		c.add("4444");
		c.add("55555");
		c.add("666666");
		c.add("7777777");
		c.add("88888888");
		return c;
	}

	public void testToString() {
		assertNotNull(this.buildIterable1().toString());
	}

	public void testMissingTransformer() {
		Iterable<Integer> iterable = new TransformationListIterable<String, Integer>(this.buildNestedList());
		boolean exCaught = false;
		try {
			int i = 1;
			for (Integer integer : iterable) {
				assertEquals(i++, integer.intValue());
			}
		} catch (RuntimeException ex) {
			exCaught = true;
		}
		assertTrue(exCaught);
	}

}

Back to the top