-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add unit test, stress test commented
- Loading branch information
1 parent
170dace
commit 249e14e
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
62 changes: 62 additions & 0 deletions
62
...na-jta/runtime/src/test/java/io/quarkus/narayana/jta/runtime/NarayanaJtaRecorderTest.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,62 @@ | ||
package io.quarkus.narayana.jta.runtime; | ||
|
||
import static org.junit.jupiter.api.Assertions.fail; | ||
|
||
import java.nio.charset.StandardCharsets; | ||
import java.util.SortedSet; | ||
import java.util.TreeSet; | ||
import java.util.UUID; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
public class NarayanaJtaRecorderTest { | ||
|
||
@Test | ||
void testByteLength() { | ||
|
||
TransactionManagerConfiguration transactions = new TransactionManagerConfiguration(); | ||
transactions.shortenNodeNameIfNecessary = true; | ||
// create nodeNames larger than 28 bytes | ||
for (int i = 1; i < 100; i++) { | ||
String originalNodeName = UUID.randomUUID().toString(); | ||
NarayanaJtaRecorder r = new NarayanaJtaRecorder(); | ||
transactions.nodeName = originalNodeName; | ||
r.setNodeName(transactions); | ||
int numberOfBytes = transactions.nodeName.getBytes(StandardCharsets.UTF_8).length; | ||
if (numberOfBytes > 28) { | ||
fail("node name bytes still exceeded 28 bytes limit, number of bytes is " + numberOfBytes); | ||
} | ||
} | ||
// for (int i = 1; i < 20000; i++) { | ||
for (int i = 1; i < 2000; i++) { | ||
byte[] data = new byte[i]; | ||
NarayanaJtaRecorder r = new NarayanaJtaRecorder(); | ||
transactions.nodeName = new String(data); | ||
r.setNodeName(transactions); | ||
int numberOfBytes = transactions.nodeName.getBytes(StandardCharsets.UTF_8).length; | ||
if (numberOfBytes > 28) { | ||
fail("node name bytes still exceeded 28 bytes limit, number of bytes is " + numberOfBytes); | ||
} | ||
} | ||
} | ||
|
||
//commented because it is a stress test | ||
// @Test | ||
void testCollision() { | ||
SortedSet<String> set = new TreeSet<>(); | ||
TransactionManagerConfiguration transactions = new TransactionManagerConfiguration(); | ||
transactions.shortenNodeNameIfNecessary = true; | ||
// create a nodeName larger than 28 bytes | ||
for (int i = 1; i < 1000000; i++) { | ||
String originalNodeName = UUID.randomUUID().toString(); | ||
NarayanaJtaRecorder r = new NarayanaJtaRecorder(); | ||
transactions.nodeName = originalNodeName; | ||
r.setNodeName(transactions); | ||
if (set.contains(transactions.nodeName)) { | ||
fail("Collision of IDs for " + transactions.nodeName); | ||
} | ||
set.add(transactions.nodeName); | ||
} | ||
} | ||
|
||
} |