X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Ftest%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2Fimpl%2FAbstractSoneBuilderTest.java;h=927148fadb8d64790366cbcbea6a84e7ccbeee4e;hb=f8672b1385173a103d7f085d8e9cd43bc5762d71;hp=b2d86dde207aee8397dd583244de618386f274ff;hpb=210684b4bc499e298a0d0abeddd4008cdeb406bc;p=Sone.git diff --git a/src/test/java/net/pterodactylus/sone/data/impl/AbstractSoneBuilderTest.java b/src/test/java/net/pterodactylus/sone/data/impl/AbstractSoneBuilderTest.java index b2d86dd..927148f 100644 --- a/src/test/java/net/pterodactylus/sone/data/impl/AbstractSoneBuilderTest.java +++ b/src/test/java/net/pterodactylus/sone/data/impl/AbstractSoneBuilderTest.java @@ -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(); } }