/** * Copyright (c) 2009--2014 Red Hat, Inc. * * This software is licensed to you under the GNU General Public License, * version 2 (GPLv2). There is NO WARRANTY for this software, express or * implied, including the implied warranties of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 * along with this software; if not, see * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * * Red Hat trademarks are not licensed under GPLv2. No permission is * granted to use or replicate Red Hat trademarks that are incorporated * in this software or its documentation. */ package com.redhat.rhn.frontend.action.kickstart.test; import com.redhat.rhn.common.conf.ConfigDefaults; import com.redhat.rhn.domain.channel.Channel; import com.redhat.rhn.domain.channel.test.ChannelFactoryTest; import com.redhat.rhn.domain.kickstart.KickstartData; import com.redhat.rhn.domain.kickstart.KickstartFactory; import com.redhat.rhn.domain.kickstart.KickstartSession; import com.redhat.rhn.domain.kickstart.test.KickstartDataTest; import com.redhat.rhn.domain.role.RoleFactory; import com.redhat.rhn.domain.server.NetworkInterface; import com.redhat.rhn.domain.server.Server; import com.redhat.rhn.domain.server.ServerConstants; import com.redhat.rhn.domain.server.ServerFactory; import com.redhat.rhn.domain.server.test.NetworkInterfaceTest; import com.redhat.rhn.domain.server.test.NetworkTest; import com.redhat.rhn.domain.server.test.ServerFactoryTest; import com.redhat.rhn.domain.token.ActivationKey; import com.redhat.rhn.domain.token.ActivationKeyFactory; import com.redhat.rhn.domain.token.Token; import com.redhat.rhn.domain.token.TokenFactory; import com.redhat.rhn.domain.user.User; import com.redhat.rhn.frontend.action.kickstart.ScheduleKickstartWizardAction; import com.redhat.rhn.frontend.context.Context; import com.redhat.rhn.frontend.dto.ProfileDto; import com.redhat.rhn.frontend.struts.RequestContext; import com.redhat.rhn.manager.kickstart.KickstartLister; import com.redhat.rhn.manager.kickstart.KickstartScheduleCommand; import com.redhat.rhn.manager.profile.test.ProfileManagerTest; import com.redhat.rhn.manager.rhnpackage.test.PackageManagerTest; import com.redhat.rhn.manager.system.SystemManager; import com.redhat.rhn.testing.RhnMockStrutsTestCase; import com.redhat.rhn.testing.TestUtils; import java.util.HashMap; import java.util.HashSet; import java.util.List; import java.util.Locale; import java.util.Set; import java.util.TimeZone; public class ScheduleKickstartWizardTest extends RhnMockStrutsTestCase { private Server s; /** * {@inheritDoc} */ public void setUp() throws Exception { super.setUp(); setRequestPathInfo("/systems/details/kickstart/ScheduleWizard"); user.addPermanentRole(RoleFactory.ORG_ADMIN); s = ServerFactoryTest.createTestServer(user, true); NetworkInterface device = NetworkInterfaceTest.createTestNetworkInterface(s); s.addNetworkInterface(device); Channel c = ChannelFactoryTest.createTestChannel(user); // Required so the Server has a base channel // otherwise we cant ks. s.addChannel(c); PackageManagerTest.addPackageToSystemAndChannel( ConfigDefaults.get().getKickstartPackageName(), s, c); PackageManagerTest. addUp2dateToSystemAndChannel(user, s, KickstartScheduleCommand.UP2DATE_VERSION, c); TestUtils.flushAndEvict(s); TestUtils.flushAndEvict(c); addRequestParameter(RequestContext.SID, s.getId().toString()); Context ctx = Context.getCurrentContext(); ctx.setTimezone(TimeZone.getDefault()); ctx.setLocale(Locale.getDefault()); } public void testStepOneWithProxy() throws Exception { addProxy(user, s); actionPerform(); verifyNoActionErrors(); assertEquals(Boolean.TRUE.toString(), request.getAttribute(ScheduleKickstartWizardAction.HAS_PROXIES)); verifyFormValue(ScheduleKickstartWizardAction.PROXY_HOST, ""); } public static final Server addProxy(User user, Server s) throws Exception { Server proxy = ServerFactoryTest.createTestServer(user, true, ServerConstants.getServerGroupTypeEnterpriseEntitled(), ServerFactoryTest.TYPE_SERVER_PROXY); proxy.addNetwork(NetworkTest.createNetworkInstance()); ServerFactory.save(proxy); TestUtils.flushAndEvict(proxy); assertTrue(SystemManager.listProxies(user.getOrg()).size() == 1); return proxy; } public void testStepOne() throws Exception { actionPerform(); verifyNoActionErrors(); assertNotNull(request.getAttribute(RequestContext.SYSTEM)); assertNotNull(request.getAttribute(ScheduleKickstartWizardAction.HAS_PROFILES)); } public void testStepTwo() throws Exception { executeStepTwo(); } public void testStepTwoWithProxy() throws Exception { Server proxy = addProxy(user, s); /** Assign a proxy host, this would be the case * When user selects a proxy entry from the proxies combo */ addRequestParameter(ScheduleKickstartWizardAction.PROXY_HOST, proxy.getId().toString()); executeStepTwo(); verifyFormValue(ScheduleKickstartWizardAction.PROXY_HOST, proxy.getId().toString()); } private void executeStepTwo() throws Exception { KickstartData k = KickstartDataTest.createKickstartWithProfile(user); ProfileManagerTest.createProfileWithServer(user); ActivationKey key = ActivationKeyFactory.createNewKey(user, "some key"); ActivationKeyFactory.save(key); key = (ActivationKey) TestUtils.reload(key); Token t = TokenFactory.lookupById(key.getId()); Set tokens = new HashSet(); tokens.add(t); k.setDefaultRegTokens(tokens); // Step Two addRequestParameter(RequestContext.SID, s.getId().toString()); addRequestParameter("wizardStep", "second"); addRequestParameter("items_selected", k.getCobblerId().toString()); addRequestParameter("scheduleAsap", "false"); addRequestParameter("date_month", "2"); addRequestParameter("date_day", "16"); addRequestParameter("date_year", "2006"); addRequestParameter("date_hour", "8"); addRequestParameter("date_minute", "0"); addRequestParameter("date_am_pm", "1"); addRequestParameter(RequestContext.COBBLER_ID, k.getCobblerId()); actionPerform(); verifyNoActionErrors(); assertNotNull(request.getAttribute(RequestContext.KICKSTART)); assertNotNull(request.getAttribute(RequestContext.SYSTEM)); verifyFormList(ScheduleKickstartWizardAction.SYNCH_PACKAGES, ProfileDto.class); verifyFormList(ScheduleKickstartWizardAction.SYNCH_SYSTEMS, HashMap.class); } public void executeStepThree(boolean addProxy) throws Exception { // Perform step 1 actionPerform(); verifyNoActionErrors(); assertNotNull(request.getAttribute(RequestContext.SYSTEM)); clearRequestParameters(); // see if we have any kickstarts first List ks = KickstartLister.getInstance() .kickstartsInOrg(user.getOrg(), null); if (ks.size() == 0) { verifyActionMessage("kickstart.schedule.noprofiles"); } // Perform step2 KickstartData k = KickstartDataTest.createKickstartWithProfile(user); // Required so the server and profile match base channels k.getKickstartDefaults().getKstree().setChannel(s.getBaseChannel()); // Create other server to sync Server otherServer = ServerFactoryTest.createTestServer(user, true, ServerConstants.getServerGroupTypeEnterpriseEntitled()); otherServer.addChannel(ChannelFactoryTest.createTestChannel(user)); Server proxy = null; if (addProxy) { proxy = ScheduleKickstartWizardTest.addProxy(user, s); assertNotNull(proxy.getHostname()); /** Assign a proxy host, this would be the case * When user selects a proxy entry from the proxies combo */ addRequestParameter(ScheduleKickstartWizardAction.PROXY_HOST, proxy.getId().toString()); } addRequestParameter(RequestContext.SID, s.getId().toString()); addRequestParameter("targetProfileType", KickstartScheduleCommand.TARGET_PROFILE_TYPE_SYSTEM); addRequestParameter("targetServerProfile", otherServer.getId().toString()); addRequestParameter("wizardStep", "third"); addRequestParameter("items_selected", k.getCobblerId().toString()); addRequestParameter("scheduleAsap", "false"); addRequestParameter("date_month", "2"); addRequestParameter("date_day", "16"); addRequestParameter("date_year", "2006"); addRequestParameter("date_hour", "8"); addRequestParameter("date_minute", "0"); addRequestParameter("date_am_pm", "1"); addRequestParameter(RequestContext.COBBLER_ID, k.getCobblerId()); actionPerform(); verifyActionMessage("kickstart.schedule.success"); assertEquals(getActualForward(), "/systems/details/kickstart/SessionStatus.do?sid=" + s.getId()); // TODO Figure out why this is breaking on digdug //assertNotNull(KickstartFactory.lookupKickstartSessionByServer(s.getId())); if (addProxy && proxy != null) { verifyFormValue(ScheduleKickstartWizardAction.PROXY_HOST, proxy.getId().toString()); KickstartSession session = KickstartFactory. lookupKickstartSessionByServer(s.getId()); assertNotNull(session.getSystemRhnHost()); assertEquals(proxy.getHostname(), session.getSystemRhnHost()); } } public void testStepThreeNoProxy() throws Exception { executeStepThree(false); } public void testStepThreeWithProxy() throws Exception { executeStepThree(true); } }