use of ClientServerApi.CommandWrapper in project SmartCity-Market by TechnionYP5777.
the class RegisterNewCustomerTest method registerNewCustomerProfileClientAlreadyExistTest.
@Test
public void registerNewCustomerProfileClientAlreadyExistTest() {
String command = new CommandWrapper(senderID, CommandDescriptor.REGISTER_NEW_CUSTOMER, new Gson().toJson(customerProfile, CustomerProfile.class)).serialize();
CommandExecuter commandExecuter = new CommandExecuter(command);
CommandWrapper out;
try {
Mockito.doThrow(new ClientAlreadyExist()).when(sqlDatabaseConnection).registerCustomer(customerProfile.getUserName(), customerProfile.getPassword());
} catch (CriticalError e) {
fail();
} catch (ClientAlreadyExist e) {
/* success */
}
try {
Mockito.doNothing().when(sqlDatabaseConnection).setCustomerProfile(customerProfile.getUserName(), customerProfile);
} catch (CriticalError | ClientNotExist | IngredientNotExist e1) {
fail();
}
try {
Mockito.doNothing().when(sqlDatabaseConnection).setSecurityQACustomer(customerProfile.getUserName(), customerProfile.getForgetPassword());
} catch (CriticalError | ClientNotExist e) {
fail();
}
out = commandExecuter.execute(sqlDatabaseConnection);
assertEquals(ResultDescriptor.SM_USERNAME_ALREADY_EXISTS, out.getResultDescriptor());
}
use of ClientServerApi.CommandWrapper in project SmartCity-Market by TechnionYP5777.
the class RegisterNewWorkerTest method registerNewWorkerIllegalInputTest.
@Test
public void registerNewWorkerIllegalInputTest() {
int senderID = 1;
String command = new CommandWrapper(senderID, CommandDescriptor.REGISTER_NEW_WORKER, new Gson().toJson("", String.class)).serialize();
CommandExecuter commandExecuter = new CommandExecuter(command);
CommandWrapper out = commandExecuter.execute(sqlDatabaseConnection);
assertEquals(ResultDescriptor.SM_ERR, out.getResultDescriptor());
}
use of ClientServerApi.CommandWrapper in project SmartCity-Market by TechnionYP5777.
the class IsFreeCustomerNameTest method isFreeCustomerNameSuccessfulTest1.
@Test
public void isFreeCustomerNameSuccessfulTest1() {
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)).thenReturn(true);
} catch (CriticalError e) {
fail();
}
out = commandExecuter.execute(sqlDatabaseConnection);
assertEquals(ResultDescriptor.SM_OK, out.getResultDescriptor());
}
use of ClientServerApi.CommandWrapper 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 ClientServerApi.CommandWrapper 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());
}
Aggregations