Skip to content

Commit d393e05

Browse files
justin-curtis-lunaotoj
authored andcommittedOct 25, 2022
8294989: ResourceBundle naming convention issue in JdbcRowSetResourceBundle.java
Reviewed-by: naoto, lancea, bchristi
1 parent 0caea81 commit d393e05

File tree

3 files changed

+150
-1
lines changed

3 files changed

+150
-1
lines changed
 

‎src/java.sql.rowset/share/classes/com/sun/rowset/JdbcRowSetResourceBundle.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public class JdbcRowSetResourceBundle implements Serializable {
8080
* The variable where the default resource bundle will
8181
* be placed.
8282
**/
83-
private static final String PATH = "com/sun/rowset/RowSetResourceBundle";
83+
private static final String PATH = "com.sun.rowset.RowSetResourceBundle";
8484

8585
/**
8686
* The constructor which initializes the resource bundle.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
/*
2+
* Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
import com.sun.rowset.JdbcRowSetResourceBundle;
25+
26+
import java.util.Locale;
27+
import java.util.MissingResourceException;
28+
import java.util.ResourceBundle;
29+
import java.util.stream.Stream;
30+
import org.junit.jupiter.params.ParameterizedTest;
31+
import org.junit.jupiter.params.provider.MethodSource;
32+
import org.junit.jupiter.params.provider.Arguments;
33+
34+
/**
35+
* @test
36+
* @bug 8294989
37+
* @summary Check JDBC RowSet resource bundle access
38+
* @modules java.sql.rowset/com.sun.rowset:+open
39+
* @run junit/othervm ValidateGetBundle
40+
*/
41+
public class ValidateGetBundle{
42+
43+
// Data provider for testResourceBundleAccess
44+
private static Stream<Arguments> bundleProvider() {
45+
return Stream.of(
46+
// The resource bundle should be found with the fully qualified class name
47+
Arguments.of("com.sun.rowset.RowSetResourceBundle", true),
48+
// The resource bundle will not be found when the path is specified
49+
Arguments.of("com/sun/rowset/RowSetResourceBundle", false)
50+
);
51+
}
52+
53+
/**
54+
* Test to validate whether the JDBC RowSet Resource bundle can be found
55+
* @param bundleName the base name of the resource bundle
56+
* @param expectBundle indicates whether the resource bundle should be found
57+
*/
58+
@ParameterizedTest
59+
@MethodSource("bundleProvider")
60+
void testResourceBundleAccess(String bundleName, boolean expectBundle) {
61+
try {
62+
var bundle = ResourceBundle.getBundle(bundleName,
63+
Locale.US, JdbcRowSetResourceBundle.class.getModule());
64+
if (!expectBundle) {
65+
throw new RuntimeException(
66+
String.format("$$$ Error: '%s' shouldn't have loaded!%n", bundleName));
67+
}
68+
System.out.printf("$$$ %s was found as expected!%n", bundleName);
69+
} catch (MissingResourceException mr) {
70+
if (expectBundle) {
71+
throw new RuntimeException(
72+
String.format("$$$ Error: '%s' should have loaded!", bundleName), mr);
73+
}
74+
System.out.printf("$$$ %s was not found as expected!", bundleName);
75+
}
76+
}
77+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
/*
2+
* Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
package test.rowset;
24+
25+
import java.util.Locale;
26+
import java.sql.SQLException;
27+
import javax.sql.rowset.RowSetProvider;
28+
import org.testng.annotations.Test;
29+
import org.testng.annotations.BeforeClass;
30+
import static org.testng.Assert.*;
31+
32+
/**
33+
* @test
34+
* @bug 8294989
35+
* @summary Check that the resource bundle can be accessed
36+
* @throws SQLException if an unexpected error occurs
37+
* @run testng/othervm
38+
*/
39+
public class ValidateResourceBundleAccess{
40+
// Expected JDBCResourceBundle message, jdbcrowsetimpl.invalstate
41+
private static final String INVALIDSTATE = "Invalid state";
42+
// Expected JDBCResourceBundle message, crsreader.connecterr
43+
private static final String RSREADERERROR = "Internal Error in RowSetReader: no connection or command";
44+
45+
// Checking against English messages, set to US Locale
46+
@BeforeClass
47+
public void setEnglishEnvironment() {
48+
Locale.setDefault(Locale.US);
49+
}
50+
51+
@Test
52+
public void testResourceBundleAccess() throws SQLException {
53+
var rsr = RowSetProvider.newFactory();
54+
var crs =rsr.createCachedRowSet();
55+
var jrs = rsr.createJdbcRowSet();
56+
// Simple test to force an Exception to validate the expected message
57+
// is found from the resource bundle
58+
try {
59+
jrs.getMetaData();
60+
throw new RuntimeException("$$$ Expected SQLException was not thrown!");
61+
} catch (SQLException sqe) {
62+
assertTrue(sqe.getMessage().equals(INVALIDSTATE));
63+
}
64+
// Now tests via CachedRowSet
65+
try {
66+
crs.execute();
67+
throw new RuntimeException("$$$ Expected SQLException was not thrown!");
68+
} catch (SQLException e) {
69+
assertTrue(e.getMessage().equals(RSREADERERROR));
70+
}
71+
}
72+
}

0 commit comments

Comments
 (0)