|
42 | 42 | import org.h2.api.ErrorCode;
|
43 | 43 | import org.h2.engine.Constants;
|
44 | 44 | import org.h2.engine.SysProperties;
|
| 45 | +import org.h2.jdbc.JdbcSQLFeatureNotSupportedException; |
| 46 | +import org.h2.jdbc.JdbcSQLNonTransientException; |
| 47 | +import org.h2.server.web.WebServer; |
45 | 48 | import org.h2.server.web.WebServlet;
|
46 | 49 | import org.h2.store.fs.FileUtils;
|
47 | 50 | import org.h2.test.TestBase;
|
@@ -159,18 +162,33 @@ private void testTools() throws Exception {
|
159 | 162 | conn.createStatement().execute(
|
160 | 163 | "create table test(id int) as select 1");
|
161 | 164 | conn.close();
|
| 165 | + String hash = WebServer.encodeAdminPassword("1234567890AB"); |
| 166 | + try { |
| 167 | + Server.main("-web", "-webPort", "8182", |
| 168 | + "-properties", "null", "-tcp", "-tcpPort", "9101", "-webAdminPassword", hash); |
| 169 | + fail("Expected exception"); |
| 170 | + } catch (JdbcSQLFeatureNotSupportedException e) { |
| 171 | + // Expected |
| 172 | + } |
162 | 173 | Server server = new Server();
|
163 | 174 | server.setOut(new PrintStream(new ByteArrayOutputStream()));
|
| 175 | + try { |
| 176 | + server.runTool("-web", "-webPort", "8182", |
| 177 | + "-properties", "null", "-tcp", "-tcpPort", "9101", "-webAdminPassword", "123"); |
| 178 | + fail("Expected exception"); |
| 179 | + } catch (JdbcSQLNonTransientException e) { |
| 180 | + // Expected |
| 181 | + } |
164 | 182 | server.runTool("-web", "-webPort", "8182",
|
165 |
| - "-properties", "null", "-tcp", "-tcpPort", "9101", "-webAdminPassword", "123"); |
| 183 | + "-properties", "null", "-tcp", "-tcpPort", "9101", "-webAdminPassword", hash); |
166 | 184 | try {
|
167 | 185 | String url = "http://localhost:8182";
|
168 | 186 | WebClient client;
|
169 | 187 | String result;
|
170 | 188 | client = new WebClient();
|
171 | 189 | result = client.get(url);
|
172 | 190 | client.readSessionId(result);
|
173 |
| - result = client.get(url, "adminLogin.do?password=123"); |
| 191 | + result = client.get(url, "adminLogin.do?password=1234567890AB"); |
174 | 192 | result = client.get(url, "tools.jsp");
|
175 | 193 | FileUtils.delete(getBaseDir() + "/backup.zip");
|
176 | 194 | result = client.get(url, "tools.do?tool=Backup&args=-dir," +
|
|
0 commit comments