Exemplo n.º 1
0
        public bool checkCodeExist(string code)
        {
            //DB find, student update confirmed
            MdlStudent studentObj = new MdlStudent();

            studentObj.ConfirmationCode = code;
            DbStudent dbStudent = new DbStudent();

            using (TransactionScope scope = new TransactionScope())
            {
                //get student by confirmation code
                studentObj = dbStudent.GetStudentData(studentObj.ConfirmationCode, "code");

                scope.Complete();
            }

            if (studentObj != null)
            {
                return(confirm(studentObj));
            }
            else
            {
                return(false);
            }
        }
Exemplo n.º 2
0
        public MdlStudent GetStudentData(string value, string type = "email")
        {
            if (type == "code")
            {
                type = "@ConfirmationCode";
            }
            else
            {
                type = "@Email";
            }

            try
            {
                using (SqlConnection conn = new SqlConnection(DbConnection.connectionString))
                {
                    SqlDataAdapter da = new SqlDataAdapter("spGetStudentData", conn);
                    da.SelectCommand.CommandType = CommandType.StoredProcedure;
                    da.SelectCommand.Parameters.AddWithValue(type, value);
                    DataSet ds = new DataSet();
                    da.Fill(ds, "Students"); //opens connection to DB/ executes command/ reads data/ fills Data set/ closing connection

                    DataRow dr = ds.Tables["Students"].Rows[0];
                    return(GetFilledStudentObj(dr));
                }
            }
            catch (Exception e)
            {
                MdlStudent emptyObject = new MdlStudent();
                return(emptyObject);
            }
        }
Exemplo n.º 3
0
        public void GetNonExistingStudentData()
        {
            CtrStudent ctrStudentObj = new CtrStudent();
            MdlStudent mdlStudentObj = ctrStudentObj.GetStudentData("*****@*****.**");

            Assert.IsNull(mdlStudentObj.Surname);
        }
Exemplo n.º 4
0
        private bool confirm(MdlStudent student)
        {
            student.Confirmed = true;
            DbStudent dbStudentObj = new DbStudent();

            return(dbStudentObj.UpdateProfile(student));
        }
Exemplo n.º 5
0
 public string AddStudent(MdlStudent mdlStudentObj)
 {
     using (SqlConnection conn = new SqlConnection(DbConnection.connectionString))
     {
         conn.Open();
         return(GetOutput(conn, mdlStudentObj));
     }
 }
Exemplo n.º 6
0
        private MdlStudent GetMdlStudent(DataRow row)
        {
            MdlStudent mdlStudentObj = new MdlStudent();

            mdlStudentObj.NumberOfChildren   = Convert.ToInt32(row["NumberOfChildren"]);
            mdlStudentObj.Disabled           = Convert.ToBoolean(row["Disabled"]);
            mdlStudentObj.NumberOfCohabiters = Convert.ToInt32(row["NumberOfCohabitors"]);
            return(mdlStudentObj);
        }
Exemplo n.º 7
0
        public string AddStudent(MdlStudent mdlStudentObj)
        {
            ctrStudentObj = new CtrStudent();

            Console.WriteLine();
            Console.WriteLine("AddStudent() " + GetExecutionThreadTime());

            return(ctrStudentObj.AddStudent(mdlStudentObj));
        }
Exemplo n.º 8
0
        public void AddNewStudent()
        {
            CtrStudent ctrStudentObj = new CtrStudent();
            MdlStudent mdlStudentObj = GenerateStudentObj();
            string     expected      = "Registration successful.";
            string     actual        = ctrStudentObj.AddStudent(mdlStudentObj).Trim();

            Assert.AreEqual(expected, actual);
        }
Exemplo n.º 9
0
        public bool UpdateProfile(string email, int numberOfChildren, bool pet, int numberOfCohabitors, bool disabled,
                                  string name, string surname, string address, string postCode, string city, string country, string phone)
        {
            DbStudent  dbStudentObj  = new DbStudent();
            MdlStudent mdlStudentObj = GetStudent(email, numberOfChildren, pet, numberOfCohabitors,
                                                  disabled, name, surname, address, postCode, city, country, phone);

            mdlStudentObj = CalculateProfileScore(mdlStudentObj);
            return(dbStudentObj.UpdateProfile(mdlStudentObj));
        }
Exemplo n.º 10
0
        public void AddExistingStudent()
        {
            CtrStudent ctrStudentObj = new CtrStudent();
            MdlStudent mdlStudentObj = GenerateStudentObj();

            mdlStudentObj.Email = "*****@*****.**";
            string expected = "Registration has failed due to the existing Email.";
            string actual   = ctrStudentObj.AddStudent(mdlStudentObj).Trim();

            Assert.AreEqual(expected, actual);
        }
Exemplo n.º 11
0
        public void GetStudentData()
        {
            string     expected = "surname";
            string     actual;
            CtrStudent ctrStudentObj = new CtrStudent();

            MdlStudent mdlStudentObj = ctrStudentObj.GetStudentData("*****@*****.**");

            actual = mdlStudentObj.Surname.Trim();

            Assert.AreEqual(expected, actual);
        }
Exemplo n.º 12
0
        public bool UpdateProfile(MdlStudent mdlStudentObj)
        {
            var option = new TransactionOptions();

            option.IsolationLevel = System.Transactions.IsolationLevel.ReadCommitted;
            option.Timeout        = TimeSpan.FromSeconds(3);
            using (var scope = new TransactionScope(TransactionScopeOption.Required, option))
            {
                try
                {
                    using (SqlConnection conn = new SqlConnection(DbConnection.connectionString))
                    {
                        DataSet        ds = GetStudentDataSet(conn, mdlStudentObj.Email);
                        DataRow        dr = ds.Tables["Students"].Rows[0];
                        SqlDataAdapter da = new SqlDataAdapter("spGetStudentData", conn);
                        da.SelectCommand.CommandType = CommandType.StoredProcedure;
                        da.SelectCommand.Parameters.AddWithValue("@Email", mdlStudentObj.Email);
                        SqlCommandBuilder builder = new SqlCommandBuilder(da);

                        if (ds.Tables["Students"].Rows.Count == 0)
                        {
                            return(false);
                        }

                        dr = UpdateDataRow(dr, mdlStudentObj);
                        // Update returns number of updated rows
                        int update = da.Update(ds, "Students");
                        scope.Complete();
                        if (update > 0)
                        {
                            return(true);
                        }
                        else
                        {
                            return(false);
                        }
                    }
                }
                catch (Exception e)
                {
                    Transaction.Current.Rollback();
                    return(false);
                }
                finally
                {
                    if (scope != null)
                    {
                        ((IDisposable)scope).Dispose();
                    }
                }
            }
        }
Exemplo n.º 13
0
        private string GetOutput(SqlConnection conn, MdlStudent mdlStudentObj)
        {
            var option = new TransactionOptions();

            option.IsolationLevel = System.Transactions.IsolationLevel.ReadCommitted;
            option.Timeout        = TimeSpan.FromSeconds(3);
            using (var scope = new TransactionScope(TransactionScopeOption.Required, option))
            {
                try
                {
                    SqlCommand cmd = new SqlCommand("spExecuteInsertStudent", conn);
                    //set command type
                    cmd.CommandType = CommandType.StoredProcedure;
                    //input parameters
                    cmd.Parameters.AddWithValue("@EmailInput", mdlStudentObj.Email);
                    cmd.Parameters.AddWithValue("@PasswordInput", mdlStudentObj.Password);
                    cmd.Parameters.AddWithValue("@SaltInput", mdlStudentObj.Salt);
                    cmd.Parameters.AddWithValue("@NameInput", mdlStudentObj.Name);
                    cmd.Parameters.AddWithValue("@SurnameInput", mdlStudentObj.Surname);
                    cmd.Parameters.AddWithValue("@AddressInput", mdlStudentObj.Address);
                    cmd.Parameters.AddWithValue("@PostCodeInput", mdlStudentObj.PostCode);
                    cmd.Parameters.AddWithValue("@CityInput", mdlStudentObj.City);
                    cmd.Parameters.AddWithValue("@CountryInput", mdlStudentObj.Country);
                    cmd.Parameters.AddWithValue("@PhoneInput", mdlStudentObj.Phone);
                    //output parameters
                    SqlParameter outputParameter = new SqlParameter();
                    outputParameter.ParameterName = "@MessageOutput";
                    outputParameter.SqlDbType     = SqlDbType.Char;
                    outputParameter.Direction     = ParameterDirection.Output;
                    outputParameter.Size          = 100;
                    cmd.Parameters.Add(outputParameter);
                    //execute
                    cmd.ExecuteNonQuery();
                    scope.Complete();
                    return(outputParameter.Value.ToString());
                }
                catch (Exception e)
                {
                    Transaction.Current.Rollback();
                    Console.WriteLine("An Error has accured. Registration Terminated. Err:" + e);
                    return("Error");
                }
                finally
                {
                    if (scope != null)
                    {
                        ((IDisposable)scope).Dispose();
                    }
                }
            }
        }
Exemplo n.º 14
0
        public static MdlStudent CalculateProfileScore(MdlStudent mdlStudentObj)
        {
            int  numberOfChildren   = Convert.ToInt32(mdlStudentObj.NumberOfChildren);
            bool disabled           = Convert.ToBoolean(mdlStudentObj.Disabled);
            int  numberOfCohabiters = Convert.ToInt32(mdlStudentObj.NumberOfCohabiters);

            mdlStudentObj.Score = (numberOfChildren * 40) + (numberOfCohabiters * 80);
            if (disabled)
            {
                mdlStudentObj.Score += 60;
            }

            return(mdlStudentObj);
        }
Exemplo n.º 15
0
        public void LoginExistingStudent()
        {
            CtrLogin   ctrLoginObj   = new CtrLogin();
            CtrStudent ctrStudentObj = new CtrStudent();

            MdlStudent mdlStudentObj = GenerateStudentObj();

            mdlStudentObj.Email = "*****@*****.**";
            ctrStudentObj.AddStudent(mdlStudentObj).Trim();

            string expected = "You have successfully logged in.";
            string actual   = ctrLoginObj.Login(mdlStudentObj.Email, "myPassword");

            Assert.AreEqual(expected, actual.Trim());
        }
Exemplo n.º 16
0
        public static MdlStudent GenerateStudentObj()
        {
            MdlStudent mdlStudentObj = new MdlStudent();

            mdlStudentObj.Email    = "*****@*****.**";
            mdlStudentObj.Password = "******";
            mdlStudentObj.Name     = "Miroslav";
            mdlStudentObj.Surname  = "Pakanec";
            mdlStudentObj.Address  = "Jernbanegade 12A";
            mdlStudentObj.PostCode = "9000";
            mdlStudentObj.City     = "Aalborg";
            mdlStudentObj.Country  = "Denmark";
            mdlStudentObj.Phone    = "+421910245649";

            return(mdlStudentObj);
        }
Exemplo n.º 17
0
        public void AddToWishListExistingApplicaation()
        {
            CtrStudent ctrStudentObj = new CtrStudent();
            MdlStudent mdlStudentObj = StudentTests.GenerateStudentObj();

            CtrGetData ctrGetDataObj = new CtrGetData();
            DataSet    ds            = ctrGetDataObj.GetAllFlats();

            MdlApplication mdlApplicationObj = new MdlApplication();
            string         studentEmail      = "*****@*****.**";
            int            flatId            = (int)ds.Tables[0].Rows[0]["Id"];
            int            score             = 100;

            bool actual   = ctrStudentObj.AddToWishlist(studentEmail, flatId, score);
            bool expected = false;

            Assert.AreEqual(expected, actual);
        }
Exemplo n.º 18
0
        private DataRow UpdateDataRow(DataRow dr, MdlStudent mdlStudentObj)
        {
            dr["Confirmed"]        = mdlStudentObj.Confirmed;
            dr["Student"]          = mdlStudentObj.Student;
            dr["Score"]            = mdlStudentObj.Score;
            dr["NumberOfChildren"] = mdlStudentObj.NumberOfChildren;
            dr["Pet"] = mdlStudentObj.Pet;
            dr["NumberOfCohabitors"] = mdlStudentObj.NumberOfCohabiters;
            dr["Disabled"]           = mdlStudentObj.Disabled;
            dr["Name"]     = mdlStudentObj.Name;
            dr["Surname"]  = mdlStudentObj.Surname;
            dr["Address"]  = mdlStudentObj.Address;
            dr["PostCode"] = mdlStudentObj.PostCode;
            dr["City"]     = mdlStudentObj.City;
            dr["Country"]  = mdlStudentObj.Country;
            dr["Phone"]    = mdlStudentObj.Phone;

            return(dr);
        }
Exemplo n.º 19
0
        private MdlStudent GetStudent(string email, int numberOfChildren, bool pet, int numberOfCohabitors, bool disabled,
                                      string name, string surname, string address, string postCode, string city, string country, string phone)
        {
            MdlStudent mdlStudentObj = new MdlStudent();

            mdlStudentObj.Email            = email;
            mdlStudentObj.NumberOfChildren = numberOfChildren;
            mdlStudentObj.Pet = pet;
            mdlStudentObj.NumberOfCohabiters = numberOfCohabitors;
            mdlStudentObj.Disabled           = disabled;
            mdlStudentObj.Name     = name;
            mdlStudentObj.Surname  = surname;
            mdlStudentObj.Address  = address;
            mdlStudentObj.PostCode = postCode;
            mdlStudentObj.City     = city;
            mdlStudentObj.Country  = country;
            mdlStudentObj.Phone    = phone;

            return(mdlStudentObj);
        }
Exemplo n.º 20
0
        public string AddStudent(MdlStudent mdlStudentObj)
        {
            DbStudent dbStudentObj = new DbStudent();
            CtrEmail  ctrEmailObj  = new CtrEmail();

            mdlStudentObj.Salt     = CreateSalt(10);
            mdlStudentObj.Password = CreateHash(mdlStudentObj.Password, mdlStudentObj.Salt);

            //mdlStudentObj.ConfirmationCode = ctrEmailObj.getCode();
            mdlStudentObj.ConfirmationCode = "none";
            string Feedback = dbStudentObj.AddStudent(mdlStudentObj);

            if (Feedback == "Error")
            {
                return(Feedback);
            }

            //ctrEmailObj.send();
            return(Feedback);
        }
Exemplo n.º 21
0
        private static MdlStudent GetFilledStudentObj(DataRow dr)
        {
            MdlStudent mdlStudentObj = new MdlStudent();

            mdlStudentObj.Email            = dr["Email"].ToString();
            mdlStudentObj.Confirmed        = (bool)dr["Confirmed"];
            mdlStudentObj.Student          = (bool)dr["Student"];
            mdlStudentObj.Score            = (int)dr["Score"];
            mdlStudentObj.NumberOfChildren = (int)dr["NumberOfChildren"];
            mdlStudentObj.Pet = (bool)dr["Pet"];
            mdlStudentObj.NumberOfCohabiters = (int)dr["NumberOfCohabitors"];
            mdlStudentObj.Disabled           = (bool)dr["Disabled"];
            mdlStudentObj.DateOfCreation     = Convert.ToDateTime(dr["DateOfCreation"]);
            mdlStudentObj.Name     = dr["Name"].ToString();
            mdlStudentObj.Surname  = dr["Surname"].ToString();
            mdlStudentObj.Address  = dr["Address"].ToString();
            mdlStudentObj.PostCode = dr["PostCode"].ToString();
            mdlStudentObj.City     = dr["City"].ToString();
            mdlStudentObj.Country  = dr["Country"].ToString();
            mdlStudentObj.Phone    = dr["Phone"].ToString();

            return(mdlStudentObj);
        }