コード例 #1
0
 internal DomainContext( PddApi api, string domain ) : base(api, domain) {
     var rawContext = Api.Raw.Domain(DomainName);
     Deputy = new DeputyMethods( rawContext.Deputy );
     Dns = new DnsMethods( rawContext.Dns );
     Dkim = new DkimMethods( rawContext.Dkim );
     Domain = new DomainMethods( rawContext.Domain );
     Import = new ImportMethods( rawContext.Import );
     MailList = new MailListMethods( rawContext.MailList );
     Mail = new MailMethods( rawContext.Mail );
 }
コード例 #2
0
        /**
         * <summary>This method effectively stores the raw subject data in the appropriate model classes.</summary>
         *
         * <param name="ay">The AcademicYear object where the data will be stored to.</param>
         */
        public void LoadSubjectData(AcademicYear ay)
        {
            // IF statement checks that the AcademicYear object parameter is not null and has at least 1 Student obect stored inside it.
            if (ay != null && ay.GetStudents.Count > 0)
            {
                // Stores each line of the subjectData2.txt file as a strings into an array.
                string[] lines = System.IO.File.ReadAllLines("C:/Users/Yash/source/repos/SchoolReportSystem/view/import/subjectData2.txt");

                // IF statement checks that there is at least 1 line of text within the file.
                if (lines.Length > 0)
                {
                    // Creates an empty Student object.
                    Student sd = null;

                    // Breaks up each string inside the array and iterates through each one.
                    foreach (string line in lines)
                    {
                        // Splits each line into an array with comma delimited values.
                        string[] elements = line.Split(",");

                        // IF statement checks the length of the non-empty array.
                        if (elements.Length != 5)
                        {
                            // An exception is thrown if the length of the array not equal to 5.
                            throw new ArgumentException("Invalid subject data!");
                        }
                        else
                        {
                            // An exception will be thrown if the 'elements' array has any missing data.
                            HelperMethods.CheckArray(elements, "Missing subject data!");

                            if (!elements[4].All(char.IsDigit))
                            {
                                // An exception is thrown if the last element of the array contains anything other than digits.
                                throw new ArgumentException("Invalid student ID!");
                            }
                            else if (StudentValidation.CheckStudentIDRange(ay.GetYearNo, elements[4]))
                            {
                                // Passes the ID of the student into 'GetStudentByID' method, which returns the matching Student object and stores it into a new object.
                                sd = ay.GetStudentById(elements[4]);

                                // Invokes the 'StoreSubjectDetails' method of the ImportMethods utility class.
                                ImportMethods.StoreSubjectDetails(sd, elements);

                                // Removes any duplicate subjects stored within the Student object.
                                sd.RemoveDuplicateSubjects();
                            }
                        }
                    }
                }

                ay.GetStudents.ForEach(_ =>
                {
                    if (_.GetSubjects.Count != ImportMethods.CheckNoSubjectsForYear(_.GetYear))
                    {
                        // Throws an exception if the student does not have the required number of subjects for their academic year.
                        throw new ArgumentException("Invalid number of subjects for a student in year " + _.GetYear);
                    }
                });
            }
        }
コード例 #3
0
 public void CapitaliseFirstLetterTest()
 {
     Assert.AreEqual("A*", ImportMethods.CapitaliseFirstLetter("a*", true));
     Assert.AreEqual("Debunked", ImportMethods.CapitaliseFirstLetter("dEBunKed", false));
 }
コード例 #4
0
 public void CapitaliseAlphaNumericTest()
 {
     Assert.AreEqual("PSY5A", ImportMethods.CapitaliseAlphaNumeric("psY5a"));
 }
コード例 #5
0
 public void CheckNoSubjectsForYearTest()
 {
     Assert.AreEqual(9, ImportMethods.CheckNoSubjectsForYear(10));
 }