Use different method to create a local Sone.
[Sone.git] / src / test / java / net / pterodactylus / sone / data / impl / AbstractSoneBuilderTest.java
index b2d86dd..927148f 100644 (file)
@@ -2,6 +2,8 @@ package net.pterodactylus.sone.data.impl;
 
 import static org.mockito.Mockito.mock;
 
+import net.pterodactylus.sone.data.Client;
+import net.pterodactylus.sone.data.LocalSone;
 import net.pterodactylus.sone.data.Sone;
 import net.pterodactylus.sone.freenet.wot.Identity;
 import net.pterodactylus.sone.freenet.wot.OwnIdentity;
@@ -21,34 +23,65 @@ public class AbstractSoneBuilderTest {
                        validate();
                        return null;
                }
+
+               @Override
+               public LocalSone buildLocal() throws IllegalStateException {
+                       validateLocal();
+                       return null;
+               }
        };
+       private final Client client = new Client("Test Client", "1.0");
 
        @Test
        public void localSoneIsValidated() {
                Identity ownIdentity = mock(OwnIdentity.class);
-               soneBuilder.local().from(ownIdentity).build();
+               soneBuilder.from(ownIdentity).lastUpdated(1).using(client).buildLocal();
        }
 
        @Test(expected = IllegalStateException.class)
        public void localSoneIsNotValidatedIfIdentityIsNotAnOwnIdentity() {
                Identity identity = mock(Identity.class);
-               soneBuilder.local().from(identity).build();
+               soneBuilder.from(identity).lastUpdated(1).using(client).buildLocal();
        }
 
        @Test(expected = IllegalStateException.class)
        public void localSoneIsNotValidatedIfIdentityIsNull() {
-               soneBuilder.local().build();
+               soneBuilder.lastUpdated(1).using(client).buildLocal();
        }
 
        @Test
-       public void removeSoneIsValidate() {
+       public void remoteSoneIsValidated() {
                Identity identity = mock(Identity.class);
-               soneBuilder.from(identity).build();
+               soneBuilder.from(identity).lastUpdated(1).using(client).build();
        }
 
        @Test(expected = IllegalStateException.class)
        public void remoteSoneIsNotValidatedIfIdentityIsNull() {
-               soneBuilder.build();
+               soneBuilder.lastUpdated(1).using(client).build();
+       }
+
+       @Test(expected = IllegalStateException.class)
+       public void localSoneIsNotValidatedWithoutUpdateTime() {
+               Identity identity = mock(OwnIdentity.class);
+               soneBuilder.from(identity).using(client).buildLocal();
+       }
+
+       @Test(expected = IllegalStateException.class)
+       public void remoteSoneIsNotValidatedWithoutUpdateTime() {
+               Identity identity = mock(Identity.class);
+               soneBuilder.from(identity).using(client).build();
+       }
+
+       @Test(expected = IllegalStateException.class)
+       public void localSoneIsNotValidatedWithoutClient() {
+               Identity identity = mock(OwnIdentity.class);
+               soneBuilder.from(identity).lastUpdated(1L).buildLocal();
+       }
+
+       @Test(expected = IllegalStateException.class)
+       public void remoteSoneIsNotValidatedWithoutClient() {
+               Identity identity = mock(Identity.class);
+               soneBuilder.from(identity).lastUpdated(1L).build();
        }
 
 }