aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/java/org/openecomp/sdc/translator/services/heattotosca/impl/NovaToVolResourceConnectionTest.java
blob: 93a8668a2f297eda45e2be7e247f0e9d2a7e9b39 (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
package org.openecomp.sdc.translator.services.heattotosca.impl;

import org.junit.Before;
import org.junit.Test;

import java.io.IOException;

/**
 * @author avrahamg
 * @since July 26, 2016
 */
public class NovaToVolResourceConnectionTest extends BaseResourceTranslationTest {
  @Override
  @Before
  public void setUp() throws IOException {
    // do not delete this function. it prevents the superclass setup from running
  }

  @Test
  public void testNovaToVolumeConnectionMultiConnection() throws Exception {
    inputFilesPath = "/mock/services/heattotosca/novatovolumeconnection/multiconnection/inputfiles";
    outputFilesPath =
        "/mock/services/heattotosca/novatovolumeconnection/multiconnection/expectedoutputfiles";
    initTranslatorAndTranslate();
    testTranslation();
  }

  @Test
  public void testNovaToVolumeConnectionMultiNotCreatedIfVolPorpertyInVolAttacheIsNotAReferenceToVolume()
      throws Exception {
    inputFilesPath =
        "/mock/services/heattotosca/novatovolumeconnection/multinotconnected/inputfiles";
    outputFilesPath =
        "/mock/services/heattotosca/novatovolumeconnection/multinotconnected/expectedoutputfiles";
    initTranslatorAndTranslate();
    testTranslation();
  }

  @Test
  public void testNovaToVolumeConnectionNestedNotCreatedIfVolPorpertyInVolAttacheIsNotAReferenceToVolume()
      throws Exception {
    inputFilesPath =
        "/mock/services/heattotosca/novatovolumeconnection/nestednotconnected/inputfiles";
    outputFilesPath =
        "/mock/services/heattotosca/novatovolumeconnection/nestednotconnected/expectedoutputfiles";
    initTranslatorAndTranslate();
    testTranslation();
  }

  @Test
  public void testTranslateNovaToVolumeNestedConnection() throws Exception {
    inputFilesPath =
        "/mock/services/heattotosca/novatovolumeconnection/nestedconnection/inputfiles";
    outputFilesPath =
        "/mock/services/heattotosca/novatovolumeconnection/nestedconnection/expectedoutputfiles";
    initTranslatorAndTranslate();
    testTranslation();
  }

  @Test
  public void testTranslateNovaToVolumeSharedNestedConnection() throws Exception {
    inputFilesPath =
        "/mock/services/heattotosca/novatovolumeconnection/sharednestedconnection/inputfiles";
    outputFilesPath =
        "/mock/services/heattotosca/novatovolumeconnection/sharednestedconnection/expectedoutputfiles";
    initTranslatorAndTranslate();
    testTranslation();
  }

  @Test
  public void testTranslateNovaToVolumeSharedNestedNotCreatedIfVolPorpertyInVolAttacheIsNotAReferenceToVolume()
      throws Exception {
    inputFilesPath =
        "/mock/services/heattotosca/novatovolumeconnection/sharednestednotconnected/inputfiles";
    outputFilesPath =
        "/mock/services/heattotosca/novatovolumeconnection/sharednestednotconnected/expectedoutputfiles";
    initTranslatorAndTranslate();
    testTranslation();
  }

  @Test
  public void testTranslateNovaToVolumeInnerNestedConnection() throws Exception {
    inputFilesPath =
        "/mock/services/heattotosca/novatovolumeconnection/innernestedconnection/inputfiles";
    outputFilesPath =
        "/mock/services/heattotosca/novatovolumeconnection/innernestedconnection/expectedoutputfiles";
    initTranslatorAndTranslate();
    testTranslation();
  }

}