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.cs29
1 files changed, 23 insertions, 6 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs
index dde37ab..2714429 100644
--- a/OpenSim/Tests/Common/Mock/TestClient.cs
+++ b/OpenSim/Tests/Common/Mock/TestClient.cs
@@ -69,7 +69,7 @@ namespace OpenSim.Tests.Common.Mock
69 public event MoneyTransferRequest OnMoneyTransferRequest; 69 public event MoneyTransferRequest OnMoneyTransferRequest;
70 public event ParcelBuy OnParcelBuy; 70 public event ParcelBuy OnParcelBuy;
71 public event Action<IClientAPI> OnConnectionClosed; 71 public event Action<IClientAPI> OnConnectionClosed;
72 72 public event MoveItemsAndLeaveCopy OnMoveItemsAndLeaveCopy;
73 public event ImprovedInstantMessage OnInstantMessage; 73 public event ImprovedInstantMessage OnInstantMessage;
74 public event ChatMessage OnChatFromClient; 74 public event ChatMessage OnChatFromClient;
75 public event TextureRequest OnRequestTexture; 75 public event TextureRequest OnRequestTexture;
@@ -86,6 +86,7 @@ namespace OpenSim.Tests.Common.Mock
86 public event ObjectDrop OnObjectDrop; 86 public event ObjectDrop OnObjectDrop;
87 public event StartAnim OnStartAnim; 87 public event StartAnim OnStartAnim;
88 public event StopAnim OnStopAnim; 88 public event StopAnim OnStopAnim;
89 public event ChangeAnim OnChangeAnim;
89 public event LinkObjects OnLinkObjects; 90 public event LinkObjects OnLinkObjects;
90 public event DelinkObjects OnDelinkObjects; 91 public event DelinkObjects OnDelinkObjects;
91 public event RequestMapBlocks OnRequestMapBlocks; 92 public event RequestMapBlocks OnRequestMapBlocks;
@@ -133,6 +134,7 @@ namespace OpenSim.Tests.Common.Mock
133 public event GenericCall7 OnObjectMaterial; 134 public event GenericCall7 OnObjectMaterial;
134 public event UpdatePrimFlags OnUpdatePrimFlags; 135 public event UpdatePrimFlags OnUpdatePrimFlags;
135 public event UpdatePrimTexture OnUpdatePrimTexture; 136 public event UpdatePrimTexture OnUpdatePrimTexture;
137 public event ClientChangeObject onClientChangeObject;
136 public event UpdateVector OnUpdatePrimGroupPosition; 138 public event UpdateVector OnUpdatePrimGroupPosition;
137 public event UpdateVector OnUpdatePrimSinglePosition; 139 public event UpdateVector OnUpdatePrimSinglePosition;
138 public event UpdatePrimRotation OnUpdatePrimGroupRotation; 140 public event UpdatePrimRotation OnUpdatePrimGroupRotation;
@@ -274,7 +276,7 @@ namespace OpenSim.Tests.Common.Mock
274 public event ClassifiedInfoRequest OnClassifiedInfoRequest; 276 public event ClassifiedInfoRequest OnClassifiedInfoRequest;
275 public event ClassifiedInfoUpdate OnClassifiedInfoUpdate; 277 public event ClassifiedInfoUpdate OnClassifiedInfoUpdate;
276 public event ClassifiedDelete OnClassifiedDelete; 278 public event ClassifiedDelete OnClassifiedDelete;
277 public event ClassifiedDelete OnClassifiedGodDelete; 279 public event ClassifiedGodDelete OnClassifiedGodDelete;
278 280
279 public event EventNotificationAddRequest OnEventNotificationAddRequest; 281 public event EventNotificationAddRequest OnEventNotificationAddRequest;
280 public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest; 282 public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest;
@@ -313,11 +315,12 @@ namespace OpenSim.Tests.Common.Mock
313 public event GroupVoteHistoryRequest OnGroupVoteHistoryRequest; 315 public event GroupVoteHistoryRequest OnGroupVoteHistoryRequest;
314 public event SimWideDeletesDelegate OnSimWideDeletes; 316 public event SimWideDeletesDelegate OnSimWideDeletes;
315 public event SendPostcard OnSendPostcard; 317 public event SendPostcard OnSendPostcard;
318 public event ChangeInventoryItemFlags OnChangeInventoryItemFlags;
316 public event MuteListEntryUpdate OnUpdateMuteListEntry; 319 public event MuteListEntryUpdate OnUpdateMuteListEntry;
317 public event MuteListEntryRemove OnRemoveMuteListEntry; 320 public event MuteListEntryRemove OnRemoveMuteListEntry;
318 public event GodlikeMessage onGodlikeMessage; 321 public event GodlikeMessage onGodlikeMessage;
319 public event GodUpdateRegionInfoUpdate OnGodUpdateRegionInfoUpdate; 322 public event GodUpdateRegionInfoUpdate OnGodUpdateRegionInfoUpdate;
320 323 public event GenericCall2 OnUpdateThrottles;
321#pragma warning restore 67 324#pragma warning restore 67
322 325
323 /// <value> 326 /// <value>
@@ -518,6 +521,12 @@ namespace OpenSim.Tests.Common.Mock
518 public virtual void SetChildAgentThrottle(byte[] throttle) 521 public virtual void SetChildAgentThrottle(byte[] throttle)
519 { 522 {
520 } 523 }
524
525 public void SetAgentThrottleSilent(int throttle, int setting)
526 {
527
528
529 }
521 public byte[] GetThrottlesPacked(float multiplier) 530 public byte[] GetThrottlesPacked(float multiplier)
522 { 531 {
523 return new byte[0]; 532 return new byte[0];
@@ -709,6 +718,10 @@ namespace OpenSim.Tests.Common.Mock
709 { 718 {
710 } 719 }
711 720
721 public void SendInventoryItemCreateUpdate(InventoryItemBase Item, UUID transactionID, uint callbackId)
722 {
723 }
724
712 public virtual void SendRemoveInventoryItem(UUID itemID) 725 public virtual void SendRemoveInventoryItem(UUID itemID)
713 { 726 {
714 } 727 }
@@ -725,7 +738,7 @@ namespace OpenSim.Tests.Common.Mock
725 { 738 {
726 } 739 }
727 740
728 public virtual void SendXferPacket(ulong xferID, uint packet, byte[] data) 741 public virtual void SendXferPacket(ulong xferID, uint packet, byte[] data, bool isTaskInventory)
729 { 742 {
730 } 743 }
731 744
@@ -930,10 +943,10 @@ namespace OpenSim.Tests.Common.Mock
930 943
931 public void Close() 944 public void Close()
932 { 945 {
933 Close(false); 946 Close(true, false);
934 } 947 }
935 948
936 public void Close(bool force) 949 public void Close(bool sendStop, bool force)
937 { 950 {
938 // Fire the callback for this connection closing 951 // Fire the callback for this connection closing
939 // This is necesary to get the presence detector to notice that a client has logged out. 952 // This is necesary to get the presence detector to notice that a client has logged out.
@@ -1276,5 +1289,9 @@ namespace OpenSim.Tests.Common.Mock
1276 public void SendPlacesReply(UUID queryID, UUID transactionID, PlacesReplyData[] data) 1289 public void SendPlacesReply(UUID queryID, UUID transactionID, PlacesReplyData[] data)
1277 { 1290 {
1278 } 1291 }
1292
1293 public void SendPartPhysicsProprieties(ISceneEntity entity)
1294 {
1295 }
1279 } 1296 }
1280} 1297}