48
48
*/
49
49
class ViewResolutionIntegrationTests {
50
50
51
- private static final String EXPECTED_BODY = "<html><body>Hello, Java Café</body></html>" ;
52
-
53
-
54
51
@ BeforeAll
55
52
static void verifyDefaultFileEncoding () {
56
53
assertThat (System .getProperty ("file.encoding" )).as ("JVM default file encoding" ).isEqualTo ("UTF-8" );
@@ -60,6 +57,15 @@ static void verifyDefaultFileEncoding() {
60
57
@ Nested
61
58
class FreeMarkerTests {
62
59
60
+ private static final String EXPECTED_BODY = """
61
+ <html>
62
+ <body>
63
+ <h1>Hello, Java Café</h1>
64
+ <p>output_encoding: %s</p>
65
+ </body>
66
+ </html>
67
+ """ ;
68
+
63
69
@ Test
64
70
void freemarkerWithInvalidConfig () {
65
71
assertThatRuntimeException ()
@@ -69,45 +75,49 @@ void freemarkerWithInvalidConfig() {
69
75
70
76
@ Test
71
77
void freemarkerWithDefaults () throws Exception {
78
+ String encoding = "ISO-8859-1" ;
72
79
MockHttpServletResponse response = runTest (FreeMarkerWebConfig .class );
73
80
assertThat (response .isCharset ()).as ("character encoding set in response" ).isTrue ();
74
- assertThat (response .getContentAsString ()).isEqualTo (EXPECTED_BODY );
81
+ assertThat (response .getContentAsString ()).isEqualTo (EXPECTED_BODY . formatted ( encoding ) );
75
82
// Prior to Spring Framework 6.2, the charset is not updated in the Content-Type.
76
83
// Thus, we expect ISO-8859-1 instead of UTF-8.
77
- assertThat (response .getCharacterEncoding ()).isEqualTo ("ISO-8859-1" );
78
- assertThat (response .getContentType ()).isEqualTo ("text/html;charset=ISO-8859-1" );
84
+ assertThat (response .getCharacterEncoding ()).isEqualTo (encoding );
85
+ assertThat (response .getContentType ()).isEqualTo ("text/html;charset=" + encoding );
79
86
}
80
87
81
88
@ Test // gh-16629, gh-33071
82
89
void freemarkerWithExistingViewResolver () throws Exception {
90
+ String encoding = "ISO-8859-1" ;
83
91
MockHttpServletResponse response = runTest (ExistingViewResolverConfig .class );
84
92
assertThat (response .isCharset ()).as ("character encoding set in response" ).isTrue ();
85
- assertThat (response .getContentAsString ()).isEqualTo (EXPECTED_BODY );
93
+ assertThat (response .getContentAsString ()).isEqualTo (EXPECTED_BODY . formatted ( encoding ) );
86
94
// Prior to Spring Framework 6.2, the charset is not updated in the Content-Type.
87
95
// Thus, we expect ISO-8859-1 instead of UTF-8.
88
- assertThat (response .getCharacterEncoding ()).isEqualTo ("ISO-8859-1" );
89
- assertThat (response .getContentType ()).isEqualTo ("text/html;charset=ISO-8859-1" );
96
+ assertThat (response .getCharacterEncoding ()).isEqualTo (encoding );
97
+ assertThat (response .getContentType ()).isEqualTo ("text/html;charset=" + encoding );
90
98
}
91
99
92
100
@ Test // gh-33071
93
101
void freemarkerWithExplicitDefaultEncoding () throws Exception {
102
+ String encoding = "ISO-8859-1" ;
94
103
MockHttpServletResponse response = runTest (ExplicitDefaultEncodingConfig .class );
95
104
assertThat (response .isCharset ()).as ("character encoding set in response" ).isTrue ();
96
- assertThat (response .getContentAsString ()).isEqualTo (EXPECTED_BODY );
105
+ assertThat (response .getContentAsString ()).isEqualTo (EXPECTED_BODY . formatted ( encoding ) );
97
106
// Prior to Spring Framework 6.2, the charset is not updated in the Content-Type.
98
107
// Thus, we expect ISO-8859-1 instead of UTF-8.
99
- assertThat (response .getCharacterEncoding ()).isEqualTo ("ISO-8859-1" );
100
- assertThat (response .getContentType ()).isEqualTo ("text/html;charset=ISO-8859-1" );
108
+ assertThat (response .getCharacterEncoding ()).isEqualTo (encoding );
109
+ assertThat (response .getContentType ()).isEqualTo ("text/html;charset=" + encoding );
101
110
}
102
111
103
112
@ Test // gh-33071
104
113
void freemarkerWithExplicitDefaultEncodingAndContentType () throws Exception {
114
+ String encoding = "UTF-16" ;
105
115
MockHttpServletResponse response = runTest (ExplicitDefaultEncodingAndContentTypeConfig .class );
106
116
assertThat (response .isCharset ()).as ("character encoding set in response" ).isTrue ();
107
- assertThat (response .getContentAsString ()).isEqualTo (EXPECTED_BODY );
117
+ assertThat (response .getContentAsString ()).isEqualTo (EXPECTED_BODY . formatted ( encoding ) );
108
118
// When the Content-Type is explicitly set on the view resolver, it should be used.
109
- assertThat (response .getCharacterEncoding ()).isEqualTo ("UTF-16" );
110
- assertThat (response .getContentType ()).isEqualTo ("text/html;charset=UTF-16" );
119
+ assertThat (response .getCharacterEncoding ()).isEqualTo (encoding );
120
+ assertThat (response .getContentType ()).isEqualTo ("text/html;charset=" + encoding );
111
121
}
112
122
113
123
@@ -202,7 +212,7 @@ void groovyMarkupInvalidConfig() {
202
212
@ Test
203
213
void groovyMarkup () throws Exception {
204
214
MockHttpServletResponse response = runTest (GroovyMarkupWebConfig .class );
205
- assertThat (response .getContentAsString ()).isEqualTo (EXPECTED_BODY );
215
+ assertThat (response .getContentAsString ()).isEqualTo ("<html><body>Hello, Java Café</body></html>" );
206
216
}
207
217
208
218
0 commit comments