aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorClyhtsuriva <aimeric@adjutor.xyz>2021-06-26 22:07:53 +0200
committerClyhtsuriva <aimeric@adjutor.xyz>2021-06-26 22:07:53 +0200
commit67ed18fe86ddfabe5f6c6c270273597799722a72 (patch)
tree79de50772e18722f57813b234dd541b1c701aa01 /src
parent5d167b38848c3f69bbcfd952272ac39e48a9af93 (diff)
Tests are ok fully covered.
Diffstat (limited to 'src')
-rw-r--r--src/main/java/musichub/util/LogHandler.java12
-rw-r--r--src/test/java/musichub/util/LogHandlerTest.java41
2 files changed, 53 insertions, 0 deletions
diff --git a/src/main/java/musichub/util/LogHandler.java b/src/main/java/musichub/util/LogHandler.java
index f6522f5..988b149 100644
--- a/src/main/java/musichub/util/LogHandler.java
+++ b/src/main/java/musichub/util/LogHandler.java
@@ -26,6 +26,13 @@ public final class LogHandler {
throw new AssertionError("You just can't instantiate this class.");
}
+ /**
+ * Method that writes a log message to spoteezer.log
+ *
+ * @param msg the message to write
+ * @param type the type of log
+ * @throws IOException if the file's not there
+ */
public static void write(String msg, String type) throws IOException {
Timestamp timestamp = new Timestamp(System.currentTimeMillis());
@@ -42,6 +49,11 @@ public final class LogHandler {
}
+ /**
+ * Method that prints the content of spoteezer.log
+ *
+ * @throws IOException if the file's not there
+ */
public static void read() throws IOException {
Path fileName = Path.of("log/spoteezer.log");
diff --git a/src/test/java/musichub/util/LogHandlerTest.java b/src/test/java/musichub/util/LogHandlerTest.java
new file mode 100644
index 0000000..17b47f6
--- /dev/null
+++ b/src/test/java/musichub/util/LogHandlerTest.java
@@ -0,0 +1,41 @@
+package musichub.util;
+
+
+import org.junit.jupiter.api.Test;
+
+import java.io.IOException;
+
+import static musichub.util.LogHandler.read;
+import static musichub.util.LogHandler.write;
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertTrue;
+
+public class LogHandlerTest {
+ @Test
+ void testWrite() {
+ try {
+ write("JUnit test", "INFO");
+ } catch (IOException e) {
+ e.printStackTrace();
+ }
+ }
+
+ @Test
+ void testRead() {
+ try {
+ read();
+ } catch (IOException e) {
+ e.printStackTrace();
+ }
+ }
+
+ @Test
+ void testLogHandlerClass() {
+ try {
+ LogHandler logHandlerClass = new LogHandler();
+ } catch (Error ex) {
+ assertTrue(ex instanceof AssertionError);
+ assertEquals("You just can't instantiate this class.", ex.getMessage());
+ }
+ }
+}