use of CommandHandler.CommandExecuter in project SmartCity-Market by TechnionYP5777.
the class IsFreeCustomerNameTest method isFreeCustomerNameCriticalErrorTest.
@Test
public void isFreeCustomerNameCriticalErrorTest() {
String command = new CommandWrapper(senderID, CommandDescriptor.IS_FREE_CUSTOMER_NAME, new Gson().toJson(username, String.class)).serialize();
CommandExecuter commandExecuter = new CommandExecuter(command);
CommandWrapper out;
try {
Mockito.when(sqlDatabaseConnection.isCustomerUsernameAvailable(username)).thenThrow(new CriticalError());
} catch (CriticalError e) {
/* success */
}
out = commandExecuter.execute(sqlDatabaseConnection);
assertEquals(ResultDescriptor.SM_ERR, out.getResultDescriptor());
}
use of CommandHandler.CommandExecuter in project SmartCity-Market by TechnionYP5777.
the class IsLoggedInTest method isLoggedInSuccessfulTest.
@Test
public void isLoggedInSuccessfulTest() {
int senderID = 0;
String command = new CommandWrapper(senderID, CommandDescriptor.IS_LOGGED_IN).serialize();
CommandExecuter commandExecuter = new CommandExecuter(command);
CommandWrapper out;
try {
Mockito.when(sqlDatabaseConnection.isClientLoggedIn(senderID)).thenReturn(true);
} catch (CriticalError e) {
fail();
}
out = commandExecuter.execute(sqlDatabaseConnection);
assertEquals(true, new Gson().fromJson(out.getData(), Boolean.class));
assertEquals(ResultDescriptor.SM_OK, out.getResultDescriptor());
}
use of CommandHandler.CommandExecuter in project SmartCity-Market by TechnionYP5777.
the class LoadGroceryListTest method loadGroceryListNoGroceryListToRestoreTest.
@Test
public void loadGroceryListNoGroceryListToRestoreTest() {
int senderID = 1;
String command = new CommandWrapper(senderID, CommandDescriptor.LOAD_GROCERY_LIST).serialize();
CommandExecuter commandExecuter = new CommandExecuter(command);
CommandWrapper out;
try {
Mockito.when(sqlDatabaseConnection.cartRestoreGroceryList(senderID)).thenThrow(new NoGroceryListToRestore());
} catch (NoGroceryListToRestore __) {
/* Success */
} catch (CriticalError e) {
fail();
}
out = commandExecuter.execute(sqlDatabaseConnection);
assertEquals(ResultDescriptor.SM_SENDER_IS_NOT_CONNECTED, out.getResultDescriptor());
}
use of CommandHandler.CommandExecuter in project SmartCity-Market by TechnionYP5777.
the class RemoveManufacturerTest method removeManufacturerCriticalErrorTest.
@Test
public void removeManufacturerCriticalErrorTest() {
String command = new CommandWrapper(senderID, CommandDescriptor.REMOVE_MANUFACTURER, new Gson().toJson(manufacturer, Manufacturer.class)).serialize();
CommandExecuter commandExecuter = new CommandExecuter(command);
CommandWrapper out;
try {
Mockito.doThrow(new CriticalError()).when(sqlDatabaseConnection).removeManufacturer(senderID, manufacturer);
} catch (ClientNotConnected | ManufacturerNotExist | ManufacturerStillUsed e1) {
fail();
} catch (CriticalError e) {
/* success */
}
out = commandExecuter.execute(sqlDatabaseConnection);
assertEquals(ResultDescriptor.SM_ERR, out.getResultDescriptor());
}
use of CommandHandler.CommandExecuter in project SmartCity-Market by TechnionYP5777.
the class RemoveProductFromCatalogTest method removeCatalogProductInvalidParamTest.
@Test
public void removeCatalogProductInvalidParamTest() {
int senderID = 1;
SmartCode smartCode = new SmartCode(-1, null);
String command = new CommandWrapper(senderID, CommandDescriptor.REMOVE_PRODUCT_FROM_CATALOG, new Gson().toJson(smartCode, SmartCode.class)).serialize();
CommandExecuter commandExecuter = new CommandExecuter(command);
CommandWrapper out;
try {
Mockito.doNothing().when(sqlDatabaseConnection).removeProductFromCatalog(senderID, smartCode);
} catch (CriticalError | ClientNotConnected | ProductNotExistInCatalog | ProductStillForSale e) {
fail();
}
out = commandExecuter.execute(sqlDatabaseConnection);
assertEquals(ResultDescriptor.SM_INVALID_PARAMETER, out.getResultDescriptor());
}
Aggregations