-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathGenerateCommandTest.java
More file actions
170 lines (138 loc) · 6.39 KB
/
GenerateCommandTest.java
File metadata and controls
170 lines (138 loc) · 6.39 KB
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
167
168
169
170
/*
* Copyright 2021 The Context Mapper Project Team
*
* 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.contextmapper.cli.commands;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.ValueSource;
import org.mockito.junit.jupiter.MockitoExtension;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.IOException;
import java.io.PrintStream;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.Comparator;
import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.Mockito.*;
@ExtendWith(MockitoExtension.class)
class GenerateCommandTest {
private static final String TEST_OUT_DIR = "build/test-out";
private final ByteArrayOutputStream outContent = new ByteArrayOutputStream();
private final ByteArrayOutputStream errContent = new ByteArrayOutputStream();
private final PrintStream originalOut = System.out;
private final PrintStream originalErr = System.err;
private File testOutDir;
@BeforeEach
public void setUpStreams() throws IOException {
testOutDir = new File(TEST_OUT_DIR);
if (testOutDir.exists()) {
Files.walk(testOutDir.toPath())
.sorted(Comparator.reverseOrder())
.map(Path::toFile)
.forEach(File::delete);
}
testOutDir.mkdir();
System.setOut(new PrintStream(outContent));
System.setErr(new PrintStream(errContent));
}
@AfterEach
public void restoreStreams() {
System.setOut(originalOut);
System.setErr(originalErr);
}
@ParameterizedTest
@ValueSource(strings = {"-h", "--help", "-i some-file.cml -g plantuml -h", "-i some-file.cml -g plantuml --help"})
void run_WhenCalledWithHelp_ThenPrintHelp(final String params) {
// given
final GenerateCommand command = spy(new GenerateCommand());
// when
command.run(params.split(" "));
// then
verify(command).printHelp(any());
}
@Test
void run_WhenCalledWithNonExistingOutDir_ThenPrintError() {
// given
final GenerateCommand command = spy(new GenerateCommand());
// when
command.run(new String[]{"-i", "src/test/resources/test.cml", "-g", "plantuml", "-o", "/just-some-dir-that-hopefully-not-exists"});
// then
assertThat(outContent.toString()).contains("ERROR: '/just-some-dir-that-hopefully-not-exists' is not a directory.");
}
@Test
void run_WhenCalledWithNonExistingInputFile_ThenPrintError() {
// given
final GenerateCommand command = spy(new GenerateCommand());
// when
command.run(new String[]{"-i", "just-a-file.cml", "-g", "plantuml", "-o", "/build"});
// then
assertThat(outContent.toString()).contains("ERROR: The file 'just-a-file.cml' does not exist.");
}
@Test
void run_WhenCalledWithPlantUMLParam_ThenGeneratePlantUMLFiles() {
// given
final GenerateCommand command = spy(new GenerateCommand());
new File("build/test-out").mkdir();
// when
command.run(new String[]{"-i", "src/test/resources/test.cml", "-g", "plantuml", "-o", "build/test-out"});
// then
assertThat(outContent.toString()).contains("Generated into 'build/test-out'.");
assertThat(new File("build/test-out/test_BC_CargoBookingContext.puml").exists()).isTrue();
assertThat(new File("build/test-out/test_BC_LocationContext.puml").exists()).isTrue();
assertThat(new File("build/test-out/test_BC_VoyagePlanningContext.puml").exists()).isTrue();
assertThat(new File("build/test-out/test_ContextMap.puml").exists()).isTrue();
}
@Test
void run_WhenCalledWithContextMapParam_ThenGenerateContextMapFiles() {
// given
final GenerateCommand command = spy(new GenerateCommand());
new File("build/test-out").mkdir();
// when
command.run(new String[]{"-i", "src/test/resources/test.cml", "-g", "context-map", "-o", "build/test-out"});
// then
assertThat(outContent.toString()).contains("Generated into 'build/test-out'.");
assertThat(new File("build/test-out/test_ContextMap.gv").exists()).isTrue();
assertThat(new File("build/test-out/test_ContextMap.png").exists()).isTrue();
assertThat(new File("build/test-out/test_ContextMap.svg").exists()).isTrue();
}
@Test
void run_WhenCalledWithFileContainingImports_ThenGenerateFilesWithImportedContexts() throws IOException {
// given
final GenerateCommand command = spy(new GenerateCommand());
new File("build/test-out").mkdir();
// when
command.run(new String[]{"-i", "src/test/resources/test-with-imports.cml", "-g", "context-map", "-o", "build/test-out"});
// then
assertThat(outContent.toString()).contains("Generated into 'build/test-out'.");
assertThat(new File("build/test-out/test-with-imports_ContextMap.gv").exists()).isTrue();
assertThat(new File("build/test-out/test-with-imports_ContextMap.png").exists()).isTrue();
assertThat(new File("build/test-out/test-with-imports_ContextMap.svg").exists()).isTrue();
}
@Test
void run_WhenCalledWithGenericParam_ThenGenerateGenericOutput() {
// given
final GenerateCommand command = spy(new GenerateCommand());
new File("build/test-out").mkdir();
// when
command.run(new String[]{"-i", "src/test/resources/test.cml", "-g", "generic", "-o", "build/test-out", "-t", "src/test/resources/test.ftl", "-f", "test.md"});
// then
assertThat(outContent.toString()).contains("Generated into 'build/test-out'.");
assertThat(new File("build/test-out/test.md").exists()).isTrue();
}
}