summaryrefslogtreecommitdiff
path: root/same/src/test
AgeCommit message (Collapse)Author
2012-02-27Remove argument to DelayedOperation.working-graphics-0.1Kjetil Ørbekk
2012-02-27Remove set(id, value, revision) from ClientInterface.Kjetil Ørbekk
Fix equals() bug in Component. Fix failing test.
2012-02-27Add DelayedOperation<T> class.Kjetil Ørbekk
A DelayedOperation represents an asynchronious operation.
2012-02-23Make it possible to create "fake" clients on Android.Kjetil Ørbekk
Extract interface from Client.ClientInterface in order to override it for Android, while still using the VariableFactory code as-is.
2012-02-23Implement listeners in Variables.Kjetil Ørbekk
2012-02-23Support several state listeners in Client.Kjetil Ørbekk
2012-02-17VariableFactory: Support set() operation.Kjetil Ørbekk
2012-02-16Implement Variable.Kjetil Ørbekk
State can now be edited with Variable objects.
2012-02-16Rename ClientServiceImplTest => ClientTest.Kjetil Ørbekk
2012-02-16Replace Master with new implementation.Kjetil Ørbekk
2012-02-16Implement all MasterService operations in NewMaster.Kjetil Ørbekk
Tested with tests ported from old MasterImplTest.
2012-02-16Start new Master implementation.Kjetil Ørbekk
2012-02-07Add interrupt() support to BroadcastListener.Kjetil Ørbekk
2012-02-06Refactor: Rename classes.Kjetil Ørbekk
Rename Client and Master classes, because the classes contain more than just the service interfaces. – ClientServiceImpl => Client. – MasterServiceImpl => Master.
2012-02-06Fix RpcServlet: Use POST requests.Kjetil Ørbekk
2012-02-06Fix failing tests.Kjetil Ørbekk
Tests were failing because of URL problems after refactoring.
2012-02-06Refactor URL handling in Client and Master.Kjetil Ørbekk
– Take URL as parameter to constructor.
2012-02-06Add a class that holds server information.Kjetil Ørbekk
– Provides access to the context and port, used in testing.
2012-02-03Extend configuration.Kjetil Ørbekk
– Shorter method names. – Add loadOrDie().
2012-02-03Add Configuration system.Kjetil Ørbekk
2012-02-03Refactor Handler code.Kjetil Ørbekk
Use servlets for everything. Ping service not yet implemented (becuase it's ugly and will be replaced with something else).
2012-01-31Use full url with discovery.Kjetil Ørbekk
2012-01-31Refactor client.Kjetil Ørbekk
Hide ClientService inside ClientServiceImpl.
2012-01-31Add client discovery functionality.Kjetil Ørbekk
2012-01-31WorkList => WorkQueue – A worker thread helper class.Kjetil Ørbekk
2012-01-27Improve discovery and error handling.Kjetil Ørbekk
2012-01-27Client answers discovery events.Kjetil Ørbekk
2012-01-27ClientService supports network discovery.Kjetil Ørbekk
2012-01-24Basic Paxos working.Kjetil Ørbekk
2012-01-24Refactor Paxos: Return proposal values.Kjetil Ørbekk
2012-01-24Paxos: Remove roundId parameter.Kjetil Ørbekk
2012-01-24Add failing Paxos test.Kjetil Ørbekk
Fails because proposers do not retry.
2012-01-23Add multi-threaded Paxos test code.Kjetil Ørbekk
(Doesn't actually make assertions – it just burns CPU cycles :P)
2012-01-23Start implementing a functional test for PaxosService.Kjetil Ørbekk
2012-01-23Add Paxos integration test.Kjetil Ørbekk
2012-01-23Add MasterProposer.Kjetil Ørbekk
MasterProposer tries to propose a value to a list of PaxosServices.
2012-01-23Start implementing MasterProposer.Kjetil Ørbekk
2012-01-22Unit test of Paxos Service.Kjetil Ørbekk
2012-01-18Remove whitespace.Kjetil Ørbekk
2012-01-18Remove clients upon errors.Kjetil Ørbekk
Add test for removing clients.
2012-01-18Refactor Broadcaster.Kjetil Ørbekk
Take a client url instead of a client parameter, to handle error conditions.
2012-01-17Fix revision update.Kjetil Ørbekk
Change State to take the *new* revision when updating.
2012-01-16Fix network joining.Kjetil Ørbekk
Prevent infinite loop in master thread.
2012-01-16Implement updateStateRequest().Kjetil Ørbekk
– Verify that states are synchronized to all clients.
2012-01-16Send state to clients.Kjetil Ørbekk
– Adds failing test - need to compare states of master and client.
2012-01-16Add assert in test of Master.Kjetil Ørbekk
2012-01-16Add failing master test.Kjetil Ørbekk
Fails because client implementation is not finished.
2012-01-16Fix failing test.Kjetil Ørbekk
Uses test component to avoid NullPointerException.
2012-01-16Add TestConnectionManager.Kjetil Ørbekk
2012-01-15Add TestBroadcaster.Kjetil Ørbekk
TestBroadcaster implements a single-threaded broadcaster suitable for testing.