Esempio n. 1
0
        public void BuyPropertyNotEnoughMoney()
        {
            TestEnvironment.DeleteTestUser();
            UserModel user = TestEnvironment.GetTestUserModel();
            ServiceProvider.GetUserRegistrationService().Register(user);
            int id = ServiceProvider.GetUserRegistrationService().Connect(user);
            ServiceProvider.GetPlayerService().AddPlayer("signalrId", id);
            ServerPlayerModel player = ServiceProvider.GetPlayerService().GetPlayer("signalrId");

            ServerPropertyModel model = new ServerPropertyModel();
            model.PropertyName = "TestProperty";
            model.Price = 200;
            model.PropertyDescription = "TestDes";
            model.Threshold = 1000;

            int createdId = ServiceProvider.GetPropertiesService().AddProperty(model);

            List<ServerPropertyModel> allProperties = ServiceProvider.GetPropertiesService().GetProperties();
            ServerPropertyModel createdProperty = allProperties.FirstOrDefault(x => x.PropertyId == createdId);

            List<ServerPropertyModel> playerProperties = ServiceProvider.GetPropertiesService().GetUserProperties(player);
            ServiceProvider.GetUserService().SetUserBankAccount(player, 100);

            Assert.AreEqual(playerProperties.Count, 0);
            ServerNotificationMessage message = ServiceProvider.GetPropertiesService().BuyProperty("signalrId", createdProperty);

            int remainedMoney = ServiceProvider.GetUserService().GetUserBankAccount(player);
            Assert.AreEqual(100, remainedMoney);
            Assert.AreEqual(message.MessageType, EMessageType.error);
            ServiceProvider.GetPlayerService().RemovePlayer("signalrId");
            TestEnvironment.DeleteTestUser();
            ServiceProvider.GetPropertiesService().DeleteProperty(createdId);
        }
Esempio n. 2
0
 internal static ServerPropertyModel GetTestPropertyModel()
 {
     ServerPropertyModel property = new ServerPropertyModel();
     property.PropertyName = "barTest";
     property.Price = 1000;
     property.Threshold = 1;
     property.PropertyDescription = "nice big bar, contact to nigociate";
     return property;
 }
Esempio n. 3
0
        public void AddAndDeletePropertyWorksCorrectly()
        {
            ServerPropertyModel model = new ServerPropertyModel();
            model.PropertyName = "TestProperty";
            model.Price = 10000;
            model.PropertyDescription = "TestDes";
            model.Threshold = 1000;

            int createdId = ServiceProvider.GetPropertiesService().AddProperty(model);
            List<ServerPropertyModel> properties = ServiceProvider.GetPropertiesService().GetProperties();

            Assert.IsTrue(properties.Count != 0);
            ServerPropertyModel candidate = properties.FirstOrDefault(x => x.PropertyId == createdId);
            Assert.IsNotNull(candidate);
            Assert.AreEqual(candidate.PropertyName, model.PropertyName);
            Assert.AreEqual(candidate.PropertyDescription, model.PropertyDescription);

            ServiceProvider.GetPropertiesService().DeleteProperty(createdId);

            Assert.IsNull(ServiceProvider.GetPropertiesService().GetProperties().FirstOrDefault(x => x.PropertyId == createdId));
        }
Esempio n. 4
0
        internal static void AddPropertyTest(ServerPropertyModel property)
        {
            if (property == null)
                throw new ArgumentException("parameter property is null, cannot register");
            using (SqlConnection conn = SqlConnectionService.GetConnection())
            {
                string query =
                    "INSERT INTO dbo.ListProperties (NameProperty, PropertyDescription, Threshold, Price) values (@NameProperty, @PropertyDescription, @Threshold, @Price) ";
                using (SqlCommand cmd = new SqlCommand(query, conn))
                {
                    conn.Open();

                    cmd.Parameters.AddWithValue("@NameProperty", property.PropertyName);
                    cmd.Parameters.AddWithValue("@PropertyDescription", property.PropertyDescription);
                    cmd.Parameters.AddWithValue("@Threshold", 5);
                    cmd.Parameters.AddWithValue("@Price", 1000);
                    cmd.ExecuteNonQuery();

                    conn.Close();
                }
            }
        }
Esempio n. 5
0
        public int AddProperty(ServerPropertyModel model)
        {
            if (model == null) throw new ArgumentException("parameter model is null");
            if (model.PropertyName == null || model.PropertyDescription == null) throw new ArgumentException("an attribute of the property model is null");

            using (SqlConnection conn = SqlConnectionService.GetConnection())
            {
                string query = "INSERT INTO dbo.ListProperties (NameProperty, PropertyDescription, Threshold, Price) OUTPUT INSERTED.ListPropertyId values (@Name, @Des, @Thres, @Price)";
                using (SqlCommand cmd = new SqlCommand(query, conn))
                {
                    conn.Open();
                    cmd.Parameters.AddWithValue("@Name", model.PropertyName);
                    cmd.Parameters.AddWithValue("@Des", model.PropertyDescription);
                    cmd.Parameters.AddWithValue("@Thres", model.Threshold);
                    cmd.Parameters.AddWithValue("@Price", model.Price);

                    int lgn = (int)cmd.ExecuteScalar();

                    conn.Close();

                    return lgn;
                }
            }
        }
Esempio n. 6
0
        public ServerNotificationMessage BuyProperty(string connectionId, ServerPropertyModel property)
        {
            if (connectionId == null) throw new ArgumentException("parameter user is null");
            if (property == null) throw new ArgumentException("parameter property is null");

            ServerNotificationMessage message = new ServerNotificationMessage() { Content = "error", MessageType = EMessageType.error };

            int count = 0, threshold = -1;
            using (SqlConnection conn = SqlConnectionService.GetConnection())
            {
                string query = string.Format("SELECT COUNT (u.ListPropertyId) as count, l.Threshold FROM dbo.ListProperties l JOIN UserProperties u ON u.ListPropertyId = l.ListPropertyId WHERE u.ListPropertyId = @PropertyId GROUP BY Threshold");
                using (SqlCommand cmd = new SqlCommand(query, conn))
                {
                    conn.Open();

                    cmd.Parameters.AddWithValue("@PropertyId", property.PropertyId);
                    var reader = cmd.ExecuteReader();
                    while (reader.Read())
                    {
                        count = Convert.ToInt32(reader["count"]);
                        threshold = Convert.ToInt32(reader["Threshold"]);
                    }

                    conn.Close();
                }
            }

            if (count < threshold || (count == 0 && threshold == -1) || threshold == 0)
            {
                var properties = GetUserProperties(connectionId);

                bool alreadyHas = properties.FirstOrDefault(x => x.PropertyId == property.PropertyId) != null;
                int money = ServiceProvider.GetUserService().GetUserBankAccount(connectionId);
                int id = ServiceProvider.GetPlayerService().GetPlayer(connectionId).UserId;
                if (!alreadyHas && money >= property.Price)
                {
                    using (SqlConnection conn = SqlConnectionService.GetConnection())
                    {
                        string query =
                            "INSERT INTO dbo.UserProperties (UserId, ListPropertyId) values ( @UserId, @ListPropertyId) ";
                        using (SqlCommand cmd = new SqlCommand(query, conn))
                        {
                            conn.Open();

                            cmd.Parameters.AddWithValue("@UserId", id);
                            cmd.Parameters.AddWithValue("@ListPropertyId", property.PropertyId);

                            cmd.ExecuteNonQuery();

                            conn.Close();
                        }
                    }
                    int remainingMoney = money - property.Price;
                    ServiceProvider.GetUserService().SetUserBankAccount(connectionId, remainingMoney);
                    message.Content = "Success";
                    message.MessageType = EMessageType.success;
                }
                else
                {
                    if (alreadyHas)
                    {
                        message.Content = "You already have this property";
                    }
                    else
                    {
                        message.Content = "You dont have enough money";
                    }

                }
            }
            else
            {
                message.Content = "Error, this propery reached its limit";
            }
            return message;
        }
Esempio n. 7
0
        public ServerNotificationMessage MakePropertyInSell(string connectionId, ServerPropertyModel property, int price)
        {
            if (connectionId == null) throw new ArgumentException("parameter user is null");
            if (property == null) throw new ArgumentException("parameter property is null");
            if (price <= 0) throw new ArgumentException("price must be greater than 0");

            ServerNotificationMessage message = new ServerNotificationMessage() { Content = "error", MessageType = EMessageType.error };

            using (SqlConnection conn = SqlConnectionService.GetConnection())
            {
                var properties = GetUserProperties(connectionId);
                bool alreadyHas = properties.FirstOrDefault(x => x.PropertyId == property.PropertyId) != null;
                bool alreadyInSell = GetPropertiesInSell().FirstOrDefault(x => x.PropertyId == property.PropertyId) !=
                                     null;
                int id = ServiceProvider.GetPlayerService().GetPlayer(connectionId).UserId;

                if (alreadyInSell)
                {
                    message.Content = "This property is already in sell";
                    message.MessageType = EMessageType.error;
                    return message;
                }

                if (alreadyHas)
                {
                    {
                        string query =
                    "INSERT INTO dbo.PropertiesToSell (UserId, ListPropertyId, Price) values ( @UserId, @ListPropertyId, @Price) ";
                        using (SqlCommand cmd = new SqlCommand(query, conn))
                        {
                            conn.Open();
                            cmd.Parameters.AddWithValue("@UserId", id);
                            cmd.Parameters.AddWithValue("@ListPropertyId", property.PropertyId);
                            cmd.Parameters.AddWithValue("@Price", price);
                            cmd.ExecuteNonQuery();
                            conn.Close();
                        }
                        message.Content = "Success ! ";
                        message.MessageType = EMessageType.success;
                    }
                }
                else
                {
                    message.Content = "You already own this property !";
                }
            }

            return message;
        }
Esempio n. 8
0
        public List<ServerPropertyModel> GetUserProperties(ServerPlayerModel user)
        {
            if (user == null) throw new ArgumentException("parameter user is null");
            using (SqlConnection conn = SqlConnectionService.GetConnection())
            {
                string query = ("SELECT l.ListPropertyId, l.NameProperty, l.PropertyDescription, l.Threshold, l.Price from dbo.UserProperties p JOIN dbo.Users u on p.UserId = u.UserId JOIN dbo.ListProperties l ON l.ListPropertyId = p.ListPropertyId WHERE p.UserId = @id");
                using (SqlCommand cmd = new SqlCommand(query, conn))
                {
                    List<ServerPropertyModel> Properties = new List<ServerPropertyModel>();
                    conn.Open();
                    cmd.Parameters.AddWithValue("@id", user.UserId);
                    var reader = cmd.ExecuteReader();
                    while (reader.Read())
                    {
                        ServerPropertyModel propertyModel = new ServerPropertyModel();
                        propertyModel.PropertyId = Convert.ToInt32(reader["ListPropertyId"]);
                        propertyModel.PropertyName = (reader["NameProperty"]).ToString();
                        propertyModel.PropertyDescription = (reader["PropertyDescription"]).ToString();
                        propertyModel.Threshold = Convert.ToInt32(reader["Threshold"]);
                        propertyModel.Price = Convert.ToInt32(reader["Price"]);
                        Properties.Add(propertyModel);
                    }

                    conn.Close();

                    return Properties;
                }
            }
        }
Esempio n. 9
0
        public ServerPropertyModel GetProperty(int propertyId)
        {
            using (SqlConnection conn = SqlConnectionService.GetConnection())
            {
                string query = string.Format("SELECT * from dbo.ListProperties WHERE ListPropertyId = @Id");
                using (SqlCommand cmd = new SqlCommand(query, conn))
                {
                    ServerPropertyModel property = new ServerPropertyModel();

                    conn.Open();
                    cmd.Parameters.AddWithValue("@Id", propertyId);
                    var reader = cmd.ExecuteReader();
                    while (reader.Read())
                    {
                        property.PropertyId = Convert.ToInt32(reader["ListPropertyId"]);
                        property.PropertyName = (reader["NameProperty"]).ToString();
                        property.PropertyDescription = (reader["PropertyDescription"]).ToString();
                        property.Threshold = Convert.ToInt32(reader["Threshold"]);
                        property.Price = Convert.ToInt32(reader["Price"]);
                        break;
                    }

                    conn.Close();

                    return property;
                }
            }
        }
Esempio n. 10
0
        public List<ServerPropertyModel> GetProperties()
        {
            using (SqlConnection conn = SqlConnectionService.GetConnection())
            {
                string query = string.Format("SELECT * from dbo.ListProperties");
                using (SqlCommand cmd = new SqlCommand(query, conn))
                {
                    List<ServerPropertyModel> Properties = new List<ServerPropertyModel>();
                    conn.Open();
                    var reader = cmd.ExecuteReader();
                    while (reader.Read())
                    {
                        ServerPropertyModel propertyModel = new ServerPropertyModel();
                        propertyModel.PropertyId = Convert.ToInt32(reader["ListPropertyId"]);
                        propertyModel.PropertyName = (reader["NameProperty"]).ToString();
                        propertyModel.PropertyDescription = (reader["PropertyDescription"]).ToString();
                        propertyModel.Threshold = Convert.ToInt32(reader["Threshold"]);
                        propertyModel.Price = Convert.ToInt32(reader["Price"]);
                        Properties.Add(propertyModel);
                    }

                    conn.Close();

                    return Properties;
                }
            }
        }
Esempio n. 11
0
 public bool DeleteProperty(ServerPropertyModel model)
 {
     if (model == null) throw new ArgumentException("parameter model is null");
     return DeleteProperty(model.PropertyId);
 }
Esempio n. 12
0
 public void BuyPropertyFromUser(string connectionId, string connectionId2, ServerPropertyModel property)
 {
     if (connectionId == null) throw new ArgumentException("parameter user is null");
     if (connectionId2 == null) throw new ArgumentException("parameter user2 is null");
     if (property == null) throw new ArgumentException("parameter property is null");
     using (SqlConnection conn = SqlConnectionService.GetConnection())
     {
         var properties = GetUserProperties(connectionId);
         bool alreadyHas = properties.FirstOrDefault(x => x.PropertyId == property.PropertyId) != null;
         int id = ServiceProvider.GetPlayerService().GetPlayer(connectionId).UserId;
         int id2 = ServiceProvider.GetPlayerService().GetPlayer(connectionId2).UserId;
         int moneyUser1 = ServiceProvider.GetUserService().GetUserBankAccount(connectionId2);
         int moneyUser2 = ServiceProvider.GetUserService().GetUserBankAccount(connectionId2);
         if (alreadyHas && moneyUser2 >= property.Price)
         {
             string query =
                 "UPDATE dbo.UserProperties SET UserId = @UserId WHERE ListPropertyId = @propertyUserId "
                 + "AND UserId = @UserId1";
             using (SqlCommand cmd = new SqlCommand(query, conn))
             {
                 conn.Open();
                 cmd.Parameters.AddWithValue("@UserId", id2);
                 cmd.Parameters.AddWithValue("@UserId1", id);
                 cmd.Parameters.AddWithValue("@propertyUserId", property.PropertyId);
                 cmd.ExecuteNonQuery();
                 conn.Close();
             }
             int remainingMoneyUser1 = moneyUser2 + property.Price;
             int remainingMoneyUser2 = moneyUser2 - property.Price;
             ServiceProvider.GetUserService().SetUserBankAccount(connectionId, remainingMoneyUser1);
             ServiceProvider.GetUserService().SetUserBankAccount(connectionId2, remainingMoneyUser2);
         }
     }
 }
Esempio n. 13
0
        public void PropertyToSellTest()
        {
            TestEnvironment.DeleteTestUser();
            UserModel user = TestEnvironment.GetTestUserModel();
            ServiceProvider.GetUserRegistrationService().Register(user);
            int id = ServiceProvider.GetUserRegistrationService().Connect(user);
            ServiceProvider.GetPlayerService().AddPlayer("signalrId", id);
            ServerPlayerModel player = ServiceProvider.GetPlayerService().GetPlayer("signalrId");
            ServiceProvider.GetUserService().SetUserBankAccount(player, 2000);
            ServiceProvider.GetPropertiesService().GetUserProperties(player);
            ServerPropertyModel model = new ServerPropertyModel();
            model.PropertyName = "TestProperty";
            model.Price = 100;
            model.PropertyDescription = "TestDes";
            model.Threshold = 1000;

            int createdId = ServiceProvider.GetPropertiesService().AddProperty(model);

            List<ServerPropertyModel> allProperties = ServiceProvider.GetPropertiesService().GetProperties();
            ServerPropertyModel createdProperty = allProperties.FirstOrDefault(x => x.PropertyId == createdId);
            ServiceProvider.GetPropertiesService().BuyProperty("signalrId", createdProperty);
            ServiceProvider.GetPropertiesService().MakePropertyInSell("signalrId", createdProperty, 200);
            List<ServerPropertyUserModel> PropertiesUsersInSell = ServiceProvider.GetPropertiesService().GetPropertiesInSell();
            Assert.IsTrue(PropertiesUsersInSell.FirstOrDefault(x => x.UserId == id)!= null);
            TestEnvironment.DeleteTestUser();
        }