Skip to main content
summaryrefslogtreecommitdiffstats
blob: a914c58ce2ba46a13daf939d523ffb42b70af161 (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
/*******************************************************************************
 * Copyright (c) 2015 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.util;

import static org.eclipse.osee.framework.core.enums.CoreBranches.COMMON;
import static org.junit.Assert.assertEquals;
import static org.mockito.Mockito.when;
import org.eclipse.osee.ats.api.IAtsObject;
import org.eclipse.osee.ats.api.data.AtsAttributeTypes;
import org.eclipse.osee.ats.api.workdef.IAttributeResolver;
import org.eclipse.osee.framework.core.data.ArtifactToken;
import org.junit.Before;
import org.junit.Test;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;

/**
 * Test Case for {@link AtsCoreServiceImpl}
 *
 * @author Donald G. Dunne
 */
public class AtsCoreServiceImplTest {

   // @formatter:off
   @Mock private IAtsObject atsObject;
   @Mock private IAttributeResolver attrResolver;
   // @formatter:on

   @Before
   public void setup() {
      MockitoAnnotations.initMocks(this);
   }

   @Test
   public void testGetAtsId() {
      ArtifactToken artifact = ArtifactToken.valueOf(0, "guid", null, COMMON, null);
      when(attrResolver.getSoleAttributeValue(artifact, AtsAttributeTypes.AtsId, null)).thenReturn(null);
      String result = AtsCoreServiceImpl.getAtsId(attrResolver, artifact);
      assertEquals(result, "guid");

      when(attrResolver.getSoleAttributeValue(atsObject, AtsAttributeTypes.AtsId, null)).thenReturn(null);
      when(atsObject.getStoreObject()).thenReturn(artifact);
      result = AtsCoreServiceImpl.getAtsId(attrResolver, atsObject);
      assertEquals(result, "guid");

      when(attrResolver.getSoleAttributeValue(artifact, AtsAttributeTypes.AtsId, null)).thenReturn("ATS23");
      result = AtsCoreServiceImpl.getAtsId(attrResolver, artifact);
      assertEquals(result, "ATS23");

      when(attrResolver.getSoleAttributeValue(artifact, AtsAttributeTypes.AtsId, null)).thenReturn("ATS23");
      assertEquals(result, "ATS23");
   }
}

Back to the top