using System.Collections.Generic;
using System.Diagnostics;
using Microsoft.VisualStudio.TestTools.UnitTesting;
public class RegistrationSystem
private static bool _enableLinkInvitation;
private static bool _requireConfirmation;
private static Uri _invitationLink;
private static Dictionary<string, User> _registeredUsers = new();
private static List<User> _rejectedUsers = new();
public static Uri SetLinkInvitationSetting(bool enableLinkInvitation, bool requireConfirmation)
_enableLinkInvitation = enableLinkInvitation;
_requireConfirmation = requireConfirmation;
if (enableLinkInvitation)
_invitationLink = new Uri("https://example.com/invite/xyz123");
public static Uri GetRegistrationConfirmUri(User user)
return new Uri($"https://example.com/confirm/{user.Email}");
public static void JoinPortalNewUser(User user, Uri confirmUri, bool expectConfirmationPage)
if (!_registeredUsers.ContainsKey(user.Email))
_registeredUsers.Add(user.Email, user);
Debug.WriteLine($"Opening confirmation URI: {confirmUri}");
if (expectConfirmationPage)
Debug.WriteLine("Confirmation page displayed.");
public static void RejectUsrInvitationWithAssertAuthImpossabilityCommonPart(User user)
RejectUserInvitCommon(user);
if (_registeredUsers.ContainsKey(user.Email) && !_rejectedUsers.Contains(user))
throw new Exception("User should not be able to authenticate");
public static void RejectUserInvitCommon(User user)
_rejectedUsers.Add(user);
_registeredUsers.Remove(user.Email);
public static string getTextForRegCompletePage()
return "Registration Complete!";
public static void Main()
Console.WriteLine("š Discovering and Running Tests...\n");
int totalPassed = 0, totalFailed = 0;
var testClasses = Assembly.GetExecutingAssembly()
.Where(t => t.GetCustomAttribute<TestClassAttribute>() != null);
foreach (var testClass in testClasses)
Console.WriteLine($"š Running tests in: {testClass.Name}");
(int passed, int failed) = RunTests(testClass);
Console.WriteLine("\nš FINAL SUMMARY:");
Console.WriteLine($"ā
Total Passed: {totalPassed}");
Console.WriteLine($"ā Total Failed: {totalFailed}");
Console.WriteLine($"š Total Tests: {totalPassed + totalFailed}");
Console.WriteLine("\nā
Test execution completed.");
private static (int passed, int failed) RunTests(Type testClassType)
object testInstance = Activator.CreateInstance(testClassType);
MethodInfo[] testMethods = testClassType
.GetMethods(BindingFlags.Instance | BindingFlags.Public)
.Where(m => m.GetCustomAttribute<TestMethodAttribute>() != null)
int passed = 0, failed = 0;
foreach (var method in testMethods)
method.Invoke(testInstance, null);
Console.WriteLine($" ā
{method.Name} PASSED");
catch (TargetInvocationException ex)
Console.WriteLine($" ā {method.Name} FAILED: {ex.InnerException?.Message ?? ex.Message}");
Console.WriteLine($" ā ļø {method.Name} ERROR: {ex.Message}");
public string Email { get; set; }
public string Password { get; set; }
public static class registrationPageNoAuth
public static void Register(User user, Uri invitationLink, bool mustBeSuccess)
if (RegistrationSystem.SetLinkInvitationSetting(true, true) == null && invitationLink != null)
throw new Exception("Cannot register by the link while it is disbled");
public static void Goto()
public static string GetText()
public static class LoginPage
public static bool Login(string email, string password)
public static class JoinToPortalPage
public static void Open(Uri confirmUri)
public static void OpenConfirmPage()