aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests/Common/Mock/TestClient.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Tests/Common/Mock/TestClient.cs')
-rw-r--r--OpenSim/Tests/Common/Mock/TestClient.cs24
1 files changed, 17 insertions, 7 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs
index 9370102..e8520f2 100644
--- a/OpenSim/Tests/Common/Mock/TestClient.cs
+++ b/OpenSim/Tests/Common/Mock/TestClient.cs
@@ -77,7 +77,7 @@ namespace OpenSim.Tests.Common.Mock
77 public event MoneyTransferRequest OnMoneyTransferRequest; 77 public event MoneyTransferRequest OnMoneyTransferRequest;
78 public event ParcelBuy OnParcelBuy; 78 public event ParcelBuy OnParcelBuy;
79 public event Action<IClientAPI> OnConnectionClosed; 79 public event Action<IClientAPI> OnConnectionClosed;
80 80 public event MoveItemsAndLeaveCopy OnMoveItemsAndLeaveCopy;
81 public event ImprovedInstantMessage OnInstantMessage; 81 public event ImprovedInstantMessage OnInstantMessage;
82 public event ChatMessage OnChatFromClient; 82 public event ChatMessage OnChatFromClient;
83 public event TextureRequest OnRequestTexture; 83 public event TextureRequest OnRequestTexture;
@@ -94,6 +94,7 @@ namespace OpenSim.Tests.Common.Mock
94 public event ObjectDrop OnObjectDrop; 94 public event ObjectDrop OnObjectDrop;
95 public event StartAnim OnStartAnim; 95 public event StartAnim OnStartAnim;
96 public event StopAnim OnStopAnim; 96 public event StopAnim OnStopAnim;
97 public event ChangeAnim OnChangeAnim;
97 public event LinkObjects OnLinkObjects; 98 public event LinkObjects OnLinkObjects;
98 public event DelinkObjects OnDelinkObjects; 99 public event DelinkObjects OnDelinkObjects;
99 public event RequestMapBlocks OnRequestMapBlocks; 100 public event RequestMapBlocks OnRequestMapBlocks;
@@ -142,6 +143,7 @@ namespace OpenSim.Tests.Common.Mock
142 public event GenericCall7 OnObjectMaterial; 143 public event GenericCall7 OnObjectMaterial;
143 public event UpdatePrimFlags OnUpdatePrimFlags; 144 public event UpdatePrimFlags OnUpdatePrimFlags;
144 public event UpdatePrimTexture OnUpdatePrimTexture; 145 public event UpdatePrimTexture OnUpdatePrimTexture;
146 public event ClientChangeObject onClientChangeObject;
145 public event UpdateVector OnUpdatePrimGroupPosition; 147 public event UpdateVector OnUpdatePrimGroupPosition;
146 public event UpdateVector OnUpdatePrimSinglePosition; 148 public event UpdateVector OnUpdatePrimSinglePosition;
147 public event UpdatePrimRotation OnUpdatePrimGroupRotation; 149 public event UpdatePrimRotation OnUpdatePrimGroupRotation;
@@ -284,7 +286,7 @@ namespace OpenSim.Tests.Common.Mock
284 public event ClassifiedInfoRequest OnClassifiedInfoRequest; 286 public event ClassifiedInfoRequest OnClassifiedInfoRequest;
285 public event ClassifiedInfoUpdate OnClassifiedInfoUpdate; 287 public event ClassifiedInfoUpdate OnClassifiedInfoUpdate;
286 public event ClassifiedDelete OnClassifiedDelete; 288 public event ClassifiedDelete OnClassifiedDelete;
287 public event ClassifiedDelete OnClassifiedGodDelete; 289 public event ClassifiedGodDelete OnClassifiedGodDelete;
288 290
289 public event EventNotificationAddRequest OnEventNotificationAddRequest; 291 public event EventNotificationAddRequest OnEventNotificationAddRequest;
290 public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest; 292 public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest;
@@ -323,11 +325,12 @@ namespace OpenSim.Tests.Common.Mock
323 public event GroupVoteHistoryRequest OnGroupVoteHistoryRequest; 325 public event GroupVoteHistoryRequest OnGroupVoteHistoryRequest;
324 public event SimWideDeletesDelegate OnSimWideDeletes; 326 public event SimWideDeletesDelegate OnSimWideDeletes;
325 public event SendPostcard OnSendPostcard; 327 public event SendPostcard OnSendPostcard;
328 public event ChangeInventoryItemFlags OnChangeInventoryItemFlags;
326 public event MuteListEntryUpdate OnUpdateMuteListEntry; 329 public event MuteListEntryUpdate OnUpdateMuteListEntry;
327 public event MuteListEntryRemove OnRemoveMuteListEntry; 330 public event MuteListEntryRemove OnRemoveMuteListEntry;
328 public event GodlikeMessage onGodlikeMessage; 331 public event GodlikeMessage onGodlikeMessage;
329 public event GodUpdateRegionInfoUpdate OnGodUpdateRegionInfoUpdate; 332 public event GodUpdateRegionInfoUpdate OnGodUpdateRegionInfoUpdate;
330 333 public event GenericCall2 OnUpdateThrottles;
331#pragma warning restore 67 334#pragma warning restore 67
332 335
333 /// <value> 336 /// <value>
@@ -535,6 +538,10 @@ namespace OpenSim.Tests.Common.Mock
535 { 538 {
536 } 539 }
537 540
541 public void SetAgentThrottleSilent(int throttle, int setting)
542 {
543 }
544
538 public byte[] GetThrottlesPacked(float multiplier) 545 public byte[] GetThrottlesPacked(float multiplier)
539 { 546 {
540 return new byte[0]; 547 return new byte[0];
@@ -711,6 +718,10 @@ namespace OpenSim.Tests.Common.Mock
711 { 718 {
712 } 719 }
713 720
721 public void SendInventoryItemCreateUpdate(InventoryItemBase Item, UUID transactionID, uint callbackId)
722 {
723 }
724
714 public virtual void SendRemoveInventoryItem(UUID itemID) 725 public virtual void SendRemoveInventoryItem(UUID itemID)
715 { 726 {
716 } 727 }
@@ -727,7 +738,7 @@ namespace OpenSim.Tests.Common.Mock
727 { 738 {
728 } 739 }
729 740
730 public virtual void SendXferPacket(ulong xferID, uint packet, byte[] data) 741 public virtual void SendXferPacket(ulong xferID, uint packet, byte[] data, bool isTaskInventory)
731 { 742 {
732 } 743 }
733 744
@@ -927,10 +938,10 @@ namespace OpenSim.Tests.Common.Mock
927 938
928 public void Close() 939 public void Close()
929 { 940 {
930 Close(false); 941 Close(true, false);
931 } 942 }
932 943
933 public void Close(bool force) 944 public void Close(bool sendStop, bool force)
934 { 945 {
935 // Fire the callback for this connection closing 946 // Fire the callback for this connection closing
936 // This is necesary to get the presence detector to notice that a client has logged out. 947 // This is necesary to get the presence detector to notice that a client has logged out.
@@ -1277,6 +1288,5 @@ namespace OpenSim.Tests.Common.Mock
1277 public void SendPartPhysicsProprieties(ISceneEntity entity) 1288 public void SendPartPhysicsProprieties(ISceneEntity entity)
1278 { 1289 {
1279 } 1290 }
1280
1281 } 1291 }
1282} 1292}