256 lines
7.8 KiB
Java
256 lines
7.8 KiB
Java
package com.mattrixwv.cipherstream.monosubstitution;
|
|
|
|
|
|
import static org.junit.jupiter.api.Assertions.*;
|
|
import static org.mockito.ArgumentMatchers.*;
|
|
import static org.mockito.Mockito.*;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
import org.junit.jupiter.api.extension.ExtendWith;
|
|
import org.mockito.InjectMocks;
|
|
import org.mockito.Mock;
|
|
import org.mockito.junit.jupiter.MockitoExtension;
|
|
import org.slf4j.Logger;
|
|
|
|
import com.mattrixwv.cipherstream.exceptions.InvalidInputException;
|
|
|
|
|
|
@ExtendWith(MockitoExtension.class)
|
|
public class AtbashTest{
|
|
@InjectMocks
|
|
private Atbash cipher;
|
|
@Mock
|
|
private Logger logger;
|
|
//Variables
|
|
private static final String DECODED_STRING = "Message to^encode";
|
|
private static final String DECODED_STRING_CLEAN = "MESSAGETOENCODE";
|
|
private static final String ENCODED_STRING = "Nvhhztv gl^vmxlwv";
|
|
private static final String ENCODED_STRING_CLEAN = "NVHHZTVGLVMXLWV";
|
|
|
|
|
|
@Test
|
|
public void testConstructor_default(){
|
|
cipher = new Atbash();
|
|
|
|
assertFalse(cipher.preserveCapitals);
|
|
assertFalse(cipher.preserveWhitespace);
|
|
assertFalse(cipher.preserveSymbols);
|
|
assertEquals("", cipher.inputString);
|
|
assertEquals("", cipher.outputString);
|
|
}
|
|
|
|
@Test
|
|
public void testConstructor_preservesCapitals(){
|
|
cipher = new Atbash(true, false, false);
|
|
|
|
assertTrue(cipher.preserveCapitals);
|
|
assertFalse(cipher.preserveWhitespace);
|
|
assertFalse(cipher.preserveSymbols);
|
|
assertEquals("", cipher.inputString);
|
|
assertEquals("", cipher.outputString);
|
|
}
|
|
|
|
@Test
|
|
public void testConstructor_preservesWhitespace(){
|
|
cipher = new Atbash(false, true, false);
|
|
|
|
assertFalse(cipher.preserveCapitals);
|
|
assertTrue(cipher.preserveWhitespace);
|
|
assertFalse(cipher.preserveSymbols);
|
|
assertEquals("", cipher.inputString);
|
|
assertEquals("", cipher.outputString);
|
|
}
|
|
|
|
@Test
|
|
public void testConstructor_preservesSymbols(){
|
|
cipher = new Atbash(false, false, true);
|
|
|
|
assertFalse(cipher.preserveCapitals);
|
|
assertFalse(cipher.preserveWhitespace);
|
|
assertTrue(cipher.preserveSymbols);
|
|
assertEquals("", cipher.inputString);
|
|
assertEquals("", cipher.outputString);
|
|
}
|
|
|
|
@Test
|
|
public void testEncode(){
|
|
cipher.inputString = DECODED_STRING;
|
|
|
|
cipher.encode();
|
|
|
|
assertEquals(ENCODED_STRING, cipher.outputString);
|
|
verify(logger, times(1)).debug("Encoding");
|
|
verify(logger, times(17)).debug(eq("Encoding char {}"), anyChar());
|
|
verify(logger, times(1)).debug("Encoding uppercase");
|
|
verify(logger, times(14)).debug("Encoding lowercase");
|
|
verify(logger, times(2)).debug("Appending symbol");
|
|
verify(logger, times(1)).debug("Saving output string '{}'", ENCODED_STRING);
|
|
}
|
|
|
|
@Test
|
|
public void testSetInputString(){
|
|
cipher.preserveCapitals = true;
|
|
cipher.preserveSymbols = true;
|
|
cipher.preserveWhitespace = true;
|
|
|
|
cipher.setInputString(DECODED_STRING);
|
|
|
|
assertEquals(DECODED_STRING, cipher.inputString);
|
|
verify(logger, times(1)).debug("Original input string '{}'", DECODED_STRING);
|
|
verify(logger, never()).debug("Removing case");
|
|
verify(logger, never()).debug("Removing whitespace");
|
|
verify(logger, never()).debug("Removing symbols");
|
|
verify(logger, times(1)).debug("Cleaned input string '{}'", DECODED_STRING);
|
|
}
|
|
|
|
@Test
|
|
public void testSetInputString_noCapitals(){
|
|
cipher.preserveCapitals = false;
|
|
cipher.preserveSymbols = true;
|
|
cipher.preserveWhitespace = true;
|
|
|
|
cipher.setInputString(DECODED_STRING);
|
|
|
|
assertEquals(DECODED_STRING.toUpperCase(), cipher.inputString);
|
|
verify(logger, times(1)).debug("Original input string '{}'", DECODED_STRING);
|
|
verify(logger, times(1)).debug("Removing case");
|
|
verify(logger, never()).debug("Removing whitespace");
|
|
verify(logger, never()).debug("Removing symbols");
|
|
verify(logger, times(1)).debug("Cleaned input string '{}'", DECODED_STRING.toUpperCase());
|
|
}
|
|
|
|
@Test
|
|
public void testSetInputString_noWhitespace(){
|
|
cipher.preserveCapitals = true;
|
|
cipher.preserveSymbols = true;
|
|
cipher.preserveWhitespace = false;
|
|
|
|
cipher.setInputString(DECODED_STRING);
|
|
|
|
assertEquals(DECODED_STRING.replaceAll("\\s", ""), cipher.inputString);
|
|
verify(logger, times(1)).debug("Original input string '{}'", DECODED_STRING);
|
|
verify(logger, never()).debug("Removing case");
|
|
verify(logger, times(1)).debug("Removing whitespace");
|
|
verify(logger, never()).debug("Removing symbols");
|
|
verify(logger, times(1)).debug("Cleaned input string '{}'", DECODED_STRING.replaceAll("\\s", ""));
|
|
}
|
|
|
|
@Test
|
|
public void testSetInputString_noSymbols(){
|
|
cipher.preserveCapitals = true;
|
|
cipher.preserveSymbols = false;
|
|
cipher.preserveWhitespace = true;
|
|
|
|
cipher.setInputString(DECODED_STRING);
|
|
|
|
assertEquals(DECODED_STRING.replaceAll("[^a-zA-Z\\s]", ""), cipher.inputString);
|
|
verify(logger, times(1)).debug("Original input string '{}'", DECODED_STRING);
|
|
verify(logger, never()).debug("Removing case");
|
|
verify(logger, never()).debug("Removing whitespace");
|
|
verify(logger, times(1)).debug("Removing symbols");
|
|
verify(logger, times(1)).debug("Cleaned input string '{}'", DECODED_STRING.replaceAll("[^a-zA-Z\\s]", ""));
|
|
}
|
|
|
|
@Test
|
|
public void testSetInputString_null(){
|
|
cipher.preserveCapitals = true;
|
|
cipher.preserveSymbols = true;
|
|
cipher.preserveWhitespace = true;
|
|
|
|
assertThrows(InvalidInputException.class, () -> {
|
|
cipher.setInputString(null);
|
|
});
|
|
|
|
assertEquals("", cipher.inputString);
|
|
verify(logger, never()).debug(eq("Original input string '{}'"), anyString());
|
|
verify(logger, never()).debug("Removing case");
|
|
verify(logger, never()).debug("Removing whitespace");
|
|
verify(logger, never()).debug("Removing symbols");
|
|
verify(logger, never()).debug(eq("Cleaned input string '{}'"), anyString());
|
|
}
|
|
|
|
@Test
|
|
public void testSetInputString_blank(){
|
|
cipher.preserveCapitals = true;
|
|
cipher.preserveSymbols = true;
|
|
cipher.preserveWhitespace = true;
|
|
cipher.inputString = DECODED_STRING;
|
|
|
|
assertThrows(InvalidInputException.class, () -> {
|
|
cipher.setInputString("");
|
|
});
|
|
|
|
assertEquals("", cipher.inputString);
|
|
verify(logger, times(1)).debug("Original input string '{}'", "");
|
|
verify(logger, never()).debug("Removing case");
|
|
verify(logger, never()).debug("Removing whitespace");
|
|
verify(logger, never()).debug("Removing symbols");
|
|
verify(logger, times(1)).debug("Cleaned input string '{}'", "");
|
|
}
|
|
|
|
@Test
|
|
public void testGetters(){
|
|
cipher.inputString = DECODED_STRING;
|
|
cipher.outputString = ENCODED_STRING;
|
|
|
|
assertEquals(DECODED_STRING, cipher.getInputString());
|
|
assertEquals(ENCODED_STRING, cipher.getOutputString());
|
|
}
|
|
|
|
@Test
|
|
public void testReset(){
|
|
cipher.inputString = DECODED_STRING;
|
|
cipher.outputString = ENCODED_STRING;
|
|
|
|
cipher.reset();
|
|
|
|
assertEquals("", cipher.inputString);
|
|
assertEquals("", cipher.outputString);
|
|
verify(logger, times(1)).debug("Resetting fields");
|
|
}
|
|
|
|
@Test
|
|
public void testPracticalEncoding(){
|
|
cipher = new Atbash(true, true, true);
|
|
|
|
String output = cipher.encode(DECODED_STRING);
|
|
|
|
assertEquals(DECODED_STRING, cipher.inputString);
|
|
assertEquals(ENCODED_STRING, cipher.outputString);
|
|
assertEquals(ENCODED_STRING, output);
|
|
}
|
|
|
|
@Test
|
|
public void testPracticalEncoding_clean(){
|
|
cipher = new Atbash(false, false, false);
|
|
|
|
String output = cipher.encode(DECODED_STRING);
|
|
|
|
assertEquals(DECODED_STRING_CLEAN, cipher.inputString);
|
|
assertEquals(ENCODED_STRING_CLEAN, cipher.outputString);
|
|
assertEquals(ENCODED_STRING_CLEAN, output);
|
|
}
|
|
|
|
@Test
|
|
public void testPracticalDecoding(){
|
|
cipher = new Atbash(true, true, true);
|
|
|
|
String output = cipher.decode(ENCODED_STRING);
|
|
|
|
assertEquals(ENCODED_STRING, cipher.inputString);
|
|
assertEquals(DECODED_STRING, cipher.outputString);
|
|
assertEquals(DECODED_STRING, output);
|
|
}
|
|
|
|
@Test
|
|
public void testPracticalDecoding_clean(){
|
|
cipher = new Atbash(false, false, false);
|
|
|
|
String output = cipher.decode(ENCODED_STRING);
|
|
|
|
assertEquals(ENCODED_STRING_CLEAN, cipher.inputString);
|
|
assertEquals(DECODED_STRING_CLEAN, cipher.outputString);
|
|
assertEquals(DECODED_STRING_CLEAN, output);
|
|
}
|
|
}
|