26
26
import java .nio .file .Files ;
27
27
import java .util .List ;
28
28
import java .util .Objects ;
29
+ import java .util .jar .Attributes ;
30
+ import java .util .jar .JarEntry ;
31
+ import java .util .jar .JarOutputStream ;
32
+ import java .util .jar .Manifest ;
29
33
30
34
import static org .assertj .core .api .Assertions .assertThat ;
31
35
import static org .assertj .core .api .Assertions .assertThatIllegalStateException ;
@@ -37,6 +41,7 @@ class SpringBootLayeredJarTest {
37
41
38
42
private SpringBootLayeredJar springBootLayeredJar ;
39
43
44
+
40
45
@ Nested
41
46
@ DisplayName ("with invalid jar" )
42
47
class InvalidJar {
@@ -45,6 +50,22 @@ void setup() {
45
50
springBootLayeredJar = new SpringBootLayeredJar (new File (projectDir , "invalid.jar" ), new KitLogger .SilentLogger ());
46
51
}
47
52
53
+ @ Test
54
+ void isLayeredJar_returnsFalse () {
55
+ // When
56
+ final boolean result = springBootLayeredJar .isLayeredJar ();
57
+ // Then
58
+ assertThat (result ).isFalse ();
59
+ }
60
+
61
+ @ Test
62
+ void getMainClass_returnsNull () {
63
+ // When
64
+ final String result = springBootLayeredJar .getMainClass ();
65
+ // Then
66
+ assertThat (result ).isNull ();
67
+ }
68
+
48
69
@ Test
49
70
void listLayers_whenJarInvalid_thenThrowException () {
50
71
assertThatIllegalStateException ()
@@ -59,9 +80,10 @@ void extractLayers_whenJarInvalid_thenThrowException() {
59
80
.withMessage ("Failure in extracting spring boot jar layers" );
60
81
}
61
82
}
83
+
62
84
@ Nested
63
- @ DisplayName ("with valid jar" )
64
- class ValidJar {
85
+ @ DisplayName ("with valid (real) jar" )
86
+ class RealJar {
65
87
@ BeforeEach
66
88
void setup () throws IOException {
67
89
final File layeredJar = new File (projectDir , "layered.jar" );
@@ -73,7 +95,23 @@ void setup() throws IOException {
73
95
}
74
96
75
97
@ Test
76
- void listLayers_whenJarInvalid_thenThrowException () {
98
+ void isLayeredJar_returnsTrue () {
99
+ // When
100
+ final boolean result = springBootLayeredJar .isLayeredJar ();
101
+ // Then
102
+ assertThat (result ).isTrue ();
103
+ }
104
+
105
+ @ Test
106
+ void getMainClass_returnsJarLauncher () {
107
+ // When
108
+ final String result = springBootLayeredJar .getMainClass ();
109
+ // Then
110
+ assertThat (result ).isEqualTo ("org.springframework.boot.loader.JarLauncher" );
111
+ }
112
+
113
+ @ Test
114
+ void listLayers () {
77
115
// When
78
116
final List <String > result = springBootLayeredJar .listLayers ();
79
117
// Then
@@ -82,7 +120,7 @@ void listLayers_whenJarInvalid_thenThrowException() {
82
120
}
83
121
84
122
@ Test
85
- void extractLayers_whenJarInvalid_thenThrowException () throws IOException {
123
+ void extractLayers () throws IOException {
86
124
// Given
87
125
final File extractionDir = Files .createDirectory (new File (projectDir , "extracted" ).toPath ()).toFile ();
88
126
// When
@@ -93,4 +131,51 @@ void extractLayers_whenJarInvalid_thenThrowException() throws IOException {
93
131
.contains ("dependencies" , "spring-boot-loader" , "snapshot-dependencies" , "application" );
94
132
}
95
133
}
134
+
135
+ @ Nested
136
+ @ DisplayName ("with fake jar with MANIFEST.MF and layers.idx" )
137
+ class FakeJar {
138
+ @ BeforeEach
139
+ void setup () throws IOException {
140
+ final File fakeJar = new File (projectDir , "fake.jar" );
141
+ final Manifest manifest = new Manifest ();
142
+ manifest .getMainAttributes ().put (Attributes .Name .MANIFEST_VERSION , "1.0" );
143
+ manifest .getMainAttributes ().put (Attributes .Name .MAIN_CLASS , "org.example.Foo" );
144
+ try (JarOutputStream jarOutputStream = new JarOutputStream (Files .newOutputStream (fakeJar .toPath ()), manifest )) {
145
+ jarOutputStream .putNextEntry (new JarEntry ("BOOT-INF/layers.idx" ));
146
+ }
147
+ springBootLayeredJar = new SpringBootLayeredJar (fakeJar , new KitLogger .SilentLogger ());
148
+ }
149
+
150
+ @ Test
151
+ void getMainClass_returnsManifestMainClass () {
152
+ // When
153
+ final String result = springBootLayeredJar .getMainClass ();
154
+ // Then
155
+ assertThat (result ).isEqualTo ("org.example.Foo" );
156
+ }
157
+
158
+ @ Test
159
+ void isLayeredJar_returnsTrue () {
160
+ // When
161
+ final boolean result = springBootLayeredJar .isLayeredJar ();
162
+ // Then
163
+ assertThat (result ).isTrue ();
164
+ }
165
+
166
+
167
+ @ Test
168
+ void listLayers_whenJarInvalid_thenThrowException () {
169
+ assertThatIllegalStateException ()
170
+ .isThrownBy (() -> springBootLayeredJar .listLayers ())
171
+ .withMessage ("Failure in getting spring boot jar layers information" );
172
+ }
173
+
174
+ @ Test
175
+ void extractLayers_whenJarInvalid_thenThrowException () {
176
+ assertThatIllegalStateException ()
177
+ .isThrownBy (() -> springBootLayeredJar .extractLayers (projectDir ))
178
+ .withMessage ("Failure in extracting spring boot jar layers" );
179
+ }
180
+ }
96
181
}
0 commit comments