Mock posts with a mocker, too.
[Sone.git] / src / test / java / net / pterodactylus / sone / text / SoneTextParserTest.java
index e1857a0..34767b5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - SoneTextParserTest.java - Copyright © 2011–2012 David Roden
+ * Sone - SoneTextParserTest.java - Copyright © 2011–2013 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -21,9 +21,9 @@ import java.io.IOException;
 import java.io.StringReader;
 import java.util.Arrays;
 
+import net.pterodactylus.sone.database.memory.MemoryDatabase;
+
 import junit.framework.TestCase;
-import net.pterodactylus.sone.core.SoneProvider;
-import net.pterodactylus.sone.data.Sone;
 
 /**
  * JUnit test case for {@link SoneTextParser}.
@@ -44,7 +44,7 @@ public class SoneTextParserTest extends TestCase {
         */
        @SuppressWarnings("static-method")
        public void testPlainText() throws IOException {
-               SoneTextParser soneTextParser = new SoneTextParser(null, null);
+               SoneTextParser soneTextParser = new SoneTextParser(new MemoryDatabase(null));
                Iterable<Part> parts;
 
                /* check basic operation. */
@@ -71,7 +71,7 @@ public class SoneTextParserTest extends TestCase {
         */
        @SuppressWarnings("static-method")
        public void testKSKLinks() throws IOException {
-               SoneTextParser soneTextParser = new SoneTextParser(null, null);
+               SoneTextParser soneTextParser = new SoneTextParser(new MemoryDatabase(null));
                Iterable<Part> parts;
 
                /* check basic links. */
@@ -98,7 +98,7 @@ public class SoneTextParserTest extends TestCase {
         */
        @SuppressWarnings({ "synthetic-access", "static-method" })
        public void testEmptyLinesAndSoneLinks() throws IOException {
-               SoneTextParser soneTextParser = new SoneTextParser(new TestSoneProvider(), null);
+               SoneTextParser soneTextParser = new SoneTextParser(new MemoryDatabase(null));
                Iterable<Part> parts;
 
                /* check basic links. */
@@ -116,7 +116,7 @@ public class SoneTextParserTest extends TestCase {
         */
        @SuppressWarnings({ "synthetic-access", "static-method" })
        public void testEmpyHttpLinks() throws IOException {
-               SoneTextParser soneTextParser = new SoneTextParser(new TestSoneProvider(), null);
+               SoneTextParser soneTextParser = new SoneTextParser(new MemoryDatabase(null));
                Iterable<Part> parts;
 
                /* check empty http links. */
@@ -170,30 +170,4 @@ public class SoneTextParserTest extends TestCase {
                return text.toString();
        }
 
-       /**
-        * Mock Sone provider.
-        *
-        * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
-        */
-       private static class TestSoneProvider implements SoneProvider {
-
-               /**
-                * {@inheritDoc}
-                */
-               @Override
-               public Sone getSone(final String soneId, boolean create) {
-                       return new Sone(soneId) {
-
-                               /**
-                                * {@inheritDoc}
-                                */
-                               @Override
-                               public String getName() {
-                                       return soneId;
-                               }
-                       };
-               }
-
-       }
-
 }