Search in sources :

Example 6 with UpdateHostPasswordCommand

use of com.cloud.legacymodel.communication.command.UpdateHostPasswordCommand in project cosmic by MissionCriticalCloud.

the class NotAValidCommand method testUpdateHostPasswordCommand.

@Test
public void testUpdateHostPasswordCommand() {
    final XenServerUtilitiesHelper xenServerUtilitiesHelper = Mockito.mock(XenServerUtilitiesHelper.class);
    final Pair<Boolean, String> result = Mockito.mock(Pair.class);
    final UpdateHostPasswordCommand updatePwd = new UpdateHostPasswordCommand("test", "123", "127.0.0.1");
    when(this.citrixResourceBase.getPwdFromQueue()).thenReturn("password");
    final String hostIp = updatePwd.getHostIp();
    final String username = updatePwd.getUsername();
    final String hostPasswd = this.citrixResourceBase.getPwdFromQueue();
    final String newPassword = updatePwd.getNewPassword();
    final StringBuilder cmdLine = new StringBuilder();
    cmdLine.append(XenServerUtilitiesHelper.SCRIPT_CMD_PATH).append(VRScripts.UPDATE_HOST_PASSWD).append(' ').append(username).append(' ').append(newPassword);
    when(this.citrixResourceBase.getXenServerUtilitiesHelper()).thenReturn(xenServerUtilitiesHelper);
    when(xenServerUtilitiesHelper.buildCommandLine(XenServerUtilitiesHelper.SCRIPT_CMD_PATH, VRScripts.UPDATE_HOST_PASSWD, username, newPassword)).thenReturn(cmdLine.toString());
    try {
        when(xenServerUtilitiesHelper.executeSshWrapper(hostIp, 22, username, null, hostPasswd, cmdLine.toString())).thenReturn(result);
        when(result.first()).thenReturn(true);
        when(result.second()).thenReturn("");
    } catch (final Exception e) {
        fail(e.getMessage());
    }
    final CitrixRequestWrapper wrapper = CitrixRequestWrapper.getInstance();
    assertNotNull(wrapper);
    final Answer answer = wrapper.execute(updatePwd, this.citrixResourceBase);
    verify(this.citrixResourceBase, times(2)).getPwdFromQueue();
    verify(this.citrixResourceBase, times(1)).getXenServerUtilitiesHelper();
    verify(xenServerUtilitiesHelper, times(1)).buildCommandLine(XenServerUtilitiesHelper.SCRIPT_CMD_PATH, VRScripts.UPDATE_HOST_PASSWD, username, newPassword);
    try {
        verify(xenServerUtilitiesHelper, times(1)).executeSshWrapper(hostIp, 22, username, null, hostPasswd, cmdLine.toString());
    } catch (final Exception e) {
        fail(e.getMessage());
    }
    verify(result, times(1)).first();
    verify(result, times(1)).second();
    assertTrue(answer.getResult());
}
Also used : RebootAnswer(com.cloud.legacymodel.communication.answer.RebootAnswer) Answer(com.cloud.legacymodel.communication.answer.Answer) CreateAnswer(com.cloud.legacymodel.communication.answer.CreateAnswer) AttachAnswer(com.cloud.legacymodel.communication.answer.AttachAnswer) UpdateHostPasswordCommand(com.cloud.legacymodel.communication.command.UpdateHostPasswordCommand) XenAPIException(com.xensource.xenapi.Types.XenAPIException) XmlRpcException(org.apache.xmlrpc.XmlRpcException) Test(org.junit.Test) PrepareForTest(org.powermock.core.classloader.annotations.PrepareForTest)

Example 7 with UpdateHostPasswordCommand

use of com.cloud.legacymodel.communication.command.UpdateHostPasswordCommand in project cosmic by MissionCriticalCloud.

the class ResourceManagerImpl method doUpdateHostPassword.

private boolean doUpdateHostPassword(final long hostId) {
    if (!this._agentMgr.isAgentAttached(hostId)) {
        return false;
    }
    DetailVO nv = this._hostDetailsDao.findDetail(hostId, ApiConstants.USERNAME);
    final String username = nv.getValue();
    nv = this._hostDetailsDao.findDetail(hostId, ApiConstants.PASSWORD);
    final String password = nv.getValue();
    final HostVO host = this._hostDao.findById(hostId);
    final String hostIpAddress = host.getPrivateIpAddress();
    final UpdateHostPasswordCommand cmd = new UpdateHostPasswordCommand(username, password, hostIpAddress);
    final Answer answer = this._agentMgr.easySend(hostId, cmd);
    s_logger.info("Result returned from update host password ==> " + answer.getDetails());
    return answer.getResult();
}
Also used : UnsupportedAnswer(com.cloud.legacymodel.communication.answer.UnsupportedAnswer) GetHostStatsAnswer(com.cloud.legacymodel.communication.answer.GetHostStatsAnswer) Answer(com.cloud.legacymodel.communication.answer.Answer) GetGPUStatsAnswer(com.cloud.legacymodel.communication.answer.GetGPUStatsAnswer) MaintainAnswer(com.cloud.legacymodel.communication.answer.MaintainAnswer) DetailVO(com.cloud.host.DetailVO) UpdateHostPasswordCommand(com.cloud.legacymodel.communication.command.UpdateHostPasswordCommand) StoragePoolHostVO(com.cloud.storage.StoragePoolHostVO) HostVO(com.cloud.host.HostVO)

Aggregations

Answer (com.cloud.legacymodel.communication.answer.Answer)7 UpdateHostPasswordCommand (com.cloud.legacymodel.communication.command.UpdateHostPasswordCommand)7 Test (org.junit.Test)6 AttachAnswer (com.cloud.legacymodel.communication.answer.AttachAnswer)5 CreateAnswer (com.cloud.legacymodel.communication.answer.CreateAnswer)3 RebootAnswer (com.cloud.legacymodel.communication.answer.RebootAnswer)3 XenAPIException (com.xensource.xenapi.Types.XenAPIException)3 XmlRpcException (org.apache.xmlrpc.XmlRpcException)3 PrepareForTest (org.powermock.core.classloader.annotations.PrepareForTest)3 LibvirtRequestWrapper (com.cloud.agent.resource.kvm.wrapper.LibvirtRequestWrapper)2 LibvirtUtilitiesHelper (com.cloud.agent.resource.kvm.wrapper.LibvirtUtilitiesHelper)2 CheckRouterAnswer (com.cloud.legacymodel.communication.answer.CheckRouterAnswer)2 Script (com.cloud.utils.script.Script)2 DetailVO (com.cloud.host.DetailVO)1 HostVO (com.cloud.host.HostVO)1 GetGPUStatsAnswer (com.cloud.legacymodel.communication.answer.GetGPUStatsAnswer)1 GetHostStatsAnswer (com.cloud.legacymodel.communication.answer.GetHostStatsAnswer)1 MaintainAnswer (com.cloud.legacymodel.communication.answer.MaintainAnswer)1 UnsupportedAnswer (com.cloud.legacymodel.communication.answer.UnsupportedAnswer)1 GetHostStatsCommand (com.cloud.legacymodel.communication.command.GetHostStatsCommand)1