/* * Syncany, www.syncany.org * Copyright (C) 2011-2016 Philipp C. Heckel <philipp.heckel@gmail.com> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.syncany.tests.integration.operations; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import java.io.File; import java.lang.reflect.Field; import java.util.List; import org.junit.Test; import org.syncany.config.UserConfig; import org.syncany.operations.plugin.ExtendedPluginInfo; import org.syncany.operations.plugin.PluginOperationAction; import org.syncany.operations.plugin.PluginOperationOptions; import org.syncany.operations.plugin.PluginOperationOptions.PluginListMode; import org.syncany.operations.plugin.PluginOperationResult; import org.syncany.operations.plugin.PluginOperationResult.PluginResultCode; import org.syncany.plugins.Plugin; import org.syncany.plugins.Plugins; import org.syncany.plugins.local.LocalTransferSettings; import org.syncany.tests.unit.util.TestFileUtil; import org.syncany.tests.util.TestClient; import org.syncany.tests.util.TestConfigUtil; import org.syncany.util.EnvironmentUtil; public class PluginOperationTest { private static final int EXPECTED_NUM_PLUGINS = 3; @Test public void testPluginListLocalOnly() throws Exception { // Setup LocalTransferSettings testConnection = (LocalTransferSettings) TestConfigUtil.createTestLocalConnection(); TestClient client = new TestClient("A", testConnection); PluginOperationOptions pluginOptions = new PluginOperationOptions(); pluginOptions.setAction(PluginOperationAction.LIST); pluginOptions.setListMode(PluginListMode.LOCAL); // Run PluginOperationResult pluginResult = client.plugin(pluginOptions); List<Plugin> pluginList = Plugins.list(); // for comparison only! // Test assertNotNull(pluginResult); assertEquals(PluginResultCode.OK, pluginResult.getResultCode()); assertEquals(pluginList.size(), pluginResult.getPluginList().size()); assertEquals(EXPECTED_NUM_PLUGINS, pluginResult.getPluginList().size()); // local and unreliable_local for (ExtendedPluginInfo pluginInfo : pluginResult.getPluginList()) { assertNull(pluginInfo.getRemotePluginInfo()); assertNotNull(pluginInfo.getLocalPluginInfo()); assertNull(pluginInfo.getLocalPluginInfo().getDownloadUrl()); assertNull(pluginInfo.getLocalPluginInfo().getSha256sum()); assertNotNull(pluginInfo.getLocalPluginInfo().getPluginId()); assertNotNull(pluginInfo.getLocalPluginInfo().getPluginVersion()); // The rest is not important for processing ... assertNotNull(Plugins.get(pluginInfo.getLocalPluginInfo().getPluginId())); } // Tear down client.deleteTestData(); } @Test public void testPluginListRemoteOnlyReleasesOnly() throws Exception { // Tests which plugin releases are available. This is difficult because // that will change. So we can only test the bare minimum. // Setup LocalTransferSettings testConnection = (LocalTransferSettings) TestConfigUtil.createTestLocalConnection(); TestClient client = new TestClient("A", testConnection); PluginOperationOptions pluginOptions = new PluginOperationOptions(); pluginOptions.setAction(PluginOperationAction.LIST); pluginOptions.setListMode(PluginListMode.REMOTE); pluginOptions.setSnapshots(false); PluginOperationResult pluginResult = client.plugin(pluginOptions); assertNotNull(pluginResult); assertEquals(PluginResultCode.OK, pluginResult.getResultCode()); // Tear down client.deleteTestData(); } @Test public void testPluginListRemoteOnlyIncludingSnapshots() throws Exception { // Tests which plugin snapshots are available. This is difficult because // that will change. So we can only test the bare minimum. // Setup LocalTransferSettings testConnection = (LocalTransferSettings) TestConfigUtil.createTestLocalConnection(); TestClient client = new TestClient("A", testConnection); PluginOperationOptions pluginOptions = new PluginOperationOptions(); pluginOptions.setAction(PluginOperationAction.LIST); pluginOptions.setListMode(PluginListMode.REMOTE); pluginOptions.setSnapshots(true); PluginOperationResult pluginResult = client.plugin(pluginOptions); assertNotNull(pluginResult); assertEquals(PluginResultCode.OK, pluginResult.getResultCode()); // Tear down client.deleteTestData(); } @Test public void testPluginInstall() throws Exception { // Test the installation of FTP plugin // Note that we would like to test removal of plugins. // However, this is highly non-trivial due to the fact // that classpath hacks would be needed to load plugins // that are not in default locations. if (EnvironmentUtil.isWindows()) { // Test is Unix-specific. return; } File configDir = setupCleanConfigDir(); // Setup LocalTransferSettings testConnection = (LocalTransferSettings) TestConfigUtil.createTestLocalConnection(); TestClient client = new TestClient("A", testConnection); PluginOperationOptions pluginOptions = new PluginOperationOptions(); pluginOptions.setAction(PluginOperationAction.INSTALL); pluginOptions.setPluginId("ftp"); PluginOperationResult pluginResult = client.plugin(pluginOptions); assertNotNull(pluginResult); assertEquals(PluginResultCode.OK, pluginResult.getResultCode()); // Only one file should be in here: the jar for ftp. assertEquals(1, (new File(configDir, "plugins/lib/")).list().length); // Tear down client.deleteTestData(); TestFileUtil.deleteDirectory(configDir); System.setProperty("user.home", "/tmp"); } @Test public void testPluginInstallUrl() throws Exception { // Test the installation of FTP plugin, through a url. // First a list is done to get the url, then this is used to download. if (EnvironmentUtil.isWindows()) { // Test is Unix-specific. return; } File configDir = setupCleanConfigDir(); // Setup LocalTransferSettings testConnection = (LocalTransferSettings) TestConfigUtil.createTestLocalConnection(); TestClient client = new TestClient("A", testConnection); PluginOperationOptions pluginOptions = new PluginOperationOptions(); pluginOptions.setAction(PluginOperationAction.LIST); pluginOptions.setListMode(PluginListMode.REMOTE); pluginOptions.setSnapshots(false); PluginOperationResult pluginResult = client.plugin(pluginOptions); String pluginDownloadUrl = null; for (ExtendedPluginInfo pluginInfo : pluginResult.getPluginList()) { if (pluginInfo.getRemotePluginInfo().getPluginId().equals("ftp")) { pluginDownloadUrl = pluginInfo.getRemotePluginInfo().getDownloadUrl(); } } pluginOptions = new PluginOperationOptions(); pluginOptions.setAction(PluginOperationAction.INSTALL); pluginOptions.setPluginId(pluginDownloadUrl); pluginResult = client.plugin(pluginOptions); assertNotNull(pluginResult); assertEquals(PluginResultCode.OK, pluginResult.getResultCode()); // Only one file should be in here: the jar for ftp. assertEquals(1, (new File(configDir, "plugins/lib/")).list().length); // Tear down client.deleteTestData(); TestFileUtil.deleteDirectory(configDir); System.setProperty("user.home", "/tmp"); } private File setupCleanConfigDir() throws Exception { // Set the directory for the global config Field userAppDirUnix = UserConfig.class.getDeclaredField("USER_APP_DIR_UNIX_LIKE"); userAppDirUnix.setAccessible(true); File configDir = TestFileUtil.createTempDirectoryInSystemTemp(); userAppDirUnix.set(null, configDir); // Forget the current global config Field userConfigDir = UserConfig.class.getDeclaredField("userConfigDir"); userConfigDir.setAccessible(true); userConfigDir.set(null, null); // Reinitialize global config UserConfig.init(); return configDir; } }