From effce9ac69de33364f6e0dc78ced189fc32ebd38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kjetil=20=C3=98rbekk?= Date: Thu, 16 Feb 2012 20:26:57 +0100 Subject: Implement Variable. State can now be edited with Variable objects. --- .../java/com/orbekk/same/VariableFactoryTest.java | 52 ++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 same/src/test/java/com/orbekk/same/VariableFactoryTest.java (limited to 'same/src/test') diff --git a/same/src/test/java/com/orbekk/same/VariableFactoryTest.java b/same/src/test/java/com/orbekk/same/VariableFactoryTest.java new file mode 100644 index 0000000..eade799 --- /dev/null +++ b/same/src/test/java/com/orbekk/same/VariableFactoryTest.java @@ -0,0 +1,52 @@ +package com.orbekk.same; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +import java.util.List; + +import org.codehaus.jackson.type.TypeReference; +import org.junit.Before; +import org.junit.Test; + +public class VariableFactoryTest { + Client.ClientInterface client; + VariableFactory vf; + State sampleState; + + TypeReference intType = new TypeReference() {}; + TypeReference> listType = new TypeReference>() {}; + + @Before + public void setUp() { + client = mock(Client.ClientInterface.class); + vf = new VariableFactory(client); + initializeSampleState(); + } + + public void initializeSampleState() { + sampleState = new State("TestState"); + sampleState.update("TestVariable", "1", 1); + sampleState.update("TestList", "[]", 1); + } + + @Test + public void getsInitialValue() { + when(client.getState()).thenReturn(sampleState); + Variable testVariable = vf.create("TestVariable", intType); + assertEquals(1, (int)testVariable.get()); + } + + @Test + public void updatesValue() { + when(client.getState()).thenReturn(sampleState); + Variable> list = vf.create("TestList", listType); + assertTrue(list.get().isEmpty()); + sampleState.update("TestList", "[\"CONTENT\"]", 2); + list.update(); + assertEquals(1, list.get().size()); + assertEquals("CONTENT", list.get().get(0)); + } +} -- cgit v1.2.3