-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. Bumped JDK to 17 2. Bumped data-faker to 2.1.x from 1.6.x 3. Bumped validation framework to jakarta from javax + other 3PP Version bump.
- Loading branch information
Showing
20 changed files
with
81 additions
and
63 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,13 +72,13 @@ static Object[][] generateSeededRandomizersAndTheirExpectedValues() { | |
{ new CityRandomizer(SEED), "Breannaberg" }, | ||
{ new CompanyRandomizer(SEED), "Hegmann, Hansen and Mills" }, | ||
{ new CountryRandomizer(SEED), "Peru" }, | ||
{ new CreditCardNumberRandomizer(SEED), "1211-1221-1234-2201" }, | ||
{ new CreditCardNumberRandomizer(SEED), "6762-0695-7475-3962" }, | ||
{ new EmailRandomizer(SEED), "[email protected]" }, | ||
{ new FirstNameRandomizer(SEED), "Jacob" }, | ||
{ new FullNameRandomizer(SEED), "Breanna Mills" }, | ||
{ new Ipv4AddressRandomizer(SEED), "16.188.76.229" }, | ||
{ new Ipv6AddressRandomizer(SEED), "b3f4:4994:c9e8:b21a:c493:e923:f711:1115" }, | ||
{ new IsbnRandomizer(SEED), "9781786075390" }, | ||
{ new Ipv6AddressRandomizer(SEED), "d119:54cc:1cbd:a03d:6170:26a2:57ab:af62" }, | ||
{ new IsbnRandomizer(SEED), "9790893392719" }, | ||
{ new LastNameRandomizer(SEED), "Durgan" }, | ||
{ new LatitudeRandomizer(SEED), "40.17135654" }, | ||
{ new LongitudeRandomizer(SEED), "80.34271308" }, | ||
|
@@ -87,13 +87,13 @@ static Object[][] generateSeededRandomizersAndTheirExpectedValues() { | |
new ParagraphRandomizer(SEED), | ||
"Totam assumenda eius autem similique. Aut voluptatem enim praesentium. Suscipit cupiditate doloribus debitis dolor. Cumque sapiente occaecati. Quos maiores quae.", | ||
}, | ||
{ new PhoneNumberRandomizer(SEED), "1-352-773-9574" }, | ||
{ new PhoneNumberRandomizer(SEED), "(352) 773-9574 x7539" }, | ||
{ new RegularExpressionRandomizer("\\d+[A-Z]{5}", SEED), "8UYSMT" }, | ||
{ new SentenceRandomizer(SEED), "Dolor totam assumenda eius autem." }, | ||
{ new StateRandomizer(SEED), "North Carolina" }, | ||
{ new StreetRandomizer(SEED), "Hegmann Locks" }, | ||
{ new WordRandomizer(SEED), "repellat" }, | ||
{ new ZipCodeRandomizer(SEED), "06957" }, | ||
{ new ZipCodeRandomizer(SEED), "20695" }, | ||
}; | ||
} | ||
|
||
|
@@ -108,16 +108,16 @@ void shouldGenerateTheSameValueForTheSameSeed(Randomizer<?> randomizer, Object e | |
|
||
static Object[][] generateSeededRandomizersWithLocaleAndTheirExpectedValues() { | ||
return new Object[][] { | ||
{ new CityRandomizer(SEED, LOCALE), "Versailles" }, | ||
{ new CityRandomizer(SEED, LOCALE), "Neuilly-sur-Seine" }, | ||
{ new CompanyRandomizer(SEED, LOCALE), "Masson et Lambert" }, | ||
{ new CountryRandomizer(SEED, LOCALE), "Peru" }, | ||
{ new CreditCardNumberRandomizer(SEED, LOCALE), "1211-1221-1234-2201" }, | ||
{ new CreditCardNumberRandomizer(SEED, LOCALE), "6762-0695-7475-3962" }, | ||
{ new EmailRandomizer(SEED, LOCALE), "[email protected]" }, | ||
{ new FirstNameRandomizer(SEED, LOCALE), "Alice" }, | ||
{ new FullNameRandomizer(SEED, LOCALE), "Masson Emilie" }, | ||
{ new Ipv4AddressRandomizer(SEED, LOCALE), "16.188.76.229" }, | ||
{ new Ipv6AddressRandomizer(SEED, LOCALE), "b3f4:4994:c9e8:b21a:c493:e923:f711:1115" }, | ||
{ new IsbnRandomizer(SEED, LOCALE), "9781786075390" }, | ||
{ new Ipv6AddressRandomizer(SEED, LOCALE), "d119:54cc:1cbd:a03d:6170:26a2:57ab:af62" }, | ||
{ new IsbnRandomizer(SEED, LOCALE), "9790893392719" }, | ||
{ new LastNameRandomizer(SEED, LOCALE), "Faure" }, | ||
{ new LatitudeRandomizer(SEED, LOCALE), "40,17135654" }, // should really be "40.171357", seems like a bug in java-faker | ||
{ new LongitudeRandomizer(SEED, LOCALE), "80,34271308" }, // should really be "80.342713", seems like a bug in java-faker | ||
|
@@ -129,9 +129,9 @@ static Object[][] generateSeededRandomizersWithLocaleAndTheirExpectedValues() { | |
{ new PhoneNumberRandomizer(SEED, LOCALE), "03 06 95 74 75" }, | ||
{ new SentenceRandomizer(SEED, LOCALE), "Dolor totam assumenda eius autem." }, | ||
{ new StateRandomizer(SEED, LOCALE), "Lorraine" }, | ||
{ new StreetRandomizer(SEED, LOCALE), "Rue de Presbourg" }, | ||
{ new StreetRandomizer(SEED, LOCALE), "Passage des Francs-Bourgeois" }, | ||
{ new WordRandomizer(SEED, LOCALE), "repellat" }, | ||
{ new ZipCodeRandomizer(SEED, LOCALE), "06957" }, | ||
{ new ZipCodeRandomizer(SEED, LOCALE), "20695" }, | ||
}; | ||
} | ||
|
||
|
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,4 @@ | ||
jdk: | ||
- openjdk17 | ||
install: | ||
- mvn install -Dmaven.javadoc.skip=true -DskipTests |
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