Exemplo n.º 1
0
        public static void TestPassword()
        {
            CrPanel crp = initalizeVariables();
            DelPanel dp = initDel();
            PanelMgr target = new PanelMgr(); // TODO: Initialize to an appropriate value
            target.setVariables(crp);

            Console.WriteLine("Password Length");
            try
            {
                bool isGood = target.PasswdLength == int.Parse(crp.passwordLength.Text);
                if (isGood)
                {
                    Console.WriteLine("Test Passed!");
                }
                else
                {
                    Console.WriteLine("Test Failed!");
                }

            }

            catch (FormatException fe)
            {
                //There was nothing in the passwordlength textbox
                Console.WriteLine("Test Passed!");
            }
        }
Exemplo n.º 2
0
        /// <summary>
        ///A test for setting variables and getting proper values back
        ///</summary>
        public static void setVariablesTests()
        {
            CrPanel crp = initalizeVariables();
            DelPanel dp = initDel();
            PanelMgr target = new PanelMgr(); // TODO: Initialize to an appropriate value
            target.setVariables(crp);

            Console.WriteLine("Testing Create Panel Variables:");

            Console.WriteLine("User Prefix");
            if (target.UserPrefix == crp.UserPrefix.Text)
            {
                Console.WriteLine("Test Passed!");
            }
            else
            {
                Console.WriteLine("Test Failed!");
            }
            Console.WriteLine();
            Console.WriteLine("User Group");

            if (target.UserGroup == crp.GroupPath)
            {
                Console.WriteLine("Test Passed!");
            }
            else
            {
                Console.WriteLine("Test Failed!");
            }
            Console.WriteLine();
            Console.WriteLine("User OU");

            if (target.UserOU == crp.OUPath)
            {
                Console.WriteLine("Test Passed!");
            }
            else
            {
                Console.WriteLine("Test Failed!");
            }
            Console.WriteLine();
            Console.WriteLine("Domain Controller");

            if (target.DC == crp.DC.Text)
            {
                Console.WriteLine("Test Passed!");
            }
            else
            {
                Console.WriteLine("Test Failed!");
            }
            Console.WriteLine();
            Console.WriteLine("Number of Users");

            if (target.NumUsers == int.Parse(crp.NumUsers.Text))
            {
                Console.WriteLine("Test Passed!");
            }
            else
            {
                Console.WriteLine("Test Failed!");
            }
            Console.WriteLine();
            Console.WriteLine("First User");

            if (target.FirstUser == int.Parse(crp.FirstUser.Text))
            {
                Console.WriteLine("Test Passed!");
            }
            else
            {
                Console.WriteLine("Test Failed!");
            }
            Console.WriteLine();
            Console.WriteLine("Home Drive");

            if (target.HomeDrive == crp.HomeDrive.Items[crp.HomeDrive.SelectedIndex].ToString())
            {
                Console.WriteLine("Test Passed!");
            }
            else
            {
                Console.WriteLine("Test Failed!");
            }
            Console.WriteLine();
            Console.WriteLine("Home Directory");

            if (target.HomeDir == crp.HomeDir.Text + crp.HomeDirExt.Text.Substring(0, crp.HomeDirExt.Text.Length - 3))
            {
                Console.WriteLine("Test Passed!");
            }
            else
            {
                Console.WriteLine("Test Failed!");
            }
            Console.WriteLine();
            Console.WriteLine("Profile Path");

            if (target.ProfilePath == crp.ProfilePath.Text + crp.ProfileExt.Text.Substring(0, crp.ProfileExt.Text.Length - 3))
            {
                Console.WriteLine("Test Passed!");
            }
            else
            {
                Console.WriteLine("Test Failed!");
            }
        }
Exemplo n.º 3
0
        public static void TestGetDomains()
        {
            CrPanel crp = initalizeVariables();
            DelPanel dp = initDel();
            PanelMgr target = new PanelMgr(); // TODO: Initialize to an appropriate value
            target.setVariables(crp);
            ArrayList domains = new ArrayList();
            ArrayList getDomains = ActiveDirUtilities.getDomains();
            Console.WriteLine("Testing to get all the domains");
            bool isCorrect = true;

            for(int i = 1; i < crp.DC.Items.Count; i++)
            {
                domains.Add(crp.DC.Items[i]);
                if (domains[i - 1].ToString() != getDomains[i - 1].ToString())
                {
                    isCorrect = false;
                }
            }

            if (isCorrect)
            {
                Console.WriteLine("Test Passed!");
            }
            else
            {
                Console.WriteLine("Test Failed!");
            }
        }
Exemplo n.º 4
0
        public static void TestErrorChecking()
        {
            CrPanel crp = initalizeVariables();
            DelPanel dp = initDel();
            PanelMgr target = new PanelMgr(); // TODO: Initialize to an appropriate value
            target.setVariables(crp);

            ErrorChecking ec = new ErrorChecking();
            Console.WriteLine("Testing the getMsg() functionality in the ErrorChecking class");
            ec.AddMsg("Testing error message");
            //Must add \n to the end of the line sicne ec.AddMsg() will concat \n to the string
            if (ec.getMsg().Equals("Testing error message\n"))
            {
                Console.WriteLine("Test Passed!");
            }
            else
            {
                Console.WriteLine("Test Failed!");
            }
        }
Exemplo n.º 5
0
 public static void TestEnumShares()
 {
     DelPanel dp = initDel();
     CrPanel crp = initalizeVariables();
     PanelMgr target = new PanelMgr();
     target.setVariables(crp);
 }
Exemplo n.º 6
0
        public static void TestEnumerateOU()
        {
            CrPanel crp = initalizeVariables();
            DelPanel dp = initDel();
            PanelMgr target = new PanelMgr(); // TODO: Initialize to an appropriate value
            target.setVariables(crp);

            ArrayList ous = new ArrayList();
            Array getOUs =  ActiveDirUtilities.EnumerateOU("ou=STU,ou=USR," +
                    PanelMgr.FriendlyDomainToLdapDomain(crp.DC.Items[crp.DC.SelectedIndex].ToString()), "organizationalUnit").ToArray();
            Console.WriteLine("Testing to enumerate OUs within the STU OU");
            bool isCorrect = true;
            ArrayList userOUs = new ArrayList();
            foreach (object o in getOUs)
            {
                DirectoryEntry de = (DirectoryEntry)o;

                userOUs.Add(de.Name.Substring(3));
            }
            for (int i = 1; i < crp.UserOU.Items.Count; i++)
            {
                ous.Add(crp.UserOU.Items[i]);
                if (ous[i - 1].ToString() != userOUs[i - 1].ToString())
                {
                    isCorrect = false;
                }
            }

            if (isCorrect)
            {
                Console.WriteLine("Test Passed!");
            }
            else
            {
                Console.WriteLine("Test Failed!");
            }
        }
Exemplo n.º 7
0
        public static void TestDomainToLdapPath()
        {
            CrPanel crp = initalizeVariables();
            DelPanel dp = initDel();
            PanelMgr target = new PanelMgr(); // TODO: Initialize to an appropriate value
            target.setVariables(crp);

            Console.WriteLine("Testing converting domain name to LDAP path");
            string LDAP = PanelMgr.FriendlyDomainToLdapDomain(target.DC);

            if (LDAP == "DC=project,DC=com")
            {
                Console.WriteLine("Test Passed!");
            }
            else
            {
                Console.WriteLine("Test Failed!");
            }
        }