Skip to content

Commit

Permalink
Downgraded Liquibase since there's a bug where the database encryptio…
Browse files Browse the repository at this point in the history
…n task runs twice
  • Loading branch information
galovics committed Nov 25, 2023
1 parent f27d136 commit b59172f
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ dependencyManagement {
exclude 'jakarta.activation:jakarta.activation-api'
}

dependency ('org.liquibase:liquibase-core:4.25.0') {
dependency ('org.liquibase:liquibase-core:4.23.0') {
exclude 'javax.xml.bind:jaxb-api'
}

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.fineract.infrastructure.security.utils;

import static org.assertj.core.api.Assertions.assertThat;

import org.junit.jupiter.api.Test;

class EncryptionUtilTest {

@Test
public void testEncryptDecryptWorks() {
// given
String encryptionType = "AES/CBC/PKCS5Padding";
String masterPassword = "fineract";
String data = "postgres";
String encrypted = EncryptionUtil.encryptToBase64(encryptionType, masterPassword, data);
assertThat(encrypted).isNotEqualTo(data);
// when
String result = EncryptionUtil.decryptFromBase64(encryptionType, masterPassword, encrypted);
// then
assertThat(result).isEqualTo(data);
}

@Test
public void testDecryptWorks() {
// given
String encryptionType = "AES/CBC/PKCS5Padding";
String masterPassword = "fineract";
String data = "Oy/ah382msZT9ZAYBmQgsIXJYOdkB5MoF+3XMkQVkcZTduNSam3+0VpGYOGyXojs";
// when
String result = EncryptionUtil.decryptFromBase64(encryptionType, masterPassword, data);
// then
assertThat(result).isEqualTo("postgres");
}
}

0 comments on commit b59172f

Please sign in to comment.