Add unit test for dismiss notification page
[Sone.git] / src / test / java / net / pterodactylus / sone / web / WebPageTest.java
index 9dff571..2825a20 100644 (file)
@@ -18,6 +18,8 @@ import java.util.Set;
 import net.pterodactylus.sone.core.Core;
 import net.pterodactylus.sone.core.Preferences;
 import net.pterodactylus.sone.core.UpdateChecker;
+import net.pterodactylus.sone.data.Album;
+import net.pterodactylus.sone.data.Image;
 import net.pterodactylus.sone.data.Post;
 import net.pterodactylus.sone.data.Sone;
 import net.pterodactylus.sone.data.SoneOptions.DefaultSoneOptions;
@@ -74,6 +76,8 @@ public abstract class WebPageTest {
                                return "";
                        }
                });
+               when(httpRequest.getParam(anyString())).thenReturn("");
+               when(httpRequest.getParam(anyString(), anyString())).thenReturn("");
        }
 
        @Before
@@ -85,6 +89,9 @@ public abstract class WebPageTest {
                when(core.getLocalSones()).thenReturn(localSones);
                when(core.getSone(anyString())).thenReturn(Optional.<Sone>absent());
                when(core.getPost(anyString())).thenReturn(Optional.<Post>absent());
+               when(core.getAlbum(anyString())).thenReturn(null);
+               when(core.getImage(anyString())).thenReturn(null);
+               when(core.getImage(anyString(), anyBoolean())).thenReturn(null);
        }
 
        @Before
@@ -96,6 +103,7 @@ public abstract class WebPageTest {
        public final void setupWebInterface() {
                when(webInterface.getCurrentSone(toadletContext)).thenReturn(currentSone);
                when(webInterface.getCurrentSone(eq(toadletContext), anyBoolean())).thenReturn(currentSone);
+               when(webInterface.getNotification(anyString())).thenReturn(Optional.<Notification>absent());
                when(webInterface.getNotifications(currentSone)).thenReturn(new ArrayList<Notification>());
        }
 
@@ -126,6 +134,9 @@ public abstract class WebPageTest {
                                return value.substring(0, Math.min(maxLength, value.length()));
                        }
                });
+               when(httpRequest.getParam(eq(name))).thenReturn(value);
+               when(httpRequest.getParam(eq(name), anyString())).thenReturn(value);
+               when(httpRequest.isPartSet(eq(name))).thenReturn(value != null && !value.isEmpty());
        }
 
        protected void addPost(String postId, Post post) {
@@ -145,4 +156,17 @@ public abstract class WebPageTest {
                ownIdentities.add(ownIdentity);
        }
 
+       protected void addAlbum(String albumId, Album album) {
+               when(core.getAlbum(eq(albumId))).thenReturn(album);
+       }
+
+       protected void addImage(String imageId, Image image) {
+               when(core.getImage(eq(imageId))).thenReturn(image);
+               when(core.getImage(eq(imageId), anyBoolean())).thenReturn(image);
+       }
+
+       protected void addNotification(String notificationId, Notification notification) {
+               when(webInterface.getNotification(eq(notificationId))).thenReturn(Optional.of(notification));
+       }
+
 }