using Microsoft.VisualStudio.TestTools.UnitTesting;
using System.DirectoryServices.AccountManagement;
public class AuthenticationService
public bool AuthenticateUser(string username, string password)
string domain = "corp.example.com";
using (PrincipalContext pc = new PrincipalContext(ContextType.Domain, domain))
return pc.ValidateCredentials(username, password);
public static void Main()
Type testClassType = typeof(AuthenticationServiceTests);
object testClassInstance = Activator.CreateInstance(testClassType);
MethodInfo[] methods = testClassType.GetMethods();
Console.WriteLine("Running AuthenticationServiceTests...\n");
foreach (MethodInfo method in methods)
if (method.GetCustomAttribute<TestMethodAttribute>() != null)
method.Invoke(testClassInstance, null);
Console.WriteLine($"✔ {method.Name} PASSED");
catch (TargetInvocationException ex)
Console.WriteLine($"✘ {method.Name} FAILED - {ex.InnerException.Message}");
Console.WriteLine("\nTest execution complete.");
public class AuthenticationServiceTests
public void AuthenticateUser_ValidCredentials_ReturnsTrue()
AuthenticationService authService = new AuthenticationService();
string username = "validuser";
string password = "validpassword";
bool result = authService.AuthenticateUser(username, password);
public void AuthenticateUser_InvalidUsername_ReturnsFalse()
AuthenticationService authService = new AuthenticationService();
string username = "invaliduser";
string password = "anypassword";
bool result = authService.AuthenticateUser(username, password);
public void AuthenticateUser_InvalidPassword_ReturnsFalse()
AuthenticationService authService = new AuthenticationService();
string username = "validuser";
string password = "invalidpassword";
bool result = authService.AuthenticateUser(username, password);
public void AuthenticateUser_EmptyUsername_ReturnsFalse()
AuthenticationService authService = new AuthenticationService();
string password = "anypassword";
bool result = authService.AuthenticateUser(username, password);
public void AuthenticateUser_EmptyPassword_ReturnsFalse()
AuthenticationService authService = new AuthenticationService();
string username = "validuser";
bool result = authService.AuthenticateUser(username, password);
public void AuthenticateUser_NullUsername_ReturnsFalse()
AuthenticationService authService = new AuthenticationService();
string password = "anypassword";
bool result = authService.AuthenticateUser(username, password);
public void AuthenticateUser_NullPassword_ReturnsFalse()
AuthenticationService authService = new AuthenticationService();
string username = "validuser";
bool result = authService.AuthenticateUser(username, password);
public void AuthenticateUser_UsernameWithSpecialCharacters_ReturnsFalse()
AuthenticationService authService = new AuthenticationService();
string username = "user@with$special#chars";
string password = "anypassword";
bool result = authService.AuthenticateUser(username, password);