aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-healing-lib/openecomp-sdc-healing-impl/src/test/java/org/openecomp/sdc/healing/healers/ManufacturerReferenceNumberHealerTest.java
blob: 2d432fcee5d9ba6c4c891477e6b65ed1d9661cbd (plain)
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
 * Copyright © 2016-2018 European Support Limited
 *
 * 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.
 */

package org.openecomp.sdc.healing.healers;

import static java.lang.Boolean.FALSE;
import static java.lang.Boolean.TRUE;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.doNothing;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;

import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import org.openecomp.sdc.vendorlicense.dao.FeatureGroupDao;
import org.openecomp.sdc.vendorlicense.dao.types.EntitlementPoolEntity;
import org.openecomp.sdc.vendorlicense.dao.types.FeatureGroupEntity;
import org.openecomp.sdc.vendorlicense.dao.types.LicenseKeyGroupEntity;
import org.openecomp.sdc.vendorlicense.facade.VendorLicenseFacade;
import org.openecomp.sdc.versioning.dao.types.Version;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashSet;
import java.util.Set;

public class ManufacturerReferenceNumberHealerTest {

  @Mock
  private VendorLicenseFacade vendorLicenseFacade;
  @Mock
  private FeatureGroupDao featureGroupDao;
  private ManufacturerReferenceNumberHealer manufacturerReferenceNumberHealer;

  private final String ITEM_ID = "ITEM_ID";
  private final Version version = new Version();

  @Before
  public void init(){
    MockitoAnnotations.initMocks(this);
    manufacturerReferenceNumberHealer = new ManufacturerReferenceNumberHealer
        (vendorLicenseFacade, featureGroupDao);
  }

  @Test
  public void testIsHealingNeeded_Positive() {
    Collection<EntitlementPoolEntity> entitlementPoolEntities = new ArrayList<>();
    entitlementPoolEntities.add(new EntitlementPoolEntity(ITEM_ID, version, ""));

    when(vendorLicenseFacade.listEntitlementPools(ITEM_ID, version )).thenReturn(entitlementPoolEntities);
    Assert.assertEquals(TRUE, manufacturerReferenceNumberHealer.isHealingNeeded("ITEM_ID", version));
  }

  @Test
  public void testIsHealingNeeded_Negative() {
    Collection<EntitlementPoolEntity> entitlementPoolEntities = new ArrayList<>();
    EntitlementPoolEntity entitlementPoolEntity = new EntitlementPoolEntity(ITEM_ID, version, "");
    entitlementPoolEntity.setManufacturerReferenceNumber("MRN");
    entitlementPoolEntities.add(entitlementPoolEntity);

    when(vendorLicenseFacade.listEntitlementPools(ITEM_ID, version )).thenReturn(entitlementPoolEntities);
    Assert.assertEquals(FALSE, manufacturerReferenceNumberHealer.isHealingNeeded("ITEM_ID", version));
  }

  @Test
  public void testHeal() throws Exception {

    Collection<EntitlementPoolEntity> entitlementPoolEntities = getEntitlementPoolEntities();
    when(vendorLicenseFacade.listEntitlementPools(ITEM_ID, version)).thenReturn(entitlementPoolEntities);
    doNothing().when(vendorLicenseFacade).updateEntitlementPool(any());
    Collection<LicenseKeyGroupEntity> licenseKeyGroupEntities = getLicenseKeyGroupEntities();
    when(vendorLicenseFacade.listLicenseKeyGroups(ITEM_ID, version)).thenReturn
        (licenseKeyGroupEntities);
    doNothing().when(vendorLicenseFacade).updateLicenseKeyGroup(any());

    FeatureGroupEntity featureGroupEntity = new FeatureGroupEntity();
    when(vendorLicenseFacade.getFeatureGroup(any())).thenReturn(featureGroupEntity);

    Collection<FeatureGroupEntity> featureGroupEntities = new ArrayList<>();
    featureGroupEntities.add(featureGroupEntity);
    when(vendorLicenseFacade.listFeatureGroups(ITEM_ID, version)).thenReturn
        (featureGroupEntities);
    doNothing().when(featureGroupDao).update(any());

    manufacturerReferenceNumberHealer.heal(ITEM_ID, version);

    verify(vendorLicenseFacade, times(1)).updateEntitlementPool(any());
    verify(vendorLicenseFacade,times(1)).updateLicenseKeyGroup(any());
  }

  private Collection<EntitlementPoolEntity> getEntitlementPoolEntities() {
    Set<String> oneReferencingFeatureGroups = new HashSet<String>(Arrays.asList("1"));
    Collection<EntitlementPoolEntity> entitlementPoolEntities = new ArrayList<>();
    EntitlementPoolEntity entitlementPoolEntity = new EntitlementPoolEntity();
    entitlementPoolEntity.setReferencingFeatureGroups(oneReferencingFeatureGroups);
    entitlementPoolEntities.add(entitlementPoolEntity);
    return entitlementPoolEntities;
  }

  private Collection<LicenseKeyGroupEntity> getLicenseKeyGroupEntities() {
    Set<String> oneReferencingFeatureGroups = new HashSet<String>(Arrays.asList("1"));
    Collection<LicenseKeyGroupEntity> licenseKeyGroupEntities = new ArrayList<>();
    LicenseKeyGroupEntity licenseKeyGroupEntity = new LicenseKeyGroupEntity();
    licenseKeyGroupEntity.setReferencingFeatureGroups(oneReferencingFeatureGroups);
    licenseKeyGroupEntities.add(licenseKeyGroupEntity);
    return  licenseKeyGroupEntities;
  }
}