aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/Tests (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Test to ensure that the udp server stays active after receiving a ↵Justin Clarke Casey2008-11-062-14/+47
| | | | SocketException on BeginReceive
* * refactor: factor out test packet send method in client stack unit testsJustin Clarke Casey2008-11-062-10/+66
|
* * Use nini to pass config information to the client stack, rather than the ↵Justin Clarke Casey2008-11-031-1/+3
| | | | | | | | ClientStackUserSettings class * This conforms better to other module usage
* test: Extend malformed packet test to actually check that a valid packet can ↵Justin Clarke Casey2008-10-304-13/+134
| | | | get through after the malformed ones have been sent
* * test: Test that the client stack doesn't completely blow up if a client ↵Justin Clarke Casey2008-10-302-10/+43
| | | | passes it malformed data
* * Slightly tweak to teardown test, try a circuit which never existed in the ↵Justin Clarke Casey2008-10-301-3/+3
| | | | first place
* * minor: spacing adjustment before next commitJustin Clarke Casey2008-10-301-2/+1
|
* * test: fill out circuit teardown testJustin Clarke Casey2008-10-301-1/+10
|
* * test: Refactor test infrastructure for future client teardown testJustin Clarke Casey2008-10-301-9/+69
|
* Update svn properties, minor formatting cleanup.Jeff Ames2008-10-271-12/+12
|
* * minor: eliminate some mono compiler warningsJustin Clarke Casey2008-10-241-1/+1
|
* * Stop creating a circuit if the client fails authentication (i.e. the ↵Justin Clarke Casey2008-10-241-4/+13
| | | | | | | | | | region server wasn't told that it was coming) * This moves authentication from the client thread (where failure was difficult to detect) to the particular thread handling that packet * I've kept the authentication outside of the crucial clientCircuits lock (though any delay here is probably swamped by the other delays associated with login) * Also added more to the unit test to ensure this doesn't regress
* * Change AddClient test such that we now successfully authenticateJustin Clarke Casey2008-10-241-3/+17
| | | | | | * The fact that the assert passed even when authentication failed reveals a bug in the code that will be corrected soonish
* * minor: refactor out AddUser test setup to common methodJustin Clarke Casey2008-10-241-4/+8
|
* * Reenable assert for the add circuit testJustin Clarke Casey2008-10-232-3/+10
| | | | | | | * This checks that a client circuit is established when the udp server is given a use client circuit code packet * And checks that other circuit codes do not exist
* * Add missing file from last commit. Yay for continuous integration!Justin Clarke Casey2008-10-231-0/+52
|
* * Introduce a basic udp circuit test for adding a clientJustin Clarke Casey2008-10-232-8/+91
| | | | | | * Temporarily disabled assert because it just picked up an existing bug. Yay for tests!
* * Refactor LLUDPServer slightly so that unit tests can pass in data ↵Justin Clarke Casey2008-10-232-2/+56
| | | | synchronously. Shouldn't be any functional change
* * Remove mono warningsJustin Clarke Casey2008-10-171-1/+1
|
* * minor: get rid of pointless ipeSenderJustin Clarke Casey2008-10-161-1/+5
|
* * fix windows build break - it helps if one actually puts in using ↵Justin Clarke Casey2008-10-091-1/+3
| | | | statements and spells dlls correctly
* * minor: initialize udp server in unit testJustin Clarke Casey2008-10-091-2/+8
|
* * Create project for LindenUDP ClientStack testsJustin Clarke Casey2008-10-091-0/+44
* No functional tests yet