01: /********************************************************************************
02: * CruiseControl, a Continuous Integration Toolkit
03: * Copyright (c) 2007, ThoughtWorks, Inc.
04: * 200 E. Randolph, 25th Floor
05: * Chicago, IL 60601 USA
06: * All rights reserved.
07: *
08: * Redistribution and use in source and binary forms, with or without
09: * modification, are permitted provided that the following conditions
10: * are met:
11: *
12: * + Redistributions of source code must retain the above copyright
13: * notice, this list of conditions and the following disclaimer.
14: *
15: * + Redistributions in binary form must reproduce the above
16: * copyright notice, this list of conditions and the following
17: * disclaimer in the documentation and/or other materials provided
18: * with the distribution.
19: *
20: * + Neither the name of ThoughtWorks, Inc., CruiseControl, nor the
21: * names of its contributors may be used to endorse or promote
22: * products derived from this software without specific prior
23: * written permission.
24: *
25: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26: * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27: * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28: * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR
29: * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
30: * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
31: * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
32: * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33: * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34: * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35: * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36: ********************************************************************************/package net.sourceforge.cruisecontrol.dashboard;
37:
38: import java.util.Collection;
39: import java.util.Iterator;
40: import java.util.List;
41:
42: import junit.framework.TestCase;
43:
44: import net.sourceforge.cruisecontrol.Modification;
45:
46: public class ModificationSetTest extends TestCase {
47:
48: public void testShouldGroupModificationsByCommentAndUser() {
49: ModificationSet set = new ModificationSet();
50:
51: String firstUser = "Boris";
52: String secondUser = "Norman";
53:
54: String initialCheckinComment = "Initial Checkin";
55: set.add("cvs", firstUser, initialCheckinComment, "1.2",
56: ModificationAction.ADD, "somefile.xml");
57: set.add("cvs", firstUser, initialCheckinComment, "1.3",
58: ModificationAction.MODIFIED, "anotherfile.xml");
59: set.add("cvs", secondUser, initialCheckinComment, "1.4",
60: ModificationAction.ADD, "anotherfile.xml");
61:
62: Collection modifications = set.getModifications();
63:
64: assertEquals(2, modifications.size());
65:
66: Iterator iterator = modifications.iterator();
67: Modification firstChangeSet = (Modification) iterator.next();
68:
69: assertEquals("cvs", firstChangeSet.type);
70: assertEquals(initialCheckinComment, firstChangeSet.comment);
71:
72: List files = firstChangeSet.getModifiedFiles();
73: assertEquals(2, files.size());
74:
75: Modification.ModifiedFile firstFile = (Modification.ModifiedFile) files
76: .get(0);
77: Modification.ModifiedFile secondFile = (Modification.ModifiedFile) files
78: .get(1);
79:
80: assertEquals("somefile.xml", firstFile.fileName);
81: assertEquals("1.2", firstFile.revision);
82: assertEquals(ModificationAction.ADD, ModificationAction
83: .fromDisplayName(firstFile.action));
84:
85: assertEquals("anotherfile.xml", secondFile.fileName);
86: assertEquals("1.3", secondFile.revision);
87: assertEquals(ModificationAction.MODIFIED, ModificationAction
88: .fromDisplayName(secondFile.action));
89: }
90: }
|