1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-10-18 20:25:59 +02:00

Merge pull request #593 from guusdk/sinttest_specref-normalization-dash

[sinttest] Normalization of SpecificationReference to include dash-seperator
This commit is contained in:
Florian Schmaus 2024-06-01 09:35:30 +00:00 committed by GitHub
commit 0db1c7a988
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 99 additions and 1 deletions

View file

@ -773,6 +773,6 @@ public final class Configuration {
if (specification == null || specification.isBlank()) { if (specification == null || specification.isBlank()) {
return null; return null;
} }
return specification.replaceAll("\\s", "").toUpperCase(); return specification.replaceAll("[\\s-]", "").toUpperCase();
} }
} }

View file

@ -0,0 +1,98 @@
/**
*
* Copyright 2024 Guus der Kinderen
*
* 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.igniterealtime.smack.inttest;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
/**
* Verifies the functionality that's implemented in {@link Configuration}.
*/
public class ConfigurationTest {
@Test
public void testNormalizeXepUpperCaseNoSeperator() {
// Setup test fixture.
final String input = "XEP0001";
// Execute system under test.
final String output = Configuration.normalizeSpecification(input);
// Verify results.
assertEquals("XEP0001", output);
}
@Test
public void testNormalizeXepLowerCaseNoSeperator() {
// Setup test fixture.
final String input = "xep0001";
// Execute system under test.
final String output = Configuration.normalizeSpecification(input);
// Verify results.
assertEquals("XEP0001", output);
}
@Test
public void testNormalizeXepUpperCaseDash() {
// Setup test fixture.
final String input = "XEP-0001";
// Execute system under test.
final String output = Configuration.normalizeSpecification(input);
// Verify results.
assertEquals("XEP0001", output);
}
@Test
public void testNormalizeXepLowerCaseDash() {
// Setup test fixture.
final String input = "xep-0001";
// Execute system under test.
final String output = Configuration.normalizeSpecification(input);
// Verify results.
assertEquals("XEP0001", output);
}
@Test
public void testNormalizeXepUpperCaseSpace() {
// Setup test fixture.
final String input = "XEP 0001";
// Execute system under test.
final String output = Configuration.normalizeSpecification(input);
// Verify results.
assertEquals("XEP0001", output);
}
@Test
public void testNormalizeXepLowerCaseSpace() {
// Setup test fixture.
final String input = "xep 0001";
// Execute system under test.
final String output = Configuration.normalizeSpecification(input);
// Verify results.
assertEquals("XEP0001", output);
}
}