From: David ‘Bombe’ Roden Date: Fri, 25 Oct 2013 23:06:19 +0000 (+0200) Subject: Add tests for parsing mandatory local Sones. X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=5680eb94d4545c38e2f6bb6e9fd903838459ee56;p=Sone.git Add tests for parsing mandatory local Sones. --- diff --git a/src/test/java/net/pterodactylus/sone/fcp/AbstractSoneCommandTest.java b/src/test/java/net/pterodactylus/sone/fcp/AbstractSoneCommandTest.java index 7f1c08f..cfaf660 100644 --- a/src/test/java/net/pterodactylus/sone/fcp/AbstractSoneCommandTest.java +++ b/src/test/java/net/pterodactylus/sone/fcp/AbstractSoneCommandTest.java @@ -172,6 +172,16 @@ public class AbstractSoneCommandTest { return sone; } + private Sone createLocalSone(String id, String name, String firstName, String middleName, String lastName, long time) { + Sone sone = mock(Sone.class); + when(sone.getId()).thenReturn(id); + when(sone.getName()).thenReturn(name); + when(sone.getProfile()).thenReturn(prepareProfile(sone, firstName, middleName, lastName)); + when(sone.getTime()).thenReturn(time); + when(sone.isLocal()).thenReturn(true); + return sone; + } + private Profile prepareProfile(Sone sone, String firstName, String middleName, String lastName) { Profile profile = new Profile(sone).modify().setFirstName(firstName).setMiddleName(middleName).setLastName(lastName).update(); profile.setField(profile.addField("Test1"), "Value1"); @@ -252,4 +262,30 @@ public class AbstractSoneCommandTest { abstractSoneCommand.getMandatorySone(soneFieldSet, "RealSone"); } + @Test + public void testParsingAMandatoryLocalSone() throws FcpException { + Sone sone = createLocalSone("jXH8d-eFdm14R69WyaCgQoSjaY0jl-Ut6etlXjK0e6E", "Test", "First", "M.", "Last", (long) (Math.random() * Long.MAX_VALUE)); + when(core.getSone(eq("jXH8d-eFdm14R69WyaCgQoSjaY0jl-Ut6etlXjK0e6E"))).thenReturn(of(sone)); + SimpleFieldSet soneFieldSet = new SimpleFieldSetBuilder().put("Sone", "jXH8d-eFdm14R69WyaCgQoSjaY0jl-Ut6etlXjK0e6E").get(); + Sone parsedSone = abstractSoneCommand.getMandatoryLocalSone(soneFieldSet, "Sone"); + assertThat(parsedSone, notNullValue()); + assertThat(parsedSone, is(sone)); + assertThat(parsedSone.isLocal(), is(true)); + } + + @Test(expected = FcpException.class) + public void testParsingANonLocalSoneAsMandatoryLocalSoneCausesAnError() throws FcpException { + Sone sone = createSone("jXH8d-eFdm14R69WyaCgQoSjaY0jl-Ut6etlXjK0e6E", "Test", "First", "M.", "Last", (long) (Math.random() * Long.MAX_VALUE)); + when(core.getSone(eq("jXH8d-eFdm14R69WyaCgQoSjaY0jl-Ut6etlXjK0e6E"))).thenReturn(of(sone)); + SimpleFieldSet soneFieldSet = new SimpleFieldSetBuilder().put("Sone", "jXH8d-eFdm14R69WyaCgQoSjaY0jl-Ut6etlXjK0e6E").get(); + abstractSoneCommand.getMandatoryLocalSone(soneFieldSet, "Sone"); + } + + @Test(expected = FcpException.class) + public void testParsingAMandatoryLocalSoneFromANonExistingFieldCausesAnError() throws FcpException { + when(core.getSone(Matchers.any())).thenReturn(Optional.absent()); + SimpleFieldSet soneFieldSet = new SimpleFieldSetBuilder().put("Sone", "jXH8d-eFdm14R69WyaCgQoSjaY0jl-Ut6etlXjK0e6E").get(); + abstractSoneCommand.getMandatoryLocalSone(soneFieldSet, "RealSone"); + } + }