Some comments in code
This commit is contained in:
parent
212a881f8e
commit
088d557a07
4 changed files with 31 additions and 2 deletions
|
@ -2,6 +2,7 @@ package eu.ztsh.training.hackerrank;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Scanner;
|
import java.util.Scanner;
|
||||||
|
|
||||||
import eu.ztsh.training.hackerrank.SolutionClassDescription.FieldModifier;
|
import eu.ztsh.training.hackerrank.SolutionClassDescription.FieldModifier;
|
||||||
import org.junit.jupiter.api.Disabled;
|
import org.junit.jupiter.api.Disabled;
|
||||||
import org.junit.jupiter.api.DisplayName;
|
import org.junit.jupiter.api.DisplayName;
|
||||||
|
|
|
@ -7,13 +7,18 @@ import java.io.PrintStream;
|
||||||
import java.lang.reflect.InvocationTargetException;
|
import java.lang.reflect.InvocationTargetException;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import org.junit.jupiter.api.AfterAll;
|
import org.junit.jupiter.api.AfterAll;
|
||||||
import org.junit.jupiter.api.BeforeAll;
|
import org.junit.jupiter.api.BeforeAll;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Common class with all the necessary logic
|
||||||
|
*/
|
||||||
public abstract class HackerRankTest {
|
public abstract class HackerRankTest {
|
||||||
|
|
||||||
@BeforeAll
|
@BeforeAll
|
||||||
public static void setUpStreams() {
|
public static void setUpStreams() {
|
||||||
|
// Redirect stdout & stderr to own streams
|
||||||
System.setOut(new PrintStream(outContent));
|
System.setOut(new PrintStream(outContent));
|
||||||
System.setErr(new PrintStream(errContent));
|
System.setErr(new PrintStream(errContent));
|
||||||
}
|
}
|
||||||
|
@ -27,14 +32,19 @@ public abstract class HackerRankTest {
|
||||||
|
|
||||||
protected List<String> invoke(List<String> input) {
|
protected List<String> invoke(List<String> input) {
|
||||||
try {
|
try {
|
||||||
|
// reset our stdout as check is based on it
|
||||||
outContent.reset();
|
outContent.reset();
|
||||||
|
// write content to args of Solution#main
|
||||||
writeLines(input);
|
writeLines(input);
|
||||||
|
// check if scanner has other name than "scanner"
|
||||||
if (getSolutionClassDescription().fieldName() != null) {
|
if (getSolutionClassDescription().fieldName() != null) {
|
||||||
ReflectionHelper.reloadScanner(getSolutionClassDescription());
|
ReflectionHelper.reloadScanner(getSolutionClassDescription());
|
||||||
}
|
}
|
||||||
|
// run Solution#main
|
||||||
getSolutionClassDescription().targetClass()
|
getSolutionClassDescription().targetClass()
|
||||||
.getMethod("main", String[].class)
|
.getMethod("main", String[].class)
|
||||||
.invoke(null, (Object) new String[]{});
|
.invoke(null, (Object) new String[]{});
|
||||||
|
// return intercepted output
|
||||||
return readLines();
|
return readLines();
|
||||||
} catch (final NoSuchMethodException | InvocationTargetException | IllegalAccessException |
|
} catch (final NoSuchMethodException | InvocationTargetException | IllegalAccessException |
|
||||||
NoSuchFieldException e) {
|
NoSuchFieldException e) {
|
||||||
|
|
|
@ -5,9 +5,12 @@ import java.lang.invoke.VarHandle;
|
||||||
import java.lang.reflect.Field;
|
import java.lang.reflect.Field;
|
||||||
import java.lang.reflect.Modifier;
|
import java.lang.reflect.Modifier;
|
||||||
import java.util.Scanner;
|
import java.util.Scanner;
|
||||||
|
|
||||||
import eu.ztsh.training.hackerrank.SolutionClassDescription.FieldModifier;
|
import eu.ztsh.training.hackerrank.SolutionClassDescription.FieldModifier;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Util that helps with scanner declared outside Solution#main
|
||||||
|
*/
|
||||||
public class ReflectionHelper {
|
public class ReflectionHelper {
|
||||||
|
|
||||||
// https://stackoverflow.com/a/56043252
|
// https://stackoverflow.com/a/56043252
|
||||||
|
@ -21,7 +24,15 @@ public class ReflectionHelper {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void reloadScanner(SolutionClassDescription description) throws NoSuchFieldException, IllegalAccessException {
|
/**
|
||||||
|
* Modify scanner field to substitute it with custom readable one
|
||||||
|
*
|
||||||
|
* @param description Solution class parameters
|
||||||
|
* @throws NoSuchFieldException when there description.fieldName points to incorrect name
|
||||||
|
* @throws IllegalAccessException on scanner substitution error
|
||||||
|
*/
|
||||||
|
static void reloadScanner(SolutionClassDescription description)
|
||||||
|
throws NoSuchFieldException, IllegalAccessException {
|
||||||
// https://stackoverflow.com/a/3301720
|
// https://stackoverflow.com/a/3301720
|
||||||
var scannerField = description.hasModifier(FieldModifier.STATIC)
|
var scannerField = description.hasModifier(FieldModifier.STATIC)
|
||||||
? description.targetClass().getDeclaredField(description.fieldName())
|
? description.targetClass().getDeclaredField(description.fieldName())
|
||||||
|
|
|
@ -2,6 +2,13 @@ package eu.ztsh.training.hackerrank;
|
||||||
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Solution params definition
|
||||||
|
*
|
||||||
|
* @param targetClass Solution
|
||||||
|
* @param fieldName scanner field name
|
||||||
|
* @param modifiers scanner field modifiers
|
||||||
|
*/
|
||||||
public record SolutionClassDescription(Class<?> targetClass, String fieldName, FieldModifier[] modifiers) {
|
public record SolutionClassDescription(Class<?> targetClass, String fieldName, FieldModifier[] modifiers) {
|
||||||
|
|
||||||
SolutionClassDescription(Class<?> targetClass) {
|
SolutionClassDescription(Class<?> targetClass) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue