Skip to main content
summaryrefslogtreecommitdiffstats
blob: 476bccdd989d1b97aceb51cd62510413f0611e1e (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
/*******************************************************************************
 * Copyright (c) 2010 Boeing.
 * 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:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.ats.core.internal.column;

import static org.mockito.Mockito.when;
import java.util.Collections;
import org.eclipse.osee.ats.api.ai.IAtsActionableItem;
import org.eclipse.osee.ats.api.review.IAtsAbstractReview;
import org.eclipse.osee.ats.api.review.IAtsReviewService;
import org.eclipse.osee.ats.api.team.IAtsTeamDefinition;
import org.eclipse.osee.ats.api.workflow.IAtsTeamWorkflow;
import org.eclipse.osee.ats.api.workflow.IAtsWorkItemService;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;

/**
 * @tests TeamColumnUtility
 * @author Donald G. Dunne
 */
public class TeamColumnUtilityTest {

   private static final String TEAM_NAME = "Team Name";
   // @formatter:off
   @Mock private IAtsTeamWorkflow teamWf;
   @Mock private IAtsTeamDefinition teamDef;
   @Mock private IAtsAbstractReview review;
   @Mock private IAtsAbstractReview standAloneReview;
   @Mock private IAtsActionableItem ai;
   @Mock private IAtsWorkItemService workItemService;
   @Mock private IAtsReviewService reviewService;
   // @formatter:on

   @Before
   public void setup() {
      MockitoAnnotations.initMocks(this);
      when(teamWf.getTeamDefinition()).thenReturn(teamDef);
      when(review.getParentTeamWorkflow()).thenReturn(teamWf);
      when(teamDef.toString()).thenReturn(TEAM_NAME);
      when(standAloneReview.getParentTeamWorkflow()).thenReturn(null);
      when(standAloneReview.getActionableItems()).thenReturn(Collections.singleton(ai));
      when(workItemService.getTeamName(teamWf)).thenReturn(TEAM_NAME);
      when(reviewService.isStandAloneReview(standAloneReview)).thenReturn(true);
      when(ai.getTeamDefinitionInherited()).thenReturn(teamDef);
      when(ai.getTeamDefinition()).thenReturn(teamDef);
   }

   @Test
   public void testGetColumnText() throws Exception {
      TeamColumnUtility utility = new TeamColumnUtility(workItemService, reviewService);

      Assert.assertEquals(TEAM_NAME, utility.getColumnText(teamWf));
      Assert.assertEquals(TEAM_NAME, utility.getColumnText(review));
      Assert.assertEquals("", utility.getColumnText("some object"));
      Assert.assertEquals(TEAM_NAME, utility.getColumnText(standAloneReview));
   }
}

Back to the top