summaryrefslogtreecommitdiffstats
path: root/sparkybe-onap-service/src/test/java/org/onap/aai/sparky/editattributes/AttributeUpdaterTest.java
blob: b31962b5cc7ae2bd994a6f8d5319aa79dc39d48b (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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/**
 * ============LICENSE_START===================================================
 * SPARKY (AAI UI service)
 * ============================================================================
 * Copyright © 2017 AT&T Intellectual Property.
 * Copyright © 2017 Amdocs
 * All rights reserved.
 * ============================================================================
 * 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.
 * ============LICENSE_END=====================================================
 *
 * ECOMP and OpenECOMP are trademarks
 * and service marks of AT&T Intellectual Property.
 */

package org.onap.aai.sparky.editattributes;

import static org.junit.Assert.assertEquals;

import java.util.HashMap;
import java.util.Map;

import javax.ws.rs.core.Response.Status;

import org.eclipse.persistence.dynamic.DynamicType;
import org.junit.Before;
import org.junit.Test;
import org.mockito.Mockito;
import org.onap.aai.restclient.client.OperationResult;
import org.onap.aai.setup.SchemaVersion;
import org.onap.aai.sparky.config.oxm.OxmEntityDescriptor;
import org.onap.aai.sparky.config.oxm.OxmEntityLookup;
import org.onap.aai.sparky.config.oxm.OxmModelLoader;
import org.onap.aai.sparky.dal.ActiveInventoryAdapter;
import org.onap.aai.sparky.editattributes.AttributeUpdater.AaiEditObject;



/**
 * The Class AttributeUpdaterTest.
 */
public class AttributeUpdaterTest {

  private ActiveInventoryAdapter aaiAdapter;

  /**
   * Sets the up.
   *
   * @throws Exception the exception
   */
  @Before
  public void setUp() throws Exception {

    aaiAdapter = Mockito.mock(ActiveInventoryAdapter.class);
  }

  /**
   * @throws Exception
   */

  @Test
  public void testUpdateObjectAttribute() throws Exception {

    OxmEntityDescriptor desc = new OxmEntityDescriptor();
    desc.addPrimaryKeyName("hostname");
    desc.setEntityName("pserver");
    OxmEntityLookup entityLookup = new OxmEntityLookup();
    entityLookup.addEntityDescriptor("pserver", desc);

    AttributeUpdater updater =
        new AttributeUpdater(new OxmModelLoader("v11", null, null), entityLookup, aaiAdapter);
    Map<String, Object> attributes = new HashMap<>();
    attributes.put("prov-status", "PREPROV");
    attributes.put("in-maint", "true");
    OperationResult result = updater.updateObjectAttribute(
        "cloud-infrastructure/pservers/pserver/something", attributes, "someid");
    assertEquals(Status.FORBIDDEN.getStatusCode(), result.getResultCode());
  }


  // This needs the OXM file in place to work.
  /**
   * Test get edit object from uri.
   *
   * @throws Exception the exception
   */
  @Test(expected = NullPointerException.class)
  public void testGetEditObjectFromUri() throws Exception {
    String version = "v11";
    OxmModelLoader loader = new OxmModelLoader(version, null, null);


    OxmEntityDescriptor desc = new OxmEntityDescriptor();
    desc.addPrimaryKeyName("hostname");
    desc.setEntityName("pserver");

    OxmEntityLookup entityLookup = new OxmEntityLookup();
    entityLookup.addEntityDescriptor("pserver", desc);


    // DynamicType mockType = Mockito.mock(DynamicType.class);
    // Class<? extends DynamicEntity> mockDynamicEntity = Mockito.mock(DynamicEntity.class);

    // Mockito.when(mockType.getJavaClass()).thenReturn(mockDynamicEntity);



    HashMap<String, DynamicType> typeLookup = new HashMap<String, DynamicType>();
    // typeLookup.put("pserver", mockType);

    entityLookup.setEntityTypeLookup(typeLookup);


    AttributeUpdater updater =
        new AttributeUpdater(new OxmModelLoader(version, null, null), entityLookup, aaiAdapter);
    AaiEditObject result = updater.getEditObjectFromUri(null);
    assertEquals("Pserver", result.getObjectType());
    assertEquals("pserver", result.getRootElement());
    assertEquals("hostname", result.getKeyName());
    assertEquals("mtznjtax101", result.getKeyValue());
  }

  /**
   * Test get relative uri.
   *
   * @throws Exception the exception
   */

  @Test
  public void testGetRelativeUri() throws Exception {

    OxmEntityDescriptor desc = new OxmEntityDescriptor();
    desc.addPrimaryKeyName("hostname");
    desc.setEntityName("pserver");

    OxmEntityLookup entityLookup = new OxmEntityLookup();
    entityLookup.addEntityDescriptor("pserver", desc);

    AttributeUpdater updater = new AttributeUpdater(new OxmModelLoader("v11",null,null), entityLookup, aaiAdapter);
    // Test entity uri without "/aai/version/"
    String result = updater.getRelativeUri("cloud-infrastructure/pservers/pserver/mtznjtax101");
    assertEquals("/cloud-infrastructure/pservers/pserver/mtznjtax101", result);
    result = updater.getRelativeUri("/aai/v8/cloud-infrastructure/pservers/pserver/mtznjtax101");
    assertEquals("/cloud-infrastructure/pservers/pserver/mtznjtax101", result);

    result = updater.getRelativeUri("/v8/cloud-infrastructure/pservers/pserver/mtznjtax101");
    assertEquals("/cloud-infrastructure/pservers/pserver/mtznjtax101", result);

    result = updater.getRelativeUri("aai/v88/cloud-infrastructure/pservers/pserver/mtznjtax101");
    assertEquals("/cloud-infrastructure/pservers/pserver/mtznjtax101", result);

    result = updater.getRelativeUri("/cloud-infrastructure/pservers/pserver/mtznjtax101");
    assertEquals("/cloud-infrastructure/pservers/pserver/mtznjtax101", result);
  }

}