Added oparent to sdc main
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / auditing / impl / AuditResourceEventFactoryManangerTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.be.auditing.impl;
22
23 import org.junit.Test;
24 import org.openecomp.sdc.be.auditing.api.AuditEventFactory;
25 import org.openecomp.sdc.be.auditing.impl.resourceadmin.AuditResourceEventFactoryManager;
26 import org.openecomp.sdc.be.model.User;
27 import org.openecomp.sdc.be.resources.data.auditing.AuditingActionEnum;
28 import org.openecomp.sdc.be.resources.data.auditing.model.CommonAuditData;
29 import org.openecomp.sdc.be.resources.data.auditing.model.ResourceCommonInfo;
30 import org.openecomp.sdc.be.resources.data.auditing.model.ResourceVersionInfo;
31
32
33 public class AuditResourceEventFactoryManangerTest {
34
35         private AuditResourceEventFactoryManager createTestSubject() {
36                 return new AuditResourceEventFactoryManager();
37         }
38
39         @Test
40         public void testCreateResourceEventFactory() throws Exception {
41                 AuditingActionEnum action = null;
42                 CommonAuditData commonFields = null;
43                 ResourceVersionInfo prevParams = null;
44                 ResourceVersionInfo currParams = null;
45                 String resourceType = "";
46                 User modifier = null;
47                 String artifactData = "";
48                 String comment = "";
49                 String did = "";
50                 String toscaNodeType = "";
51                 AuditEventFactory result;
52                 
53                 for (AuditingActionEnum iterable_element : AuditingActionEnum.values()) {
54                         try {
55                                 result = AuditResourceEventFactoryManager.createResourceEventFactory(iterable_element, commonFields,new ResourceCommonInfo(), prevParams,
56                                                 currParams, resourceType,modifier, artifactData, comment,did,
57                                                 toscaNodeType);
58                         } catch (Exception UnsupportedOperationException) {
59                                 continue;
60                         }
61                 }
62                 // default test
63         }
64 }