Query CatalogDB for WorkflowSpecifications
[so.git] / mso-catalog-db / src / test / java / org / onap / so / db / catalog / data / repository / WorkflowRepositoryTest.java
1 /*
2  * ============LICENSE_START======================================================= Copyright (C) 2019 Nordix
3  * Foundation. ================================================================================ Licensed under the
4  * Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may
5  * obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software
8  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
9  * either express or implied. See the License for the specific language governing permissions and limitations under the
10  * License.
11  *
12  * SPDX-License-Identifier: Apache-2.0 ============LICENSE_END=========================================================
13  */
14
15 package org.onap.so.db.catalog.data.repository;
16
17 import static org.junit.Assert.assertEquals;
18 import static org.junit.Assert.assertNotNull;
19 import static org.junit.Assert.assertTrue;
20 import java.util.List;
21 import org.junit.Assert;
22 import org.junit.Test;
23 import org.onap.so.db.catalog.BaseTest;
24 import org.onap.so.db.catalog.beans.Workflow;
25 import org.springframework.beans.factory.annotation.Autowired;
26
27 public class WorkflowRepositoryTest extends BaseTest {
28
29     @Autowired
30     private WorkflowRepository workflowRepository;
31
32     @Test
33     public void findByArtifactUuid_ValidUuid_ExpectedOutput() throws Exception {
34         Workflow workflow = workflowRepository.findByArtifactUUID("5b0c4322-643d-4c9f-b184-4516049e99b1");
35
36         assertEquals("artifactName", "testingWorkflow", workflow.getArtifactName());
37     }
38
39     @Test
40     public void findByVnfResourceModelUUIDTest() throws Exception {
41         List<Workflow> workflows = workflowRepository.findWorkflowByModelUUID("ff2ae348-214a-11e7-93ae-92361f002671");
42
43         Assert.assertTrue(workflows != null);
44         Assert.assertTrue(workflows.size() != 0);
45
46         Assert.assertTrue("testingWorkflow".equals(workflows.get(0).getArtifactName()));
47     }
48
49 }