org.sonar.core.platform.PluginJarExploderTest.java Source code

Java tutorial

Introduction

Here is the source code for org.sonar.core.platform.PluginJarExploderTest.java

Source

/*
 * SonarQube
 * Copyright (C) 2009-2017 SonarSource SA
 * mailto:info AT sonarsource DOT com
 *
 * This program 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 3 of the License, or (at your option) any later version.
 *
 * This program 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 program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */
package org.sonar.core.platform;

import java.io.File;
import org.apache.commons.io.FileUtils;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TemporaryFolder;
import org.sonar.api.utils.ZipUtils;

import static org.assertj.core.api.Assertions.assertThat;

public class PluginJarExploderTest {

    @Rule
    public TemporaryFolder temp = new TemporaryFolder();

    @Test
    public void unzip_plugin_with_libs() throws Exception {
        final File jarFile = getFile("sonar-checkstyle-plugin-2.8.jar");
        final File toDir = temp.newFolder();
        PluginInfo pluginInfo = new PluginInfo("checkstyle").setJarFile(jarFile);

        PluginJarExploder exploder = new PluginJarExploder() {
            @Override
            public ExplodedPlugin explode(PluginInfo info) {
                try {
                    ZipUtils.unzip(jarFile, toDir, newLibFilter());
                    return explodeFromUnzippedDir(info.getKey(), info.getNonNullJarFile(), toDir);
                } catch (Exception e) {
                    throw new IllegalStateException(e);
                }
            }
        };
        ExplodedPlugin exploded = exploder.explode(pluginInfo);
        assertThat(exploded.getKey()).isEqualTo("checkstyle");
        assertThat(exploded.getLibs()).extracting("name").containsOnly("antlr-2.7.6.jar", "checkstyle-5.1.jar",
                "commons-cli-1.0.jar");
        assertThat(exploded.getMain()).isSameAs(jarFile);
    }

    @Test
    public void unzip_plugin_without_libs() throws Exception {
        File jarFile = temp.newFile();
        final File toDir = temp.newFolder();
        PluginInfo pluginInfo = new PluginInfo("foo").setJarFile(jarFile);

        PluginJarExploder exploder = new PluginJarExploder() {
            @Override
            public ExplodedPlugin explode(PluginInfo info) {
                return explodeFromUnzippedDir("foo", info.getNonNullJarFile(), toDir);
            }
        };
        ExplodedPlugin exploded = exploder.explode(pluginInfo);
        assertThat(exploded.getKey()).isEqualTo("foo");
        assertThat(exploded.getLibs()).isEmpty();
        assertThat(exploded.getMain()).isSameAs(jarFile);
    }

    private File getFile(String filename) {
        return FileUtils.toFile(getClass().getResource("/org/sonar/core/platform/" + filename));
    }
}