@Test
  public void test() throws Exception {
    // 数据库连接基本信息,并构建内存数据库H2
    String username = "******";
    String password = "******";
    String dbInstance = "testDB";
    String securityKey = "0000000000000000";
    String passwordEncrypt = AesUtil.getInstance().encryptAndUrlEncoding(password, securityKey);
    String url = "jdbc:h2:mem:" + dbInstance + ";";
    try {
      Class.forName("org.h2.Driver");
      Connection conn = DriverManager.getConnection(url, username, password);
      if (conn != null) {
        LOG.error("get H2 datasource by username:"******"jdbc:h2:mem://");
    ds.setDataSourceType(DataSourceType.H2);
    ds.setDbInstance(dbInstance);
    ds.setDbPwd(passwordEncrypt);
    ds.setDbUser(username);
    ds.setHostAndPort("127.0.0.1:3306");
    // 测试打开和关闭连接
    Connection conn = dsConnService.createConnection(ds, securityKey);
    Assert.assertNotNull(conn);
    Assert.assertTrue(dsConnService.closeConnection(conn));

    try {
      dsConnService.getDataSourceConnUrl(null);
    } catch (DataSourceConnectionException e) {
      Assert.assertNotNull(e);
    }

    String connUrl =
        DataSourceType.H2.getPrefix()
            + ds.getHostAndPort()
            + DataSourceType.H2.getDiv()
            + ds.getDbInstance();
    Assert.assertEquals(connUrl, dsConnService.getDataSourceConnUrl(ds));

    // 测试数据源连接是否有效
    Assert.assertTrue(dsConnService.isValidateDataSource(ds, securityKey));
    DataSourceType.H2.setDriver("this is not database driver");
    ds.setDataSourceType(DataSourceType.H2);
    Assert.assertFalse(dsConnService.isValidateDataSource(ds, securityKey));
    // 设置正确的数据库前缀
    DataSourceType.H2.setPrefix("jdbc:h2:tcp://");
    DataSourceType.H2.setDriver("org.h2.Driver");
  }