use of SQLDatabase.SQLDatabaseException.IngredientNotExist in project SmartCity-Market by TechnionYP5777.
the class EditIngredientTest method editIngredientClientNotConnectedTest.
@Test
public void editIngredientClientNotConnectedTest() {
String command = new CommandWrapper(senderID, CommandDescriptor.EDIT_INGREDIENT, new Gson().toJson(ingredient, Ingredient.class)).serialize();
CommandExecuter commandExecuter = new CommandExecuter(command);
CommandWrapper out;
try {
Mockito.doThrow(new ClientNotConnected()).when(sqlDatabaseConnection).editIngredient(senderID, ingredient);
} catch (CriticalError | IngredientNotExist e1) {
fail();
} catch (ClientNotConnected e) {
/* success */
}
out = commandExecuter.execute(sqlDatabaseConnection);
assertEquals(ResultDescriptor.SM_SENDER_IS_NOT_CONNECTED, out.getResultDescriptor());
}
use of SQLDatabase.SQLDatabaseException.IngredientNotExist in project SmartCity-Market by TechnionYP5777.
the class EditIngredientTest method editIngredientIngredientNotExistTest.
@Test
public void editIngredientIngredientNotExistTest() {
String command = new CommandWrapper(senderID, CommandDescriptor.EDIT_INGREDIENT, new Gson().toJson(ingredient, Ingredient.class)).serialize();
CommandExecuter commandExecuter = new CommandExecuter(command);
CommandWrapper out;
try {
Mockito.doThrow(new IngredientNotExist()).when(sqlDatabaseConnection).editIngredient(senderID, ingredient);
} catch (CriticalError | ClientNotConnected e1) {
fail();
} catch (IngredientNotExist e) {
/* success */
}
out = commandExecuter.execute(sqlDatabaseConnection);
assertEquals(ResultDescriptor.PARAM_ID_IS_NOT_EXIST, out.getResultDescriptor());
}
use of SQLDatabase.SQLDatabaseException.IngredientNotExist in project SmartCity-Market by TechnionYP5777.
the class CommandExecuter method editProductFromCatalogCommand.
private void editProductFromCatalogCommand(SQLDatabaseConnection c) {
CatalogProduct catalogProduct = null;
log.info("Edit Product From Catalog command called");
try {
catalogProduct = Serialization.deserialize(inCommandWrapper.getData(), CatalogProduct.class);
} catch (java.lang.RuntimeException e) {
log.fatal("Failed to parse data for Edit Product From Catalog command");
outCommandWrapper = new CommandWrapper(ResultDescriptor.SM_ERR);
return;
}
if (!catalogProduct.isValid()) {
log.info("Edit Product From Catalog command failed, barcode can't be negative");
outCommandWrapper = new CommandWrapper(ResultDescriptor.SM_INVALID_PARAMETER);
} else {
try {
outCommandWrapper = new CommandWrapper(ResultDescriptor.SM_OK);
c.editProductInCatalog(inCommandWrapper.getSenderID(), catalogProduct);
} catch (CriticalError e) {
log.fatal("Edit Product From Catalog command failed, critical error occured from SQL Database connection");
outCommandWrapper = new CommandWrapper(ResultDescriptor.SM_ERR);
} catch (ClientNotConnected e) {
log.info("Edit Product From Catalog command failed, username dosen't login to the system");
outCommandWrapper = new CommandWrapper(ResultDescriptor.SM_SENDER_IS_NOT_CONNECTED);
} catch (ProductNotExistInCatalog e) {
log.info("Edit Product From Catalog command failed, product dosen't exist in the system");
outCommandWrapper = new CommandWrapper(ResultDescriptor.SM_CATALOG_PRODUCT_DOES_NOT_EXIST);
} catch (IngredientNotExist e) {
log.info("Edit Product From Catalog command failed, ingredient in the product dosen't exist in the system");
outCommandWrapper = new CommandWrapper(ResultDescriptor.SM_INVALID_PARAMETER);
} catch (ManufacturerNotExist e) {
log.info("Edit Product From Catalog command failed, manufacturer in the product dosen't exist in the system");
outCommandWrapper = new CommandWrapper(ResultDescriptor.SM_INVALID_PARAMETER);
}
log.info("Edit Product From Catalog with product " + catalogProduct + " finished");
}
}
use of SQLDatabase.SQLDatabaseException.IngredientNotExist in project SmartCity-Market by TechnionYP5777.
the class CommandExecuter method addProductToCatalogCommand.
private void addProductToCatalogCommand(SQLDatabaseConnection c) {
CatalogProduct catalogProduct = null;
log.info("Add Product To Catalog command called");
try {
catalogProduct = Serialization.deserialize(inCommandWrapper.getData(), CatalogProduct.class);
} catch (java.lang.RuntimeException e) {
log.fatal("Failed to parse data for Add Product To Catalog command");
outCommandWrapper = new CommandWrapper(ResultDescriptor.SM_ERR);
return;
}
if (!catalogProduct.isValid()) {
log.info("Add Product To Catalog command failed, product is invalid");
outCommandWrapper = new CommandWrapper(ResultDescriptor.SM_INVALID_PARAMETER);
} else {
try {
c.addProductToCatalog(inCommandWrapper.getSenderID(), catalogProduct);
outCommandWrapper = new CommandWrapper(ResultDescriptor.SM_OK);
} catch (CriticalError e) {
log.fatal("Add Product To Catalog command failed, critical error occured from SQL Database connection");
outCommandWrapper = new CommandWrapper(ResultDescriptor.SM_ERR);
} catch (ClientNotConnected e) {
log.info("Add Product To Catalog command failed, username dosen't login to the system");
outCommandWrapper = new CommandWrapper(ResultDescriptor.SM_SENDER_IS_NOT_CONNECTED);
} catch (ProductAlreadyExistInCatalog e) {
log.info("Add Product To Catalog command failed, product already exist in the system");
outCommandWrapper = new CommandWrapper(ResultDescriptor.SM_CATALOG_PRODUCT_ALREADY_EXISTS);
} catch (IngredientNotExist e) {
log.info("Add Product To Catalog command failed, ingredient in the product dosen't exist in the system");
outCommandWrapper = new CommandWrapper(ResultDescriptor.SM_INVALID_PARAMETER);
} catch (ManufacturerNotExist e) {
log.info("Add Product To Catalog command failed, manufacturer in the product dosen't exist in the system");
outCommandWrapper = new CommandWrapper(ResultDescriptor.SM_INVALID_PARAMETER);
}
log.info("Add Product To Catalog with product " + catalogProduct + " finished");
}
}
use of SQLDatabase.SQLDatabaseException.IngredientNotExist in project SmartCity-Market by TechnionYP5777.
the class CommandExecuter method updateCustomerProfile.
private void updateCustomerProfile(SQLDatabaseConnection c) {
CustomerProfile profile = null;
log.info("Update customer from serderID " + inCommandWrapper.getSenderID() + " command called");
try {
profile = Serialization.deserialize(inCommandWrapper.getData(), CustomerProfile.class);
} catch (java.lang.RuntimeException e) {
log.fatal("Failed to parse data for Update Customer Data command");
outCommandWrapper = new CommandWrapper(ResultDescriptor.SM_ERR);
return;
}
log.info("Trying to update customer " + profile + " to system");
try {
c.setCustomerProfile(profile.getUserName(), profile);
outCommandWrapper = new CommandWrapper(ResultDescriptor.SM_OK);
} catch (CriticalError e) {
log.fatal("Update customer command failed, critical error occured from SQL Database connection");
outCommandWrapper = new CommandWrapper(ResultDescriptor.SM_ERR);
} catch (ClientNotExist e) {
log.info("Update customer command failed, client is not exist");
outCommandWrapper = new CommandWrapper(ResultDescriptor.SM_USERNAME_DOES_NOT_EXIST);
} catch (IngredientNotExist e) {
log.info("Update customer command failed, client try to use not existed ingredient");
outCommandWrapper = new CommandWrapper(ResultDescriptor.SM_INVALID_PARAMETER);
}
log.info("Update customer " + profile + " to system finished");
}
Aggregations