-
-
Notifications
You must be signed in to change notification settings - Fork 701
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Stefano Cordio <stefano.cordio@gmail.com>
- Loading branch information
1 parent
bce5cfd
commit 5fc69d0
Showing
10 changed files
with
231 additions
and
14 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
35 changes: 35 additions & 0 deletions
35
src/main/java/org/assertj/core/error/ShouldBeMixedCase.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,35 @@ | ||
/* | ||
* 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. | ||
* | ||
* Copyright 2012-2021 the original author or authors. | ||
*/ | ||
package org.assertj.core.error; | ||
|
||
/** | ||
* Creates an error message that indicates an assertion that verifies that a {@code CharSequence} is mixed case failed. | ||
* | ||
* @author Andrey Kuzmin | ||
*/ | ||
public class ShouldBeMixedCase extends BasicErrorMessageFactory { | ||
|
||
/** | ||
* Creates a new <code>{@link ShouldBeMixedCase}</code>. | ||
* @param actual the actual value in the failed assertion. | ||
* @return the created {@code ErrorMessageFactory}. | ||
*/ | ||
public static ErrorMessageFactory shouldBeMixedCase(CharSequence actual) { | ||
return new ShouldBeMixedCase(actual); | ||
} | ||
|
||
private ShouldBeMixedCase(CharSequence actual) { | ||
super("%nExpecting %s to be mixed case", actual); | ||
} | ||
|
||
} |
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
32 changes: 32 additions & 0 deletions
32
src/test/java/org/assertj/core/api/charsequence/CharSequenceAssert_isMixedCase_Test.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,32 @@ | ||
/* | ||
* 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. | ||
* | ||
* Copyright 2012-2021 the original author or authors. | ||
*/ | ||
package org.assertj.core.api.charsequence; | ||
|
||
import static org.mockito.Mockito.verify; | ||
|
||
import org.assertj.core.api.CharSequenceAssert; | ||
import org.assertj.core.api.CharSequenceAssertBaseTest; | ||
|
||
class CharSequenceAssert_isMixedCase_Test extends CharSequenceAssertBaseTest { | ||
|
||
@Override | ||
protected CharSequenceAssert invoke_api_method() { | ||
return assertions.isMixedCase(); | ||
} | ||
|
||
@Override | ||
protected void verify_internal_effects() { | ||
verify(strings).assertMixedCase(getInfo(assertions), getActual(assertions)); | ||
} | ||
|
||
} |
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
33 changes: 33 additions & 0 deletions
33
src/test/java/org/assertj/core/error/ShouldBeMixedCase_create_Test.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,33 @@ | ||
/* | ||
* 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. | ||
* | ||
* Copyright 2012-2021 the original author or authors. | ||
*/ | ||
package org.assertj.core.error; | ||
|
||
import static java.lang.String.format; | ||
import static org.assertj.core.api.BDDAssertions.then; | ||
import static org.assertj.core.error.ShouldBeMixedCase.shouldBeMixedCase; | ||
import static org.assertj.core.presentation.StandardRepresentation.STANDARD_REPRESENTATION; | ||
|
||
import org.assertj.core.description.TextDescription; | ||
import org.junit.jupiter.api.Test; | ||
|
||
class ShouldBeMixedCase_create_Test { | ||
|
||
@Test | ||
void should_create_error_message() { | ||
// WHEN | ||
String message = shouldBeMixedCase("ABC").create(new TextDescription("Test"), STANDARD_REPRESENTATION); | ||
// THEN | ||
then(message).isEqualTo(format("[Test] %nExpecting \"ABC\" to be mixed case")); | ||
} | ||
|
||
} |
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
76 changes: 76 additions & 0 deletions
76
src/test/java/org/assertj/core/internal/strings/Strings_assertIsMixedCase_Test.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,76 @@ | ||
/* | ||
* 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. | ||
* | ||
* Copyright 2012-2021 the original author or authors. | ||
*/ | ||
package org.assertj.core.internal.strings; | ||
|
||
import static org.assertj.core.api.BDDAssertions.then; | ||
import static org.assertj.core.error.ShouldBeMixedCase.shouldBeMixedCase; | ||
import static org.assertj.core.error.ShouldNotBeNull.shouldNotBeNull; | ||
import static org.assertj.core.test.TestData.someInfo; | ||
import static org.assertj.core.util.AssertionsUtil.expectAssertionError; | ||
|
||
import org.assertj.core.internal.StringsBaseTest; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.params.ParameterizedTest; | ||
import org.junit.jupiter.params.provider.ValueSource; | ||
|
||
/** | ||
* @author Andrey Kuzmin | ||
*/ | ||
class Strings_assertIsMixedCase_Test extends StringsBaseTest { | ||
|
||
@Test | ||
void should_fail_if_actual_is_null() { | ||
// WHEN | ||
AssertionError assertionError = expectAssertionError(() -> strings.assertMixedCase(someInfo(), null)); | ||
// THEN | ||
then(assertionError).hasMessage(shouldNotBeNull().create()); | ||
} | ||
|
||
@ParameterizedTest | ||
@ValueSource(strings = { | ||
"I AM GROOT!", | ||
"P", | ||
}) | ||
void should_fail_if_actual_is_uppercase(CharSequence actual) { | ||
// WHEN | ||
AssertionError assertionError = expectAssertionError(() -> strings.assertMixedCase(someInfo(), actual)); | ||
// THEN | ||
then(assertionError).hasMessage(shouldBeMixedCase(actual).create()); | ||
} | ||
|
||
@ParameterizedTest | ||
@ValueSource(strings = { | ||
"please be quiet", | ||
"p", | ||
}) | ||
void should_fail_if_actual_is_lowercase(CharSequence actual) { | ||
// WHEN | ||
AssertionError assertionError = expectAssertionError(() -> strings.assertMixedCase(someInfo(), actual)); | ||
// THEN | ||
then(assertionError).hasMessage(shouldBeMixedCase(actual).create()); | ||
} | ||
|
||
@ParameterizedTest | ||
@ValueSource(strings = { | ||
"", | ||
" ", | ||
"anExampleOfCamelCaseString", | ||
"anEx4mpl3OfC4m3lC4s3Str1ng!", // with numbers and special characters | ||
"@$#24^", // only numbers and special characters | ||
}) | ||
void should_pass_if_actual_is_mixed_case(CharSequence actual) { | ||
// WHEN/THEN | ||
strings.assertMixedCase(someInfo(), actual); | ||
} | ||
|
||
} |
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