-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWrapperTest.java
108 lines (86 loc) · 4.77 KB
/
WrapperTest.java
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
//@formatter:off
/*
* Wrapper Test - demonstrates WRAPPER pattern
* Code-Beispiel zum Buch Patterns Kompakt, Verlag Springer Vieweg
* Copyright 2014 Karl Eilebrecht
*
* Licensed 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.
*/
//@formatter:on
package de.calamanari.pk.wrapper;
import static org.junit.Assert.assertEquals;
import java.util.List;
import org.junit.Before;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import de.calamanari.pk.util.TimeUtils;
/**
* Wrapper Test - demonstrates WRAPPER pattern
*
* @author <a href="mailto:Karl.Eilebrecht(a/t)calamanari.de">Karl Eilebrecht</a>
*/
public class WrapperTest {
private static final Logger LOGGER = LoggerFactory.getLogger(WrapperTest.class);
/**
* Legacy Customer Info Provider for testing the wrapper
*/
private LegacyCustomerInfoProvider legacyCustomerInfoProvider = null;
@Before
public void setUp() {
OldSysCustomerMgrMock testCustomerManager = null;
OldSysHistoryMgrMock testHistoryManager = null;
testCustomerManager = new OldSysCustomerMgrMock();
testHistoryManager = new OldSysHistoryMgrMock();
testCustomerManager.addTestRecord(1,
new String[] { LegacyCustomerInfo.KEY_ID, "1", LegacyCustomerInfo.KEY_NAME, "John Doe", LegacyCustomerInfo.KEY_SEGMENT, "67" });
testCustomerManager.addTestRecord(2,
new String[] { LegacyCustomerInfo.KEY_ID, "2", LegacyCustomerInfo.KEY_NAME, "Lara Crofft", LegacyCustomerInfo.KEY_SEGMENT, "67" });
testCustomerManager.addTestRecord(3,
new String[] { LegacyCustomerInfo.KEY_ID, "3", LegacyCustomerInfo.KEY_NAME, "Sandy Bridge", LegacyCustomerInfo.KEY_SEGMENT, "11" });
testCustomerManager.addTestRecord(4,
new String[] { LegacyCustomerInfo.KEY_ID, "4", LegacyCustomerInfo.KEY_NAME, "Jack Miller", LegacyCustomerInfo.KEY_SEGMENT, "11" });
testCustomerManager.addTestRecord(5,
new String[] { LegacyCustomerInfo.KEY_ID, "5", LegacyCustomerInfo.KEY_NAME, "Ren Stimpy", LegacyCustomerInfo.KEY_SEGMENT, "20" });
testHistoryManager.addTestRecord(1, new String[] { LegacyCustomerInfo.KEY_ID, "1", LegacyCustomerInfo.KEY_LAST_ORDER_DATE, "2010-12-11" });
testHistoryManager.addTestRecord(2, new String[] { LegacyCustomerInfo.KEY_ID, "2", LegacyCustomerInfo.KEY_LAST_ORDER_DATE, "2010-02-01" });
testHistoryManager.addTestRecord(3, new String[] { LegacyCustomerInfo.KEY_ID, "3", LegacyCustomerInfo.KEY_LAST_ORDER_DATE, "2011-01-20" });
testHistoryManager.addTestRecord(4, new String[] { LegacyCustomerInfo.KEY_ID, "4", LegacyCustomerInfo.KEY_LAST_ORDER_DATE, "2011-03-24" });
testHistoryManager.addTestRecord(5, new String[] { LegacyCustomerInfo.KEY_ID, "5", LegacyCustomerInfo.KEY_LAST_ORDER_DATE, "2010-12-20" });
legacyCustomerInfoProvider = new LegacyCustomerInfoProvider(testCustomerManager, testHistoryManager);
}
@Test
public void testWrapper() {
// hint: adjust the log-level in lockback.xml to DEBUG to see the Wrapper working
LOGGER.info("Test Wrapper ...");
long startTimeNanos = System.nanoTime();
CustomerInfo info3 = legacyCustomerInfoProvider.getCustomerInfo("3");
String sInfo3 = info3.toString();
LOGGER.debug(sInfo3);
assertEquals("3", info3.getId());
assertEquals("Sandy Bridge", info3.getName());
assertEquals(11, info3.getCustomerSegment());
assertEquals("LegacyCustomerInfo({ID='3', Name='Sandy Bridge', Segment=11, Last Order Date='2011-01-20'})", sInfo3);
List<CustomerInfo> list = legacyCustomerInfoProvider.findCustomerInfosOfSegment(11);
assertEquals(2, list.size());
LOGGER.debug("{}", list);
List<CustomerInfo> list2 = legacyCustomerInfoProvider.findCustomerInfosOfSegment(20);
assertEquals(1, list2.size());
CustomerInfo info5 = list2.get(0);
String sInfo5 = info5.toString();
assertEquals("LegacyCustomerInfo({ID='5', Name='Ren Stimpy', Segment=20, Last Order Date='2010-12-20'})", sInfo5);
LOGGER.debug(sInfo5);
String elapsedTimeString = TimeUtils.formatNanosAsSeconds(System.nanoTime() - startTimeNanos);
LOGGER.info("Test Wrapper successful! Elapsed time: {} s", elapsedTimeString);
}
}