Commit Graph

180 Commits

Author SHA1 Message Date
0801310542 updated comments of throttler 2024-09-08 11:16:49 +02:00
f3963288e3 using clientId in the public interface of admin instead of an internal
interface agentConnection.
2024-09-08 11:16:49 +02:00
95204a9f5b modification for testability caused a panic when client tries to connect
to unknown agent.
2024-09-08 11:16:49 +02:00
a99de52e56 throttler now ignoring duplicate events. 2024-09-08 11:16:49 +02:00
e334554d4a multiple clients and agents. 2024-09-08 11:16:49 +02:00
1ec7241c95 now asserting succesful client creation after calling connectClient()
THis way conenctClient(0 can be used also for cases where client
connection
is not successful.
2024-09-08 11:16:49 +02:00
9bff8db297 connectClient now returns an error when unsuccessful. 2024-09-08 11:16:49 +02:00
78e3556787 reintroduced ClientInfo because it does appear to work.
Most likely some error elsewhere caused it not to work previously
2024-09-08 11:16:49 +02:00
d21f9c847f connectClient() extracted to make it easy to connect a client. 2024-09-08 11:16:49 +02:00
2accbaf3fe changes for testing agent connect by returning a synchronizer() function
that must be called after connect to synchronize data.
2024-09-08 11:16:49 +02:00
e03e7d7b9a work in progress for testing the matchmaker. 2024-09-08 11:16:49 +02:00
2b9a9f550d test multiple clients now working with a fully concurrent registration
of clients.
2024-09-08 11:16:49 +02:00
0cd0b543a2 multiple clients connecting to multiple agents.
Clients cannot yet be started in parallel. due to subtle issue in test
setup with accept
2024-09-08 11:16:49 +02:00
739556e938 now also testing client removal. 2024-09-08 11:16:49 +02:00
d8a79fbe00 remove agent now also tested. 2024-09-08 11:16:49 +02:00
5191b9cd49 some refactoring inpraparation for multiple agents and clients. 2024-09-08 11:16:49 +02:00
6e97162923 using AssertReadData/AssertWriteData now where possible. 2024-09-08 11:16:49 +02:00
1fd4de471c test for unknown rendez-vous id. 2024-09-08 11:16:49 +02:00
563c8f2ca7 added leak detection using the goleak library 2024-09-08 11:16:49 +02:00
28b2545163 test for connecting clients and bidirectional communication to agent.
Required lots of rework since the GOBChannel appeared to be reading
ahead of the data it actually needed. Now using more low-level IO
to send the clientId over to the agent instead.
2024-09-08 11:16:49 +02:00
d144a4d230 test for duplicate id and new id gene4ration done 2024-09-08 11:16:49 +02:00
37ff504b88 agent registers with duplica id 2024-09-08 11:16:49 +02:00
1244e34de5 testing many agents registring 2024-09-08 11:16:49 +02:00
2c2aeff8f5 prepare test for more agents and clietns. 2024-09-08 11:16:49 +02:00
eb6da5da99 test case for single agent registration. 2024-09-08 11:16:49 +02:00
fd3c3eb50a fix in comments. 2024-09-08 11:16:49 +02:00
0bc3548354 agentlistener tested. 2024-09-08 11:16:49 +02:00
80488fa7c8 test for initialization failure when connection is closed. 2024-09-08 11:16:49 +02:00
465dc1108f protocol version test implemented between agent and server (and found
that it did not work)
2024-09-08 11:16:49 +02:00
ea0b4282ba test for ListenForAgentEvents implemented. 2024-09-08 11:16:49 +02:00
7b7827824e added initialization test 2024-09-08 11:16:49 +02:00
d6912316a8 minor cleanup 2024-09-08 11:16:49 +02:00
2a663c19d2 added a few tests for inmemoryconnection. 2024-09-08 11:16:49 +02:00
6eef930232 renamed ChannelReadWriter to ChannelReadWriteCloser. 2024-09-08 11:16:49 +02:00
f82f656b50 fixed issue with ChannelReadWriter for unbuffered channels.
Was a concurrency issue int he Write method that retained the
slice p that was passed in, making concurrency issues much more likely
with unbuffered channels.
2024-09-08 11:16:49 +02:00
cfed204af5 bidirectional communication now tested. 2024-09-08 11:16:49 +02:00
1ca7209588 tested connections through the session. 2024-09-08 11:16:49 +02:00
b65c824ca1 now using testsuite also for linkedmap 2024-09-08 11:16:49 +02:00
bf837d31b2 basic gobchannel tests now done. 2024-09-08 11:16:49 +02:00
2e8107ddbd discovered net.Pipe for testing tcp connnections which makes the
previously developed ChannelReadWriter and InmemoryConnection obsolete.
2024-09-08 11:16:49 +02:00
3d0f343098 fix for non-deterministic test. 2024-09-08 11:16:49 +02:00
2153d23e2e channelreadwriter test done. 2024-09-08 11:16:49 +02:00
d3d4c7242a restructuring test code by introducing a testsupport package
Making it easy 6to start a porof server in tests.
2024-09-08 11:16:49 +02:00
276c2c0fa7 some more tests added. 2024-09-08 11:16:49 +02:00
3059a16559 table testing with go routines only really works well when standard
assertions are ued. With suite.Required() there are issues in getting
the test results correct.

Instead, use standard assertions and use suite.T().Failed() to do
early returns.
2024-09-08 11:16:49 +02:00
3f3635b056 a lot of progress in setting up tests for the communication.
Wrote ChannelReadWriter that simulates a connection inmemory.
This is used by the agentserver test for testing the initialization. The
first test is already working.
2024-09-08 11:16:49 +02:00
3776b86946 typo 2024-09-08 11:16:49 +02:00
974b4b9ad0 more symmetry. SetupHeartBeat froma agent to server now done in separate
call.
2024-09-08 11:16:49 +02:00
9f90f9a2b8 now using a testsuite for the throttler tests. 2024-09-08 11:16:49 +02:00
6abcf0a7af go conventions: context should be first argument. 2024-09-08 11:16:49 +02:00