/* * JBoss, Home of Professional Open Source. * Copyright 2013, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.as.test.patching; import static org.jboss.as.patching.Constants.BASE; import static org.jboss.as.patching.Constants.LAYERS; import static org.jboss.as.patching.Constants.MODULES; import static org.jboss.as.patching.Constants.SYSTEM; import static org.jboss.as.patching.IoUtils.mkdir; import static org.jboss.as.patching.IoUtils.newFile; import static org.jboss.as.test.patching.PatchingTestUtil.MODULES_PATH; import static org.jboss.as.test.patching.PatchingTestUtil.assertPatchElements; import static org.jboss.as.test.patching.PatchingTestUtil.createPatchXMLFile; import static org.jboss.as.test.patching.PatchingTestUtil.createZippedPatchFile; import static org.jboss.as.test.patching.PatchingTestUtil.dump; import static org.jboss.as.test.patching.PatchingTestUtil.randomString; import static org.jboss.as.test.patching.PatchingTestUtil.touch; import static org.junit.Assert.fail; import java.io.File; import org.jboss.as.cli.CommandContext; import org.jboss.as.cli.Util; import org.jboss.as.patching.HashUtils; import org.jboss.as.patching.metadata.ContentModification; import org.jboss.as.patching.metadata.Patch; import org.jboss.as.patching.metadata.PatchBuilder; import org.jboss.as.test.integration.management.util.CLITestUtil; import org.jboss.as.test.patching.util.module.Module; import org.jboss.as.version.ProductConfig; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.wildfly.core.testrunner.ServerControl; import org.wildfly.core.testrunner.WildflyTestRunner; /** * @author Alexey Loubyansky */ @RunWith(WildflyTestRunner.class) @ServerControl(manual = true) public class PatchOpInputStreamIndexAsFSPathUnitTestCase extends AbstractPatchingTestCase { protected ProductConfig productConfig; @Before public void setup() throws Exception { productConfig = new ProductConfig(PatchingTestUtil.PRODUCT, PatchingTestUtil.AS_VERSION, "main"); } @Test public void testMain() throws Exception { // build a one-off patch for the base installation // with 1 updated file String patchID = randomString(); String patchElementId = randomString(); File patchDir = mkdir(tempDir, patchID); // create a module to be updated w/o a conflict File baseModuleDir = newFile(new File(PatchingTestUtil.AS_DISTRIBUTION), MODULES, SYSTEM, LAYERS, BASE); String moduleName = "module-test"; Module module = new Module.Builder(moduleName) .miscFile(new ResourceItem("resource-test", "new resource in the module".getBytes())) .build(); File moduleDir = module.writeToDisk(new File(MODULES_PATH)); // create the patch with the updated module ContentModification moduleModified = ContentModificationUtils.modifyModule(patchDir, patchElementId, HashUtils.hashFile(moduleDir), module); // create a file for the conflict String fileName = "file-test.txt"; File miscFile = touch(new File(PatchingTestUtil.AS_DISTRIBUTION, "bin"), fileName); dump(miscFile, "original script to run standalone AS7"); byte[] originalFileHash = HashUtils.hashFile(miscFile); // patch the file ContentModification fileModified = ContentModificationUtils.modifyMisc(patchDir, patchID, "updated script", miscFile, "bin", fileName); Patch patch = PatchBuilder.create() .setPatchId(patchID) .setDescription(randomString()) .upgradeIdentity(productConfig.getProductName(), productConfig.getProductVersion(), productConfig.getProductVersion() + "CP1") .getParent() .addContentModification(fileModified) .upgradeElement(patchElementId, "base", false) .addContentModification(moduleModified) .getParent() .build(); // create the patch createPatchXMLFile(patchDir, patch); File zippedPatch = createZippedPatchFile(patchDir, patch.getPatchId()); // no patches applied assertPatchElements(baseModuleDir, null); controller.start(); // apply the patch using the cli CommandContext ctx = CLITestUtil.getCommandContext(); try { ctx.connectController(); ctx.handle("/core-service=patching:patch(input-stream-index=" + escapePath(zippedPatch.getAbsolutePath()) + ")"); } catch (Exception e) { ctx.terminateSession(); throw e; } finally { controller.stop(); } // first patch applied assertPatchElements(baseModuleDir, new String[]{patchElementId}, false); byte[] patch1FileHash = HashUtils.hashFile(miscFile); assertNotEqual(originalFileHash, patch1FileHash); } private static void assertNotEqual(byte[] a1, byte[] a2) { if (a1.length != a2.length) { return; } for (int i = 0; i < a1.length; ++i) { if (a1[i] != a2[i]) { return; } } fail("arrays are equal"); } private String escapePath(String filePath) { if (Util.isWindows()) { StringBuilder builder = new StringBuilder(); for (char c : filePath.toCharArray()) { if (c == '\\') { builder.append('\\'); } builder.append(c); } return builder.toString(); } else { return filePath; } } }