-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'axon-multitenancy-4.9.x'
- Loading branch information
Showing
9 changed files
with
99 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
89 changes: 89 additions & 0 deletions
89
.../test/java/org/axonframework/extensions/multitenancy/components/TenantDescriptorTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
/* | ||
* Copyright (c) 2010-2023. Axon Framework | ||
* | ||
* Licensed 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.axonframework.extensions.multitenancy.components; | ||
|
||
import org.junit.jupiter.api.*; | ||
|
||
import java.util.HashMap; | ||
|
||
import static org.junit.jupiter.api.Assertions.*; | ||
|
||
/** | ||
* Test class validating the {@link TenantDescriptor}. | ||
* | ||
* @author Steven van Beelen | ||
*/ | ||
class TenantDescriptorTest { | ||
|
||
private static final String TENANT_ID_ONE = "me"; | ||
private static final String TENANT_ID_TWO = "you"; | ||
|
||
private HashMap<String, String> testPropertiesOne; | ||
private HashMap<String, String> testPropertiesTwo; | ||
|
||
private final TenantDescriptor testSubjectOne = TenantDescriptor.tenantWithId(TENANT_ID_ONE); | ||
private final TenantDescriptor testSubjectTwo = TenantDescriptor.tenantWithId(TENANT_ID_TWO); | ||
private final TenantDescriptor testSubjectThree = new TenantDescriptor(TENANT_ID_ONE, testPropertiesOne); | ||
private final TenantDescriptor testSubjectFour = new TenantDescriptor(TENANT_ID_TWO, testPropertiesTwo); | ||
private final TenantDescriptor testSubjectFive = new TenantDescriptor(TENANT_ID_ONE, testPropertiesTwo); | ||
|
||
@BeforeEach | ||
void setUp() { | ||
testPropertiesOne = new HashMap<>(); | ||
testPropertiesOne.put("key", "value"); | ||
testPropertiesOne.put("key1", "value2"); | ||
testPropertiesTwo = new HashMap<>(); | ||
testPropertiesOne.put("value", "key"); | ||
testPropertiesOne.put("value2", "key1"); | ||
} | ||
|
||
@Test | ||
void equalsOnlyValidatesTenantId() { | ||
// Validate test subject one, only matching on tenant id | ||
assertNotEquals(testSubjectOne, testSubjectTwo); | ||
assertEquals(testSubjectOne, testSubjectThree); | ||
assertNotEquals(testSubjectOne, testSubjectFour); | ||
assertEquals(testSubjectOne, testSubjectFive); | ||
// Validate test subject two, only matching on tenant id | ||
assertNotEquals(testSubjectTwo, testSubjectThree); | ||
assertEquals(testSubjectTwo, testSubjectFour); | ||
assertNotEquals(testSubjectTwo, testSubjectFive); | ||
// Validate test subject three, only matching on tenant id | ||
assertNotEquals(testSubjectThree, testSubjectFour); | ||
assertEquals(testSubjectThree, testSubjectFive); | ||
// Validate test subject four, only matching on tenant id | ||
assertNotEquals(testSubjectFour, testSubjectFive); | ||
} | ||
|
||
@Test | ||
void hashOnlyHashesTenantId() { | ||
// Validate test subject one, only matching on tenant id | ||
assertNotEquals(testSubjectOne.hashCode(), testSubjectTwo.hashCode()); | ||
assertEquals(testSubjectOne.hashCode(), testSubjectThree.hashCode()); | ||
assertNotEquals(testSubjectOne.hashCode(), testSubjectFour.hashCode()); | ||
assertEquals(testSubjectOne.hashCode(), testSubjectFive.hashCode()); | ||
// Validate test subject two, only matching on tenant id | ||
assertNotEquals(testSubjectTwo.hashCode(), testSubjectThree.hashCode()); | ||
assertEquals(testSubjectTwo.hashCode(), testSubjectFour.hashCode()); | ||
assertNotEquals(testSubjectTwo.hashCode(), testSubjectFive.hashCode()); | ||
// Validate test subject three, only matching on tenant id | ||
assertNotEquals(testSubjectThree.hashCode(), testSubjectFour.hashCode()); | ||
assertEquals(testSubjectThree.hashCode(), testSubjectFive.hashCode()); | ||
// Validate test subject four, only matching on tenant id | ||
assertNotEquals(testSubjectFour.hashCode(), testSubjectFive.hashCode()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters