use of SQLDatabase.SQLDatabaseException.ProductAlreadyExistInCatalog in project SmartCity-Market by TechnionYP5777.
the class AddProductToCatalogTest method addCatalogProductClientNotConnectedTest.
@Test
public void addCatalogProductClientNotConnectedTest() {
int senderID = 1;
CatalogProduct catalogProduct = new CatalogProduct(0, "Shoko", null, null, null, 4, null, null);
String command = new CommandWrapper(senderID, CommandDescriptor.ADD_PRODUCT_TO_CATALOG, new Gson().toJson(catalogProduct, CatalogProduct.class)).serialize();
CommandExecuter commandExecuter = new CommandExecuter(command);
CommandWrapper out;
try {
Mockito.doThrow(new ClientNotConnected()).when(sqlDatabaseConnection).addProductToCatalog(senderID, catalogProduct);
} catch (ProductAlreadyExistInCatalog | IngredientNotExist | ManufacturerNotExist | CriticalError e) {
fail();
} catch (ClientNotConnected __) {
/* Success */
}
out = commandExecuter.execute(sqlDatabaseConnection);
assertEquals(ResultDescriptor.SM_SENDER_IS_NOT_CONNECTED, out.getResultDescriptor());
}
use of SQLDatabase.SQLDatabaseException.ProductAlreadyExistInCatalog in project SmartCity-Market by TechnionYP5777.
the class AddProductToCatalogTest method addCatalogProductProductAlreadyExistInCatalogTest.
@Test
public void addCatalogProductProductAlreadyExistInCatalogTest() {
int senderID = 1;
CatalogProduct catalogProduct = new CatalogProduct(0, "Shoko", null, null, null, 4, null, null);
String command = new CommandWrapper(senderID, CommandDescriptor.ADD_PRODUCT_TO_CATALOG, new Gson().toJson(catalogProduct, CatalogProduct.class)).serialize();
CommandExecuter commandExecuter = new CommandExecuter(command);
CommandWrapper out;
try {
Mockito.doThrow(new ProductAlreadyExistInCatalog()).when(sqlDatabaseConnection).addProductToCatalog(senderID, catalogProduct);
} catch (IngredientNotExist | ManufacturerNotExist | CriticalError | ClientNotConnected e) {
fail();
} catch (ProductAlreadyExistInCatalog __) {
/* Success */
}
out = commandExecuter.execute(sqlDatabaseConnection);
assertEquals(ResultDescriptor.SM_CATALOG_PRODUCT_ALREADY_EXISTS, out.getResultDescriptor());
}
use of SQLDatabase.SQLDatabaseException.ProductAlreadyExistInCatalog in project SmartCity-Market by TechnionYP5777.
the class AddProductToCatalogTest method addCatalogProductSuccessfulTest.
@Test
public void addCatalogProductSuccessfulTest() {
int senderID = 1;
CatalogProduct catalogProduct = new CatalogProduct(0, "Shoko", null, null, null, 1.5, null, null);
String command = new CommandWrapper(senderID, CommandDescriptor.ADD_PRODUCT_TO_CATALOG, new Gson().toJson(catalogProduct, CatalogProduct.class)).serialize();
CommandExecuter commandExecuter = new CommandExecuter(command);
CommandWrapper out;
try {
Mockito.doNothing().when(sqlDatabaseConnection).addProductToCatalog(senderID, catalogProduct);
} catch (ProductAlreadyExistInCatalog | IngredientNotExist | ManufacturerNotExist | CriticalError | ClientNotConnected e) {
fail();
}
out = commandExecuter.execute(sqlDatabaseConnection);
assertEquals(ResultDescriptor.SM_OK, out.getResultDescriptor());
}
use of SQLDatabase.SQLDatabaseException.ProductAlreadyExistInCatalog 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.ProductAlreadyExistInCatalog in project SmartCity-Market by TechnionYP5777.
the class AddProductToCatalogTest method addCatalogProductCriticalErrorTest.
@Test
public void addCatalogProductCriticalErrorTest() {
int senderID = 1;
CatalogProduct catalogProduct = new CatalogProduct(0, "Shoko", null, null, null, 4, null, null);
String command = new CommandWrapper(senderID, CommandDescriptor.ADD_PRODUCT_TO_CATALOG, new Gson().toJson(catalogProduct, CatalogProduct.class)).serialize();
CommandExecuter commandExecuter = new CommandExecuter(command);
CommandWrapper out;
try {
Mockito.doThrow(new CriticalError()).when(sqlDatabaseConnection).addProductToCatalog(senderID, catalogProduct);
} catch (ProductAlreadyExistInCatalog | IngredientNotExist | ManufacturerNotExist | ClientNotConnected e) {
fail();
} catch (CriticalError __) {
/* Success */
}
out = commandExecuter.execute(sqlDatabaseConnection);
assertEquals(ResultDescriptor.SM_ERR, out.getResultDescriptor());
}
Aggregations